diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c4b5c5..0f17dbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ Changes ======= +* v2.10.0, February 13, 2023 -- update ladder data for balance patch 5.0.11 * v2.9.0, August 17, 2021 -- Fix Liberator build time, add more display names * v2.8.0, October 28, 2020 -- add Mengsk * v2.7.0, January 18, 2020 -- update ladder data for balance patch 4.11.0 diff --git a/setup.py b/setup.py index c017c58..401b3c5 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -__version__ = "2.9.0" +__version__ = "2.10.0" setup( name="spawningtool", diff --git a/spawningtool/lotv_constants.py b/spawningtool/lotv_constants.py index 8e55697..4fddcc6 100644 --- a/spawningtool/lotv_constants.py +++ b/spawningtool/lotv_constants.py @@ -151,7 +151,7 @@ "display_name": "Liberator" }, "Raven": { - "build_time": 43, + "build_time": 34, # 42.9 -> 34.3 in 5.0.11 "built_from": [ "Starport" ], "display_name": "Raven" }, @@ -187,7 +187,7 @@ "display_name": "Stalker" }, "Sentry": { - "build_time": 26, + "build_time": 23, # 26.4 -> 22.9 in 5.0.11 "built_from": [ "Gateway", "WarpGate" ], "display_name": "Sentry" }, @@ -358,7 +358,8 @@ "built_from": [ "Overlord" ], "display_name": "Overseer" }, - "RavagerCocoon": { # Ravager - egg not itself because it is the start time, normal build time is 9 + "RavagerCocoon": { # Ravager - egg not itself because it is the start time, normal build time is 12 seconds + # increased 8.57 -> 12.14 seconds in 5.0.11 "build_time": 0, "built_from": [ "Roach" ], "display_name": "Ravager" @@ -739,7 +740,7 @@ "built_from": [ "GhostAcademy" ], "display_name": "Moebius Reactor" }, - "EnhancedShockwaves": { + "EnhancedShockwaves": { # deprecated in 5.0.11 "build_time": 79, "built_from": [ "GhostAcademy" ], "display_name": "Enhanced Shockwaves", @@ -817,13 +818,13 @@ "built_from": [ "TechLab" ], "display_name": "Durable Materials" }, - "RavenCorvidReactor": { + "RavenCorvidReactor": { # deprecated in 5.0.11 "build_time": 79, "built_from": [ "TechLab" ], "display_name": "Corvid Reactor" }, "BansheeSpeed": { - "build_time": 121, # was 93 before 3.8.0 + "build_time": 121, # 93 -> 121 in 3.8.0, 121.4 -> 100 in 5.0.11 "built_from": [ "TechLab" ], "display_name": "Hyperflight Rotors" }, @@ -858,47 +859,47 @@ }, # protoss upgrades "ProtossGroundWeaponsLevel1": { - "build_time": 129, + "build_time": 122, # 128.6 -> 121.6 in 5.0.11 "built_from": [ "Forge" ], "display_name": "Protoss Ground Weapons Level 1" }, "ProtossGroundWeaponsLevel2": { - "build_time": 154, + "build_time": 145, # 153.6 -> 144.6 in 5.0.11 "built_from": [ "Forge" ], "display_name": "Protoss Ground Weapons Level 2" }, "ProtossGroundWeaponsLevel3": { - "build_time": 179, + "build_time": 168, # 178.6 -> 167.9 in 5.0.11 "built_from": [ "Forge" ], "display_name": "Protoss Ground Weapons Level 3" }, "ProtossGroundArmorsLevel1": { - "build_time": 129, + "build_time": 122, # 128.6 -> 121.6 in 5.0.11 "built_from": [ "Forge" ], "display_name": "Protoss Ground Armor Level 1" }, "ProtossGroundArmorsLevel2": { - "build_time": 154, + "build_time": 145, # 153.6 -> 144.6 in 5.0.11 "built_from": [ "Forge" ], "display_name": "Protoss Ground Armor Level 2" }, "ProtossGroundArmorsLevel3": { - "build_time": 179, + "build_time": 168, # 178.6 -> 167.9 in 5.0.11 "built_from": [ "Forge" ], "display_name": "Protoss Ground Armor Level 3" }, "ProtossShieldsLevel1": { - "build_time": 129, + "build_time": 122, # 128.6 -> 121.6 in 5.0.11 "built_from": [ "Forge" ], "display_name": "Protoss Shields Level 1" }, "ProtossShieldsLevel2": { - "build_time": 154, + "build_time": 145, # 153.6 -> 144.6 in 5.0.11 "built_from": [ "Forge" ], "display_name": "Protoss Shields Level 2" }, "ProtossShieldsLevel3": { - "build_time": 179, + "build_time": 168, # 178.6 -> 167.9 in 5.0.11 "built_from": [ "Forge" ], "display_name": "Protoss Shields Level 3" }, diff --git a/tests/__main__.py b/tests/__main__.py index 5753ac7..ed6da35 100644 --- a/tests/__main__.py +++ b/tests/__main__.py @@ -36,6 +36,7 @@ def assertObjectsEqual(self, results, expected_results, path): def _test_replay(self, filename, expected_results_filename): results = spawningtool.parser.parse_replay("replays/{}".format(filename)) with open('tests/{}'.format(expected_results_filename), 'r') as expected_results_file: + # json.dump(results, expected_results_file, indent=4) expected_results = json.load(expected_results_file) self.assertDictsEqual(results, expected_results) @@ -92,6 +93,20 @@ def test_coop(self): self._test_replay('kerrigan.SC2Replay', 'kerrigan.json') + def test_patch_400(self): + """ + Test 4.0.0 patch + """ + self._test_replay('patch_400.SC2Replay', + 'patch_400.json') + + def test_patch_5_0_11(self): + """ + Test 5.0.11 patch + """ + self._test_replay('patch_5_0_11.SC2Replay', + 'patch_5_0_11.json') + if __name__ == '__main__': unittest.main() diff --git a/tests/gameheart.json b/tests/gameheart.json index 2af1a48..62c3f81 100644 --- a/tests/gameheart.json +++ b/tests/gameheart.json @@ -1,2740 +1,2740 @@ { - "include_map_details": false, - "frames_per_second": 16, - "map": "DHGH - Whirlwind", - "message": "", - "region": "eu", - "cooperative": false, - "category": "Private", - "build": 25604, - "map_hash": "fa0c3b248508e8b4178658ac96102887c23aede9f585bca8a8d15a59b406d21d", - "baseBuild": 24944, - "game_type": "1v1", - "unix_timestamp": 1371501606, - "expansion": "HotS", + "map": "DHGH - Whirlwind", + "baseBuild": 24944, + "expansion": "HotS", + "cooperative": false, + "frames": 10178, + "message": "", + "category": "Private", + "map_hash": "fa0c3b248508e8b4178658ac96102887c23aede9f585bca8a8d15a59b406d21d", + "include_map_details": false, + "region": "eu", + "game_type": "1v1", "players": { "5": { - "is_human": true, - "league": 6, - "unitsLost": [ - { - "name": "SCV", - "frame": 6316, - "clock_position": null, - "time": "6:34", - "killer": 6 - }, - { - "name": "SCV", - "frame": 6334, - "clock_position": null, - "time": "6:35", - "killer": 6 - }, - { - "name": "SCV", - "frame": 6372, - "clock_position": null, - "time": "6:38", - "killer": 6 - }, - { - "name": "SCV", - "frame": 6442, - "clock_position": null, - "time": "6:42", - "killer": 6 - }, - { - "name": "SCV", - "frame": 6503, - "clock_position": null, - "time": "6:46", - "killer": 6 - }, - { - "name": "Marauder", - "frame": 6917, - "clock_position": null, - "time": "7:12", - "killer": 6 - }, - { - "name": "Marine", - "frame": 7031, - "clock_position": null, - "time": "7:19", - "killer": 6 - }, - { - "name": "Marine", - "frame": 7063, - "clock_position": null, - "time": "7:21", - "killer": 6 - }, - { - "name": "Marine", - "frame": 7104, - "clock_position": null, - "time": "7:24", - "killer": 6 - }, - { - "name": "Marine", - "frame": 7130, - "clock_position": null, - "time": "7:25", - "killer": 6 - }, - { - "name": "Marine", - "frame": 7175, - "clock_position": null, - "time": "7:28", - "killer": 6 - }, - { - "name": "Marine", - "frame": 7190, - "clock_position": null, - "time": "7:29", - "killer": 6 - }, - { - "name": "Marine", - "frame": 7227, - "clock_position": null, - "time": "7:31", - "killer": 6 - }, - { - "name": "Marine", - "frame": 7287, - "clock_position": null, - "time": "7:35", - "killer": 6 - }, - { - "name": "SCV", - "frame": 7347, - "clock_position": null, - "time": "7:39", - "killer": 6 - }, - { - "name": "SCV", - "frame": 7443, - "clock_position": null, - "time": "7:45", - "killer": 6 - }, - { - "name": "SCV", - "frame": 7545, - "clock_position": null, - "time": "7:51", - "killer": 6 - }, - { - "name": "SCV", - "frame": 7557, - "clock_position": null, - "time": "7:52", - "killer": 6 - }, - { - "name": "Marauder", - "frame": 7605, - "clock_position": null, - "time": "7:55", - "killer": 6 - }, - { - "name": "Marine", - "frame": 7676, - "clock_position": null, - "time": "7:59", - "killer": 6 - }, - { - "name": "Marine", - "frame": 7767, - "clock_position": null, - "time": "8:05", - "killer": 6 - }, - { - "name": "Marine", - "frame": 7828, - "clock_position": null, - "time": "8:09", - "killer": 6 - }, - { - "name": "SCV", - "frame": 7857, - "clock_position": null, - "time": "8:11", - "killer": 6 - }, - { - "name": "Bunker", - "frame": 7926, - "clock_position": null, - "time": "8:15", - "killer": 5 - }, - { - "name": "SCV", - "frame": 7946, - "clock_position": null, - "time": "8:16", - "killer": 6 - }, - { - "name": "SCV", - "frame": 7976, - "clock_position": null, - "time": "8:18", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8002, - "clock_position": null, - "time": "8:20", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8061, - "clock_position": null, - "time": "8:23", - "killer": 6 - }, - { - "name": "Reaper", - "frame": 8062, - "clock_position": null, - "time": "8:23", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8115, - "clock_position": null, - "time": "8:27", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8280, - "clock_position": null, - "time": "8:37", - "killer": 6 - }, - { - "name": "MissileTurret", - "frame": 8328, - "clock_position": null, - "time": "8:40", - "killer": 6 - }, - { - "name": "SupplyDepot", - "frame": 8446, - "clock_position": null, - "time": "8:47", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8610, - "clock_position": null, - "time": "8:58", - "killer": 6 - }, - { - "name": "Marine", - "frame": 8612, - "clock_position": null, - "time": "8:58", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8634, - "clock_position": null, - "time": "8:59", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8658, - "clock_position": null, - "time": "9:01", - "killer": 6 - }, - { - "name": "Marine", - "frame": 8679, - "clock_position": null, - "time": "9:02", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8685, - "clock_position": null, - "time": "9:02", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8714, - "clock_position": null, - "time": "9:04", - "killer": 6 - }, - { - "name": "Marine", - "frame": 8733, - "clock_position": null, - "time": "9:05", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8736, - "clock_position": null, - "time": "9:06", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8760, - "clock_position": null, - "time": "9:07", - "killer": 6 - }, - { - "name": "SupplyDepot", - "frame": 8780, - "clock_position": null, - "time": "9:08", - "killer": 5 - }, - { - "name": "SCV", - "frame": 8781, - "clock_position": null, - "time": "9:08", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8805, - "clock_position": null, - "time": "9:10", - "killer": 6 - }, - { - "name": "Marine", - "frame": 8829, - "clock_position": null, - "time": "9:11", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8847, - "clock_position": null, - "time": "9:12", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8857, - "clock_position": null, - "time": "9:13", - "killer": 6 - }, - { - "name": "Marine", - "frame": 8918, - "clock_position": null, - "time": "9:17", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8920, - "clock_position": null, - "time": "9:17", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8937, - "clock_position": null, - "time": "9:18", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8961, - "clock_position": null, - "time": "9:20", - "killer": 6 - }, - { - "name": "SCV", - "frame": 8985, - "clock_position": null, - "time": "9:21", - "killer": 6 - }, - { - "name": "Marine", - "frame": 9014, - "clock_position": null, - "time": "9:23", - "killer": 6 - }, - { - "name": "SCV", - "frame": 9039, - "clock_position": null, - "time": "9:24", - "killer": 6 - }, - { - "name": "SCV", - "frame": 9121, - "clock_position": null, - "time": "9:30", - "killer": 6 - }, - { - "name": "SCV", - "frame": 9181, - "clock_position": null, - "time": "9:33", - "killer": 6 - }, - { - "name": "Bunker", - "frame": 9254, - "clock_position": null, - "time": "9:38", - "killer": 6 - }, - { - "name": "Marine", - "frame": 9304, - "clock_position": null, - "time": "9:41", - "killer": 6 - }, - { - "name": "Marine", - "frame": 9331, - "clock_position": null, - "time": "9:43", - "killer": 6 - }, - { - "name": "Marine", - "frame": 9355, - "clock_position": null, - "time": "9:44", - "killer": 6 - }, - { - "name": "Marine", - "frame": 9378, - "clock_position": null, - "time": "9:46", - "killer": 6 - }, - { - "name": "Marine", - "frame": 9400, - "clock_position": null, - "time": "9:47", - "killer": 6 - }, - { - "name": "Marine", - "frame": 9514, - "clock_position": null, - "time": "9:54", - "killer": 6 - }, - { - "name": "Marine", - "frame": 9677, - "clock_position": null, - "time": "10:04", - "killer": 6 - }, - { - "name": "Marine", - "frame": 9701, - "clock_position": null, - "time": "10:06", - "killer": 6 - }, - { - "name": "Marine", - "frame": 9702, - "clock_position": null, - "time": "10:06", - "killer": 6 - }, - { - "name": "SCV", - "frame": 9901, - "clock_position": null, - "time": "10:18", - "killer": 6 - }, - { - "name": "Marauder", - "frame": 9972, - "clock_position": null, - "time": "10:23", - "killer": 6 - }, - { - "name": "Marine", - "frame": 9991, - "clock_position": null, - "time": "10:24", - "killer": 6 - }, - { - "name": "BarracksTechLab", - "frame": 10086, - "clock_position": null, - "time": "10:30", - "killer": 6 - } - ], - "color": "B4141E", - "abilities": [ - { - "name": "CalldownMULE", - "frame": 4333, - "time": "4:30" - }, - { - "name": "CalldownMULE", - "frame": 4378, - "time": "4:33" - }, - { - "name": "CalldownMULE", - "frame": 5740, - "time": "5:58" - }, - { - "name": "CalldownMULE", - "frame": 5742, - "time": "5:58" - }, - { - "name": "CalldownMULE", - "frame": 5883, - "time": "6:07" - }, - { - "name": "CalldownMULE", - "frame": 5886, - "time": "6:07" - }, - { - "name": "CalldownMULE", - "frame": 7419, - "time": "7:43" - }, - { - "name": "CalldownMULE", - "frame": 7422, - "time": "7:43" - }, - { - "name": "CalldownMULE", - "frame": 9095, - "time": "9:28" - }, - { - "name": "CalldownMULE", - "frame": 9098, - "time": "9:28" - }, - { - "name": "CalldownMULE", - "frame": 9101, - "time": "9:28" - } - ], - "result": "Loss", - "is_winner": false, - "region": "eu", - "level": 53, - "pick_race": "Terran", "supply": [ [ - 0, + 0, 6 - ], + ], [ - 93, + 93, 7 - ], + ], [ - 253, + 253, 7 - ], + ], [ - 413, + 413, 8 - ], + ], [ - 573, + 573, 9 - ], + ], [ - 733, + 733, 9 - ], + ], [ - 893, + 893, 10 - ], + ], [ - 1053, + 1053, 10 - ], + ], [ - 1213, + 1213, 11 - ], + ], [ - 1373, + 1373, 11 - ], + ], [ - 1533, + 1533, 12 - ], + ], [ - 1693, + 1693, 13 - ], + ], [ - 1853, + 1853, 13 - ], + ], [ - 2013, + 2013, 14 - ], + ], [ - 2173, + 2173, 14 - ], + ], [ - 2333, + 2333, 15 - ], + ], [ - 2493, + 2493, 15 - ], + ], [ - 2653, + 2653, 16 - ], + ], [ - 2813, + 2813, 16 - ], + ], [ - 2973, + 2973, 17 - ], + ], [ - 3133, + 3133, 17 - ], + ], [ - 3293, + 3293, 18 - ], + ], [ - 3453, + 3453, 19 - ], + ], [ - 3613, + 3613, 19 - ], + ], [ - 3773, + 3773, 19 - ], + ], [ - 3933, + 3933, 20 - ], + ], [ - 4093, + 4093, 21 - ], + ], [ - 4253, + 4253, 22 - ], + ], [ - 4413, + 4413, 24 - ], + ], [ - 4573, + 4573, 26 - ], + ], [ - 4733, + 4733, 28 - ], + ], [ - 4893, + 4893, 29 - ], + ], [ - 5053, + 5053, 30 - ], + ], [ - 5213, + 5213, 30 - ], + ], [ - 5373, + 5373, 32 - ], + ], [ - 5533, + 5533, 32 - ], + ], [ - 5693, + 5693, 36 - ], + ], [ - 5853, + 5853, 38 - ], + ], [ - 6013, + 6013, 40 - ], + ], [ - 6173, + 6173, 43 - ], + ], [ - 6333, + 6333, 43 - ], + ], [ - 6493, + 6493, 40 - ], + ], [ - 6653, + 6653, 41 - ], + ], [ - 6813, + 6813, 42 - ], + ], [ - 6973, + 6973, 41 - ], + ], [ - 7133, + 7133, 37 - ], + ], [ - 7293, + 7293, 39 - ], + ], [ - 7453, + 7453, 37 - ], + ], [ - 7613, + 7613, 34 - ], + ], [ - 7773, + 7773, 32 - ], + ], [ - 7933, + 7933, 33 - ], + ], [ - 8093, + 8093, 29 - ], + ], [ - 8253, + 8253, 31 - ], + ], [ - 8413, + 8413, 31 - ], + ], [ - 8573, + 8573, 32 - ], + ], [ - 8733, + 8733, 26 - ], + ], [ - 8893, + 8893, 20 - ], + ], [ - 9053, + 9053, 14 - ], + ], [ - 9213, + 9213, 14 - ], + ], [ - 9373, + 9373, 12 - ], + ], [ - 9533, + 9533, 9 - ], + ], [ - 9693, + 9693, 11 - ], + ], [ - 9853, + 9853, 13 - ], + ], [ - 10013, + 10013, 9 - ], + ], [ - 10105, + 10105, 9 - ], + ], [ - 10105, + 10105, 9 ] - ], - "name": "SjoWBBII", - "commander": null, + ], + "league": 6, "buildOrder": [ { - "name": "SCV", - "is_worker": true, - "frame": 18, - "clock_position": null, - "time": "0:01", - "is_chronoboosted": false, - "supply": 6 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 289, - "clock_position": null, - "time": "0:18", - "is_chronoboosted": false, - "supply": 7 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 560, - "clock_position": null, - "time": "0:35", - "is_chronoboosted": false, - "supply": 8 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 831, - "clock_position": null, - "time": "0:51", - "is_chronoboosted": false, - "supply": 9 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 898, - "clock_position": null, - "time": "0:56", - "is_chronoboosted": false, - "supply": 10 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 1102, - "clock_position": null, - "time": "1:08", - "is_chronoboosted": false, - "supply": 10 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 1379, - "clock_position": null, - "time": "1:26", - "is_chronoboosted": false, - "supply": 11 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 1650, - "clock_position": null, - "time": "1:43", - "is_chronoboosted": false, - "supply": 12 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 1921, - "clock_position": null, - "time": "2:00", - "is_chronoboosted": false, - "supply": 13 - }, - { - "name": "CommandCenter", - "is_worker": false, - "frame": 2190, - "clock_position": null, - "time": "2:16", - "is_chronoboosted": false, - "supply": 14 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 2282, - "clock_position": null, - "time": "2:22", - "is_chronoboosted": false, - "supply": 14 - }, - { - "name": "Barracks", - "is_worker": false, - "frame": 2541, - "clock_position": null, - "time": "2:38", - "is_chronoboosted": false, - "supply": 15 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 2631, - "clock_position": null, - "time": "2:44", - "is_chronoboosted": false, - "supply": 15 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 2902, - "clock_position": null, - "time": "3:01", - "is_chronoboosted": false, - "supply": 16 - }, - { - "name": "Barracks", - "is_worker": false, - "frame": 2994, - "clock_position": null, - "time": "3:07", - "is_chronoboosted": false, - "supply": 17 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 3173, - "clock_position": null, - "time": "3:18", - "is_chronoboosted": false, - "supply": 17 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 3444, - "clock_position": null, - "time": "3:35", - "is_chronoboosted": false, - "supply": 18 - }, - { - "name": "OrbitalCommand", - "is_worker": false, - "frame": 3722, - "clock_position": null, - "time": "3:52", - "is_chronoboosted": false, - "supply": 19 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 3790, - "clock_position": null, - "time": "3:56", - "is_chronoboosted": false, - "supply": 19 - }, - { - "name": "OrbitalCommand", - "is_worker": false, - "frame": 3800, - "clock_position": null, - "time": "3:57", - "is_chronoboosted": false, - "supply": 19 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 4046, - "clock_position": null, - "time": "4:12", - "is_chronoboosted": false, - "supply": 20 - }, - { - "name": "Refinery", - "is_worker": false, - "frame": 4097, - "clock_position": null, - "time": "4:16", - "is_chronoboosted": false, - "supply": 21 - }, - { - "name": "Refinery", - "is_worker": false, - "frame": 4134, - "clock_position": null, - "time": "4:18", - "is_chronoboosted": false, - "supply": 21 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 4189, - "clock_position": null, - "time": "4:21", - "is_chronoboosted": false, - "supply": 21 - }, - { - "name": "Bunker", - "is_worker": false, - "frame": 4241, - "clock_position": null, - "time": "4:25", - "is_chronoboosted": false, - "supply": 21 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 4299, - "clock_position": null, - "time": "4:28", - "is_chronoboosted": false, - "supply": 22 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 4372, - "clock_position": null, - "time": "4:33", - "is_chronoboosted": false, - "supply": 22 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 4513, - "clock_position": null, - "time": "4:42", - "is_chronoboosted": false, - "supply": 24 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 4570, - "clock_position": null, - "time": "4:45", - "is_chronoboosted": false, - "supply": 24 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 4643, - "clock_position": null, - "time": "4:50", - "is_chronoboosted": false, - "supply": 26 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 4659, - "clock_position": null, - "time": "4:51", - "is_chronoboosted": false, - "supply": 26 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 4847, - "clock_position": null, - "time": "5:02", - "is_chronoboosted": false, - "supply": 28 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 4853, - "clock_position": null, - "time": "5:03", - "is_chronoboosted": false, - "supply": 28 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 4914, - "clock_position": null, - "time": "5:07", - "is_chronoboosted": false, - "supply": 29 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 4925, - "clock_position": null, - "time": "5:07", - "is_chronoboosted": false, - "supply": 29 - }, - { - "name": "BarracksReactor", - "is_worker": false, - "frame": 4963, - "clock_position": null, - "time": "5:10", - "is_chronoboosted": false, - "supply": 29 - }, - { - "name": "BarracksTechLab", - "is_worker": false, - "frame": 5067, - "clock_position": null, - "time": "5:16", - "is_chronoboosted": false, - "supply": 30 - }, - { - "name": "EngineeringBay", - "is_worker": false, - "frame": 5152, - "clock_position": null, - "time": "5:22", - "is_chronoboosted": false, - "supply": 30 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 5327, - "clock_position": null, - "time": "5:32", - "is_chronoboosted": false, - "supply": 30 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 5327, - "clock_position": null, - "time": "5:32", - "is_chronoboosted": false, - "supply": 30 - }, - { - "name": "Stimpack", - "is_worker": false, - "frame": 5545, - "clock_position": null, - "time": "5:46", - "is_chronoboosted": false, - "supply": 32 - }, - { - "name": "Marauder", - "is_worker": false, - "frame": 5551, - "clock_position": null, - "time": "5:46", - "is_chronoboosted": false, - "supply": 32 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 5598, - "clock_position": null, - "time": "5:49", - "is_chronoboosted": false, - "supply": 32 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 5598, - "clock_position": null, - "time": "5:49", - "is_chronoboosted": false, - "supply": 32 - }, - { - "name": "Barracks", - "is_worker": false, - "frame": 5650, - "clock_position": null, - "time": "5:53", - "is_chronoboosted": false, - "supply": 32 - }, - { - "name": "Refinery", - "is_worker": false, - "frame": 5693, - "clock_position": null, - "time": "5:55", - "is_chronoboosted": false, - "supply": 36 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 5799, - "clock_position": null, - "time": "6:02", - "is_chronoboosted": false, - "supply": 36 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 5869, - "clock_position": null, - "time": "6:06", - "is_chronoboosted": false, - "supply": 38 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 5869, - "clock_position": null, - "time": "6:06", - "is_chronoboosted": false, - "supply": 38 - }, - { - "name": "Reaper", - "is_worker": false, - "frame": 5873, - "clock_position": null, - "time": "6:07", - "is_chronoboosted": false, - "supply": 38 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 6060, - "clock_position": null, - "time": "6:18", - "is_chronoboosted": false, - "supply": 40 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 6072, - "clock_position": null, - "time": "6:19", - "is_chronoboosted": false, - "supply": 40 - }, - { - "name": "Marauder", - "is_worker": false, - "frame": 6100, - "clock_position": null, - "time": "6:21", - "is_chronoboosted": false, - "supply": 40 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 6156, - "clock_position": null, - "time": "6:24", - "is_chronoboosted": false, - "supply": 40 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 6181, - "clock_position": null, - "time": "6:26", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "TerranInfantryWeaponsLevel1", - "is_worker": false, - "frame": 6297, - "clock_position": null, - "time": "6:33", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "MissileTurret", - "is_worker": false, - "frame": 6389, - "clock_position": null, - "time": "6:39", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 6614, - "clock_position": null, - "time": "6:53", - "is_chronoboosted": false, - "supply": 40 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 6620, - "clock_position": null, - "time": "6:53", - "is_chronoboosted": false, - "supply": 40 - }, - { - "name": "MissileTurret", - "is_worker": false, - "frame": 6716, - "clock_position": null, - "time": "6:59", - "is_chronoboosted": false, - "supply": 41 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 6792, - "clock_position": null, - "time": "7:04", - "is_chronoboosted": false, - "supply": 41 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 6817, - "clock_position": null, - "time": "7:06", - "is_chronoboosted": false, - "supply": 42 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 7169, - "clock_position": null, - "time": "7:28", - "is_chronoboosted": false, - "supply": 37 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 7171, - "clock_position": null, - "time": "7:28", - "is_chronoboosted": false, - "supply": 37 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 7174, - "clock_position": null, - "time": "7:28", - "is_chronoboosted": false, - "supply": 37 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 7177, - "clock_position": null, - "time": "7:28", - "is_chronoboosted": false, - "supply": 37 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 7194, - "clock_position": null, - "time": "7:29", - "is_chronoboosted": false, - "supply": 37 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 7197, - "clock_position": null, - "time": "7:29", - "is_chronoboosted": false, - "supply": 37 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 7568, - "clock_position": null, - "time": "7:53", - "is_chronoboosted": false, - "supply": 37 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 7796, - "clock_position": null, - "time": "8:07", - "is_chronoboosted": false, - "supply": 32 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 7801, - "clock_position": null, - "time": "8:07", - "is_chronoboosted": false, - "supply": 32 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 7804, - "clock_position": null, - "time": "8:07", - "is_chronoboosted": false, - "supply": 32 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 7970, - "clock_position": null, - "time": "8:18", - "is_chronoboosted": false, - "supply": 33 - }, - { - "name": "OrbitalCommand", - "is_worker": false, - "frame": 8035, - "clock_position": null, - "time": "8:22", - "is_chronoboosted": false, - "supply": 33 - }, - { - "name": "Bunker", - "is_worker": false, - "frame": 8212, - "clock_position": null, - "time": "8:33", - "is_chronoboosted": false, - "supply": 29 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 8229, - "clock_position": null, - "time": "8:34", - "is_chronoboosted": false, - "supply": 29 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 8232, - "clock_position": null, - "time": "8:34", - "is_chronoboosted": false, - "supply": 29 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 8235, - "clock_position": null, - "time": "8:34", - "is_chronoboosted": false, - "supply": 29 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 8311, - "clock_position": null, - "time": "8:39", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 8544, - "clock_position": null, - "time": "8:54", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 8628, - "clock_position": null, - "time": "8:59", - "is_chronoboosted": false, - "supply": 32 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 8797, - "clock_position": null, - "time": "9:09", - "is_chronoboosted": false, - "supply": 26 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 8800, - "clock_position": null, - "time": "9:10", - "is_chronoboosted": false, - "supply": 26 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 8958, - "clock_position": null, - "time": "9:19", - "is_chronoboosted": false, - "supply": 20 - }, - { - "name": "Marauder", - "is_worker": false, - "frame": 9199, - "clock_position": null, - "time": "9:34", - "is_chronoboosted": false, - "supply": 14 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 9250, - "clock_position": null, - "time": "9:38", - "is_chronoboosted": false, - "supply": 14 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 9540, - "clock_position": null, - "time": "9:56", - "is_chronoboosted": false, - "supply": 9 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 9568, - "clock_position": null, - "time": "9:58", - "is_chronoboosted": false, - "supply": 9 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 9571, - "clock_position": null, - "time": "9:58", - "is_chronoboosted": false, - "supply": 9 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 9844, - "clock_position": null, - "time": "10:15", - "is_chronoboosted": false, - "supply": 11 - } - ], - "clock_position": null, - "uid": 213858, - "race": "Terran", - "team": 1, - "handicap": 100 - }, - "6": { - "is_human": true, - "league": 6, - "unitsLost": [ - { - "name": "Stalker", - "frame": 6905, - "clock_position": null, - "time": "7:11", - "killer": 5 - }, - { - "name": "Stalker", - "frame": 7085, - "clock_position": null, - "time": "7:22", - "killer": 5 - }, - { - "name": "Stalker", - "frame": 7086, - "clock_position": null, - "time": "7:22", - "killer": 5 - }, - { - "name": "Stalker", - "frame": 7189, - "clock_position": null, - "time": "7:29", - "killer": 5 - }, - { - "name": "Stalker", - "frame": 7263, - "clock_position": null, - "time": "7:33", - "killer": 5 - }, - { - "name": "VoidRay", - "frame": 7610, - "clock_position": null, - "time": "7:55", - "killer": 5 - }, - { - "name": "Stalker", - "frame": 7641, - "clock_position": null, - "time": "7:57", - "killer": 5 - }, - { - "name": "Stalker", - "frame": 8951, - "clock_position": null, - "time": "9:19", - "killer": 5 - }, - { - "name": "Stalker", - "frame": 8961, - "clock_position": null, - "time": "9:20", - "killer": 5 - }, - { - "name": "Stalker", - "frame": 9042, - "clock_position": null, - "time": "9:25", - "killer": 5 - }, - { - "name": "Zealot", - "frame": 9121, - "clock_position": null, - "time": "9:30", - "killer": 5 - }, - { - "name": "Zealot", - "frame": 9152, - "clock_position": null, - "time": "9:32", - "killer": 5 - }, - { - "name": "Stalker", - "frame": 9197, - "clock_position": null, - "time": "9:34", - "killer": 5 - }, - { - "name": "Stalker", - "frame": 9226, - "clock_position": null, - "time": "9:36", - "killer": 5 - }, - { - "name": "Stalker", - "frame": 9257, - "clock_position": null, - "time": "9:38", - "killer": 5 - }, - { - "name": "Stalker", - "frame": 9304, - "clock_position": null, - "time": "9:41", - "killer": 5 - }, - { - "name": "Stalker", - "frame": 9406, - "clock_position": null, - "time": "9:47", - "killer": 5 - }, - { - "name": "Stalker", - "frame": 9691, - "clock_position": null, - "time": "10:05", - "killer": 5 + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 6, + "frame": 18, + "is_chronoboosted": false, + "time": "0:01" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 7, + "frame": 289, + "is_chronoboosted": false, + "time": "0:18" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 8, + "frame": 560, + "is_chronoboosted": false, + "time": "0:35" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 9, + "frame": 831, + "is_chronoboosted": false, + "time": "0:51" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 10, + "frame": 898, + "is_chronoboosted": false, + "time": "0:56" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 10, + "frame": 1102, + "is_chronoboosted": false, + "time": "1:08" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 11, + "frame": 1379, + "is_chronoboosted": false, + "time": "1:26" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 12, + "frame": 1650, + "is_chronoboosted": false, + "time": "1:43" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 13, + "frame": 1921, + "is_chronoboosted": false, + "time": "2:00" + }, + { + "is_worker": false, + "name": "CommandCenter", + "clock_position": null, + "supply": 14, + "frame": 2190, + "is_chronoboosted": false, + "time": "2:16" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 14, + "frame": 2282, + "is_chronoboosted": false, + "time": "2:22" + }, + { + "is_worker": false, + "name": "Barracks", + "clock_position": null, + "supply": 15, + "frame": 2541, + "is_chronoboosted": false, + "time": "2:38" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 15, + "frame": 2631, + "is_chronoboosted": false, + "time": "2:44" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 16, + "frame": 2902, + "is_chronoboosted": false, + "time": "3:01" + }, + { + "is_worker": false, + "name": "Barracks", + "clock_position": null, + "supply": 17, + "frame": 2994, + "is_chronoboosted": false, + "time": "3:07" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 17, + "frame": 3173, + "is_chronoboosted": false, + "time": "3:18" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 18, + "frame": 3444, + "is_chronoboosted": false, + "time": "3:35" + }, + { + "is_worker": false, + "name": "OrbitalCommand", + "clock_position": null, + "supply": 19, + "frame": 3722, + "is_chronoboosted": false, + "time": "3:52" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 19, + "frame": 3790, + "is_chronoboosted": false, + "time": "3:56" + }, + { + "is_worker": false, + "name": "OrbitalCommand", + "clock_position": null, + "supply": 19, + "frame": 3800, + "is_chronoboosted": false, + "time": "3:57" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 20, + "frame": 4046, + "is_chronoboosted": false, + "time": "4:12" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 21, + "frame": 4097, + "is_chronoboosted": false, + "time": "4:16" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 21, + "frame": 4134, + "is_chronoboosted": false, + "time": "4:18" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 21, + "frame": 4189, + "is_chronoboosted": false, + "time": "4:21" + }, + { + "is_worker": false, + "name": "Bunker", + "clock_position": null, + "supply": 21, + "frame": 4241, + "is_chronoboosted": false, + "time": "4:25" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 22, + "frame": 4299, + "is_chronoboosted": false, + "time": "4:28" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 22, + "frame": 4372, + "is_chronoboosted": false, + "time": "4:33" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 24, + "frame": 4513, + "is_chronoboosted": false, + "time": "4:42" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 24, + "frame": 4570, + "is_chronoboosted": false, + "time": "4:45" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 26, + "frame": 4643, + "is_chronoboosted": false, + "time": "4:50" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 26, + "frame": 4659, + "is_chronoboosted": false, + "time": "4:51" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 28, + "frame": 4847, + "is_chronoboosted": false, + "time": "5:02" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 28, + "frame": 4853, + "is_chronoboosted": false, + "time": "5:03" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 29, + "frame": 4914, + "is_chronoboosted": false, + "time": "5:07" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 29, + "frame": 4925, + "is_chronoboosted": false, + "time": "5:07" + }, + { + "is_worker": false, + "name": "BarracksReactor", + "clock_position": null, + "supply": 29, + "frame": 4963, + "is_chronoboosted": false, + "time": "5:10" + }, + { + "is_worker": false, + "name": "BarracksTechLab", + "clock_position": null, + "supply": 30, + "frame": 5067, + "is_chronoboosted": false, + "time": "5:16" + }, + { + "is_worker": false, + "name": "EngineeringBay", + "clock_position": null, + "supply": 30, + "frame": 5152, + "is_chronoboosted": false, + "time": "5:22" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 30, + "frame": 5327, + "is_chronoboosted": false, + "time": "5:32" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 30, + "frame": 5327, + "is_chronoboosted": false, + "time": "5:32" + }, + { + "is_worker": false, + "name": "Stimpack", + "clock_position": null, + "supply": 32, + "frame": 5545, + "is_chronoboosted": false, + "time": "5:46" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 32, + "frame": 5551, + "is_chronoboosted": false, + "time": "5:46" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 32, + "frame": 5598, + "is_chronoboosted": false, + "time": "5:49" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 32, + "frame": 5598, + "is_chronoboosted": false, + "time": "5:49" + }, + { + "is_worker": false, + "name": "Barracks", + "clock_position": null, + "supply": 32, + "frame": 5650, + "is_chronoboosted": false, + "time": "5:53" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 36, + "frame": 5693, + "is_chronoboosted": false, + "time": "5:55" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 36, + "frame": 5799, + "is_chronoboosted": false, + "time": "6:02" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 38, + "frame": 5869, + "is_chronoboosted": false, + "time": "6:06" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 38, + "frame": 5869, + "is_chronoboosted": false, + "time": "6:06" + }, + { + "is_worker": false, + "name": "Reaper", + "clock_position": null, + "supply": 38, + "frame": 5873, + "is_chronoboosted": false, + "time": "6:07" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 40, + "frame": 6060, + "is_chronoboosted": false, + "time": "6:18" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 40, + "frame": 6072, + "is_chronoboosted": false, + "time": "6:19" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 40, + "frame": 6100, + "is_chronoboosted": false, + "time": "6:21" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 40, + "frame": 6156, + "is_chronoboosted": false, + "time": "6:24" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 43, + "frame": 6181, + "is_chronoboosted": false, + "time": "6:26" + }, + { + "is_worker": false, + "name": "TerranInfantryWeaponsLevel1", + "clock_position": null, + "supply": 43, + "frame": 6297, + "is_chronoboosted": false, + "time": "6:33" + }, + { + "is_worker": false, + "name": "MissileTurret", + "clock_position": null, + "supply": 43, + "frame": 6389, + "is_chronoboosted": false, + "time": "6:39" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 40, + "frame": 6614, + "is_chronoboosted": false, + "time": "6:53" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 40, + "frame": 6620, + "is_chronoboosted": false, + "time": "6:53" + }, + { + "is_worker": false, + "name": "MissileTurret", + "clock_position": null, + "supply": 41, + "frame": 6716, + "is_chronoboosted": false, + "time": "6:59" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 41, + "frame": 6792, + "is_chronoboosted": false, + "time": "7:04" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 42, + "frame": 6817, + "is_chronoboosted": false, + "time": "7:06" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 37, + "frame": 7169, + "is_chronoboosted": false, + "time": "7:28" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 37, + "frame": 7171, + "is_chronoboosted": false, + "time": "7:28" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 37, + "frame": 7174, + "is_chronoboosted": false, + "time": "7:28" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 37, + "frame": 7177, + "is_chronoboosted": false, + "time": "7:28" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 37, + "frame": 7194, + "is_chronoboosted": false, + "time": "7:29" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 37, + "frame": 7197, + "is_chronoboosted": false, + "time": "7:29" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 37, + "frame": 7568, + "is_chronoboosted": false, + "time": "7:53" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 32, + "frame": 7796, + "is_chronoboosted": false, + "time": "8:07" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 32, + "frame": 7801, + "is_chronoboosted": false, + "time": "8:07" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 32, + "frame": 7804, + "is_chronoboosted": false, + "time": "8:07" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 33, + "frame": 7970, + "is_chronoboosted": false, + "time": "8:18" + }, + { + "is_worker": false, + "name": "OrbitalCommand", + "clock_position": null, + "supply": 33, + "frame": 8035, + "is_chronoboosted": false, + "time": "8:22" + }, + { + "is_worker": false, + "name": "Bunker", + "clock_position": null, + "supply": 29, + "frame": 8212, + "is_chronoboosted": false, + "time": "8:33" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 29, + "frame": 8229, + "is_chronoboosted": false, + "time": "8:34" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 29, + "frame": 8232, + "is_chronoboosted": false, + "time": "8:34" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 29, + "frame": 8235, + "is_chronoboosted": false, + "time": "8:34" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 31, + "frame": 8311, + "is_chronoboosted": false, + "time": "8:39" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 31, + "frame": 8544, + "is_chronoboosted": false, + "time": "8:54" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 32, + "frame": 8628, + "is_chronoboosted": false, + "time": "8:59" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 26, + "frame": 8797, + "is_chronoboosted": false, + "time": "9:09" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 26, + "frame": 8800, + "is_chronoboosted": false, + "time": "9:10" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 20, + "frame": 8958, + "is_chronoboosted": false, + "time": "9:19" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 14, + "frame": 9199, + "is_chronoboosted": false, + "time": "9:34" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 14, + "frame": 9250, + "is_chronoboosted": false, + "time": "9:38" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 9, + "frame": 9540, + "is_chronoboosted": false, + "time": "9:56" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 9, + "frame": 9568, + "is_chronoboosted": false, + "time": "9:58" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 9, + "frame": 9571, + "is_chronoboosted": false, + "time": "9:58" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 11, + "frame": 9844, + "is_chronoboosted": false, + "time": "10:15" } - ], - "color": "0042FF", + ], "abilities": [ { - "name": "ChronoBoost", - "frame": 1182, - "time": "1:13" - }, - { - "name": "ChronoBoost", - "frame": 1520, - "time": "1:35" - }, - { - "name": "ChronoBoost", - "frame": 2215, - "time": "2:18" - }, + "frame": 4333, + "name": "CalldownMULE", + "time": "4:30" + }, { - "name": "ChronoBoost", - "frame": 3039, - "time": "3:09" - }, + "frame": 4378, + "name": "CalldownMULE", + "time": "4:33" + }, { - "name": "ChronoBoost", - "frame": 4102, - "time": "4:16" - }, + "frame": 5740, + "name": "CalldownMULE", + "time": "5:58" + }, { - "name": "ChronoBoost", - "frame": 5574, - "time": "5:48" - }, + "frame": 5742, + "name": "CalldownMULE", + "time": "5:58" + }, { - "name": "ChronoBoost", - "frame": 5979, - "time": "6:13" - }, + "frame": 5883, + "name": "CalldownMULE", + "time": "6:07" + }, { - "name": "ChronoBoost", - "frame": 6035, - "time": "6:17" - }, + "frame": 5886, + "name": "CalldownMULE", + "time": "6:07" + }, { - "name": "ChronoBoost", - "frame": 6676, - "time": "6:57" - }, + "frame": 7419, + "name": "CalldownMULE", + "time": "7:43" + }, { - "name": "ChronoBoost", - "frame": 7872, - "time": "8:12" - }, + "frame": 7422, + "name": "CalldownMULE", + "time": "7:43" + }, { - "name": "ChronoBoost", - "frame": 7993, - "time": "8:19" - }, + "frame": 9095, + "name": "CalldownMULE", + "time": "9:28" + }, { - "name": "ChronoBoost", - "frame": 7996, - "time": "8:19" - }, + "frame": 9098, + "name": "CalldownMULE", + "time": "9:28" + }, { - "name": "TemporalField", - "frame": 8589, - "time": "8:56" - }, + "frame": 9101, + "name": "CalldownMULE", + "time": "9:28" + } + ], + "name": "SjoWBBII", + "is_human": true, + "level": 53, + "handicap": 100, + "region": "eu", + "is_winner": false, + "pick_race": "Terran", + "clock_position": null, + "commander": null, + "color": "B4141E", + "unitsLost": [ { - "name": "TemporalField", - "frame": 8738, + "frame": 6316, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "6:34" + }, + { + "frame": 6334, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "6:35" + }, + { + "frame": 6372, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "6:38" + }, + { + "frame": 6442, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "6:42" + }, + { + "frame": 6503, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "6:46" + }, + { + "frame": 6917, + "killer": 6, + "name": "Marauder", + "clock_position": null, + "time": "7:12" + }, + { + "frame": 7031, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "7:19" + }, + { + "frame": 7063, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "7:21" + }, + { + "frame": 7104, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "7:24" + }, + { + "frame": 7130, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "7:25" + }, + { + "frame": 7175, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "7:28" + }, + { + "frame": 7190, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "7:29" + }, + { + "frame": 7227, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "7:31" + }, + { + "frame": 7287, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "7:35" + }, + { + "frame": 7347, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "7:39" + }, + { + "frame": 7443, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "7:45" + }, + { + "frame": 7545, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "7:51" + }, + { + "frame": 7557, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "7:52" + }, + { + "frame": 7605, + "killer": 6, + "name": "Marauder", + "clock_position": null, + "time": "7:55" + }, + { + "frame": 7676, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "7:59" + }, + { + "frame": 7767, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "8:05" + }, + { + "frame": 7828, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "8:09" + }, + { + "frame": 7857, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "8:11" + }, + { + "frame": 7926, + "killer": 5, + "name": "Bunker", + "clock_position": null, + "time": "8:15" + }, + { + "frame": 7946, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "8:16" + }, + { + "frame": 7976, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "8:18" + }, + { + "frame": 8002, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "8:20" + }, + { + "frame": 8061, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "8:23" + }, + { + "frame": 8062, + "killer": 6, + "name": "Reaper", + "clock_position": null, + "time": "8:23" + }, + { + "frame": 8115, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "8:27" + }, + { + "frame": 8280, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "8:37" + }, + { + "frame": 8328, + "killer": 6, + "name": "MissileTurret", + "clock_position": null, + "time": "8:40" + }, + { + "frame": 8446, + "killer": 6, + "name": "SupplyDepot", + "clock_position": null, + "time": "8:47" + }, + { + "frame": 8610, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "8:58" + }, + { + "frame": 8612, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "8:58" + }, + { + "frame": 8634, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "8:59" + }, + { + "frame": 8658, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "9:01" + }, + { + "frame": 8679, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "9:02" + }, + { + "frame": 8685, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "9:02" + }, + { + "frame": 8714, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "9:04" + }, + { + "frame": 8733, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "9:05" + }, + { + "frame": 8736, + "killer": 6, + "name": "SCV", + "clock_position": null, "time": "9:06" - }, - { - "name": "ChronoBoost", - "frame": 9548, - "time": "9:56" - }, - { - "name": "ChronoBoost", - "frame": 9551, - "time": "9:56" - }, - { - "name": "TemporalField", - "frame": 9959, - "time": "10:22" + }, + { + "frame": 8760, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "9:07" + }, + { + "frame": 8780, + "killer": 5, + "name": "SupplyDepot", + "clock_position": null, + "time": "9:08" + }, + { + "frame": 8781, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "9:08" + }, + { + "frame": 8805, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "9:10" + }, + { + "frame": 8829, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "9:11" + }, + { + "frame": 8847, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "9:12" + }, + { + "frame": 8857, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "9:13" + }, + { + "frame": 8918, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "9:17" + }, + { + "frame": 8920, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "9:17" + }, + { + "frame": 8937, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "9:18" + }, + { + "frame": 8961, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "9:20" + }, + { + "frame": 8985, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "9:21" + }, + { + "frame": 9014, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "9:23" + }, + { + "frame": 9039, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "9:24" + }, + { + "frame": 9121, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "9:30" + }, + { + "frame": 9181, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "9:33" + }, + { + "frame": 9254, + "killer": 6, + "name": "Bunker", + "clock_position": null, + "time": "9:38" + }, + { + "frame": 9304, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "9:41" + }, + { + "frame": 9331, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "9:43" + }, + { + "frame": 9355, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "9:44" + }, + { + "frame": 9378, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "9:46" + }, + { + "frame": 9400, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "9:47" + }, + { + "frame": 9514, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "9:54" + }, + { + "frame": 9677, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "10:04" + }, + { + "frame": 9701, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "10:06" + }, + { + "frame": 9702, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "10:06" + }, + { + "frame": 9901, + "killer": 6, + "name": "SCV", + "clock_position": null, + "time": "10:18" + }, + { + "frame": 9972, + "killer": 6, + "name": "Marauder", + "clock_position": null, + "time": "10:23" + }, + { + "frame": 9991, + "killer": 6, + "name": "Marine", + "clock_position": null, + "time": "10:24" + }, + { + "frame": 10086, + "killer": 6, + "name": "BarracksTechLab", + "clock_position": null, + "time": "10:30" } - ], - "result": "Win", - "is_winner": true, - "region": "eu", - "level": 32, - "pick_race": "Protoss", + ], + "race": "Terran", + "result": "Loss", + "team": 1, + "uid": 213858 + }, + "6": { "supply": [ [ - 0, + 0, 6 - ], + ], [ - 93, + 93, 7 - ], + ], [ - 253, + 253, 7 - ], + ], [ - 413, + 413, 8 - ], + ], [ - 573, + 573, 9 - ], + ], [ - 733, + 733, 9 - ], + ], [ - 893, + 893, 10 - ], + ], [ - 1053, + 1053, 10 - ], + ], [ - 1213, + 1213, 11 - ], + ], [ - 1373, + 1373, 12 - ], + ], [ - 1533, + 1533, 12 - ], + ], [ - 1693, + 1693, 13 - ], + ], [ - 1853, + 1853, 14 - ], + ], [ - 2013, + 2013, 15 - ], + ], [ - 2173, + 2173, 15 - ], + ], [ - 2333, + 2333, 16 - ], + ], [ - 2493, + 2493, 17 - ], + ], [ - 2653, + 2653, 18 - ], + ], [ - 2813, + 2813, 18 - ], + ], [ - 2973, + 2973, 19 - ], + ], [ - 3133, + 3133, 20 - ], + ], [ - 3293, + 3293, 20 - ], + ], [ - 3453, + 3453, 21 - ], + ], [ - 3613, + 3613, 22 - ], + ], [ - 3773, + 3773, 22 - ], + ], [ - 3933, + 3933, 24 - ], + ], [ - 4093, + 4093, 26 - ], + ], [ - 4253, + 4253, 26 - ], + ], [ - 4413, + 4413, 27 - ], + ], [ - 4573, + 4573, 28 - ], + ], [ - 4733, + 4733, 31 - ], + ], [ - 4893, + 4893, 31 - ], + ], [ - 5053, + 5053, 31 - ], + ], [ - 5213, + 5213, 31 - ], + ], [ - 5373, + 5373, 31 - ], + ], [ - 5533, + 5533, 33 - ], + ], [ - 5693, + 5693, 34 - ], + ], [ - 5853, + 5853, 34 - ], + ], [ - 6013, + 6013, 34 - ], + ], [ - 6173, + 6173, 38 - ], + ], [ - 6333, + 6333, 38 - ], + ], [ - 6493, + 6493, 44 - ], + ], [ - 6653, + 6653, 44 - ], + ], [ - 6813, + 6813, 44 - ], + ], [ - 6973, + 6973, 42 - ], + ], [ - 7133, + 7133, 44 - ], + ], [ - 7293, + 7293, 40 - ], + ], [ - 7453, + 7453, 40 - ], + ], [ - 7613, + 7613, 36 - ], + ], [ - 7773, + 7773, 40 - ], + ], [ - 7933, + 7933, 40 - ], + ], [ - 8093, + 8093, 40 - ], + ], [ - 8253, + 8253, 42 - ], + ], [ - 8413, + 8413, 46 - ], + ], [ - 8573, + 8573, 46 - ], + ], [ - 8733, + 8733, 48 - ], + ], [ - 8893, + 8893, 52 - ], + ], [ - 9053, + 9053, 46 - ], + ], [ - 9213, + 9213, 40 - ], + ], [ - 9373, + 9373, 36 - ], + ], [ - 9533, + 9533, 38 - ], + ], [ - 9693, + 9693, 36 - ], + ], [ - 9853, + 9853, 38 - ], + ], [ - 10013, + 10013, 38 - ], + ], [ - 10105, + 10105, 44 ] - ], - "name": "Stardust", - "commander": null, + ], + "league": 6, "buildOrder": [ { - "name": "Probe", - "is_worker": true, - "frame": 18, - "clock_position": null, - "time": "0:01", - "is_chronoboosted": false, - "supply": 6 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 289, - "clock_position": null, - "time": "0:18", - "is_chronoboosted": false, - "supply": 7 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 560, - "clock_position": null, - "time": "0:35", - "is_chronoboosted": false, - "supply": 8 - }, - { - "name": "Pylon", - "is_worker": false, - "frame": 775, - "clock_position": null, - "time": "0:48", - "is_chronoboosted": false, - "supply": 9 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 887, - "clock_position": null, - "time": "0:55", - "is_chronoboosted": false, - "supply": 9 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 1175, - "clock_position": null, - "time": "1:13", - "is_chronoboosted": true, - "supply": 10 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 1394, - "clock_position": null, - "time": "1:27", - "is_chronoboosted": true, - "supply": 12 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 1558, - "clock_position": null, - "time": "1:37", - "is_chronoboosted": true, - "supply": 12 - }, - { - "name": "Gateway", - "is_worker": false, - "frame": 1616, - "clock_position": null, - "time": "1:41", - "is_chronoboosted": false, - "supply": 12 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 1754, - "clock_position": null, - "time": "1:49", - "is_chronoboosted": true, - "supply": 13 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 1940, - "clock_position": null, - "time": "2:01", - "is_chronoboosted": false, - "supply": 14 - }, - { - "name": "Assimilator", - "is_worker": false, - "frame": 1972, - "clock_position": null, - "time": "2:03", - "is_chronoboosted": false, - "supply": 14 - }, - { - "name": "Assimilator", - "is_worker": false, - "frame": 2147, - "clock_position": null, - "time": "2:14", - "is_chronoboosted": false, - "supply": 15 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 2211, - "clock_position": null, - "time": "2:18", - "is_chronoboosted": true, - "supply": 15 - }, - { - "name": "Pylon", - "is_worker": false, - "frame": 2399, - "clock_position": null, - "time": "2:29", - "is_chronoboosted": false, - "supply": 16 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 2438, - "clock_position": null, - "time": "2:32", - "is_chronoboosted": true, - "supply": 16 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 2613, - "clock_position": null, - "time": "2:43", - "is_chronoboosted": false, - "supply": 17 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 2884, - "clock_position": null, - "time": "3:00", - "is_chronoboosted": true, - "supply": 18 - }, - { - "name": "CyberneticsCore", - "is_worker": false, - "frame": 2906, - "clock_position": null, - "time": "3:01", - "is_chronoboosted": false, - "supply": 18 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 3155, - "clock_position": null, - "time": "3:17", - "is_chronoboosted": true, - "supply": 20 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 3312, - "clock_position": null, - "time": "3:27", - "is_chronoboosted": true, - "supply": 20 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 3537, - "clock_position": null, - "time": "3:41", - "is_chronoboosted": false, - "supply": 21 - }, - { - "name": "WarpGateResearch", - "is_worker": false, - "frame": 3717, - "clock_position": null, - "time": "3:52", - "is_chronoboosted": true, - "supply": 22 - }, - { - "name": "MothershipCore", - "is_worker": false, - "frame": 3808, - "clock_position": null, - "time": "3:58", - "is_chronoboosted": true, - "supply": 22 - }, - { - "name": "Pylon", - "is_worker": false, - "frame": 3861, - "clock_position": null, - "time": "4:01", - "is_chronoboosted": false, - "supply": 22 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 3953, - "clock_position": null, - "time": "4:07", - "is_chronoboosted": false, - "supply": 24 - }, - { - "name": "Pylon", - "is_worker": false, - "frame": 4144, - "clock_position": null, - "time": "4:19", - "is_chronoboosted": false, - "supply": 26 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 4302, - "clock_position": null, - "time": "4:28", - "is_chronoboosted": true, - "supply": 26 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 4453, - "clock_position": null, - "time": "4:38", - "is_chronoboosted": false, - "supply": 27 - }, - { - "name": "Stargate", - "is_worker": false, - "frame": 4552, - "clock_position": null, - "time": "4:44", - "is_chronoboosted": false, - "supply": 27 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 4645, - "clock_position": null, - "time": "4:50", - "is_chronoboosted": false, - "supply": 28 - }, - { - "name": "Probe", - "is_worker": true, - "frame": 4724, - "clock_position": null, - "time": "4:55", - "is_chronoboosted": false, - "supply": 28 - }, - { - "name": "Gateway", - "is_worker": false, - "frame": 4942, - "clock_position": null, - "time": "5:08", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Gateway", - "is_worker": false, - "frame": 5077, - "clock_position": null, - "time": "5:17", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Pylon", - "is_worker": false, - "frame": 5511, - "clock_position": null, - "time": "5:44", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Oracle", - "is_worker": false, - "frame": 5566, - "clock_position": null, - "time": "5:47", - "is_chronoboosted": true, - "supply": 33 - }, - { - "name": "Pylon", - "is_worker": false, - "frame": 6087, - "clock_position": null, - "time": "6:20", - "is_chronoboosted": false, - "supply": 34 - }, - { - "name": "VoidRay", - "is_worker": false, - "frame": 6199, - "clock_position": null, - "time": "6:27", - "is_chronoboosted": true, - "supply": 38 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 6457, - "clock_position": null, - "time": "6:43", - "is_chronoboosted": false, - "supply": 38 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 6460, - "clock_position": null, - "time": "6:43", - "is_chronoboosted": false, - "supply": 38 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 6462, - "clock_position": null, - "time": "6:43", - "is_chronoboosted": false, - "supply": 38 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 7101, - "clock_position": null, - "time": "7:23", - "is_chronoboosted": false, - "supply": 42 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 7104, - "clock_position": null, - "time": "7:24", - "is_chronoboosted": false, - "supply": 42 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 7107, - "clock_position": null, - "time": "7:24", - "is_chronoboosted": false, - "supply": 42 - }, - { - "name": "Pylon", - "is_worker": false, - "frame": 7299, - "clock_position": null, - "time": "7:36", - "is_chronoboosted": false, - "supply": 40 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 7765, - "clock_position": null, - "time": "8:05", - "is_chronoboosted": false, - "supply": 36 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 7768, - "clock_position": null, - "time": "8:05", - "is_chronoboosted": false, - "supply": 36 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 7771, - "clock_position": null, - "time": "8:05", - "is_chronoboosted": false, - "supply": 36 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 8209, - "clock_position": null, - "time": "8:33", - "is_chronoboosted": false, - "supply": 40 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 8302, - "clock_position": null, - "time": "8:38", - "is_chronoboosted": false, - "supply": 42 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 8305, - "clock_position": null, - "time": "8:39", - "is_chronoboosted": false, - "supply": 42 - }, - { - "name": "Gateway", - "is_worker": false, - "frame": 8448, - "clock_position": null, - "time": "8:48", - "is_chronoboosted": false, - "supply": 46 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 8713, - "clock_position": null, - "time": "9:04", - "is_chronoboosted": false, - "supply": 46 - }, - { - "name": "Zealot", - "is_worker": false, - "frame": 8845, - "clock_position": null, - "time": "9:12", - "is_chronoboosted": false, - "supply": 48 - }, - { - "name": "Zealot", - "is_worker": false, - "frame": 8848, - "clock_position": null, - "time": "9:13", - "is_chronoboosted": false, - "supply": 48 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 9233, - "clock_position": null, - "time": "9:37", - "is_chronoboosted": false, - "supply": 40 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 9427, - "clock_position": null, - "time": "9:49", - "is_chronoboosted": false, - "supply": 36 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 9430, - "clock_position": null, - "time": "9:49", - "is_chronoboosted": false, - "supply": 36 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 9785, - "clock_position": null, - "time": "10:11", - "is_chronoboosted": false, - "supply": 36 - }, - { - "name": "Pylon", - "is_worker": false, - "frame": 9875, - "clock_position": null, - "time": "10:17", - "is_chronoboosted": false, - "supply": 38 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 10041, - "clock_position": null, - "time": "10:27", - "is_chronoboosted": false, - "supply": 38 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 10043, - "clock_position": null, - "time": "10:27", - "is_chronoboosted": false, - "supply": 38 - }, - { - "name": "Stalker", - "is_worker": false, - "frame": 10046, - "clock_position": null, - "time": "10:27", - "is_chronoboosted": false, - "supply": 38 + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 6, + "frame": 18, + "is_chronoboosted": false, + "time": "0:01" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 7, + "frame": 289, + "is_chronoboosted": false, + "time": "0:18" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 8, + "frame": 560, + "is_chronoboosted": false, + "time": "0:35" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 9, + "frame": 775, + "is_chronoboosted": false, + "time": "0:48" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 9, + "frame": 887, + "is_chronoboosted": false, + "time": "0:55" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 10, + "frame": 1175, + "is_chronoboosted": true, + "time": "1:13" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 12, + "frame": 1394, + "is_chronoboosted": true, + "time": "1:27" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 12, + "frame": 1558, + "is_chronoboosted": true, + "time": "1:37" + }, + { + "is_worker": false, + "name": "Gateway", + "clock_position": null, + "supply": 12, + "frame": 1616, + "is_chronoboosted": false, + "time": "1:41" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 13, + "frame": 1754, + "is_chronoboosted": true, + "time": "1:49" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 14, + "frame": 1940, + "is_chronoboosted": false, + "time": "2:01" + }, + { + "is_worker": false, + "name": "Assimilator", + "clock_position": null, + "supply": 14, + "frame": 1972, + "is_chronoboosted": false, + "time": "2:03" + }, + { + "is_worker": false, + "name": "Assimilator", + "clock_position": null, + "supply": 15, + "frame": 2147, + "is_chronoboosted": false, + "time": "2:14" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 15, + "frame": 2211, + "is_chronoboosted": true, + "time": "2:18" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 16, + "frame": 2399, + "is_chronoboosted": false, + "time": "2:29" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 16, + "frame": 2438, + "is_chronoboosted": true, + "time": "2:32" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 17, + "frame": 2613, + "is_chronoboosted": false, + "time": "2:43" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 18, + "frame": 2884, + "is_chronoboosted": true, + "time": "3:00" + }, + { + "is_worker": false, + "name": "CyberneticsCore", + "clock_position": null, + "supply": 18, + "frame": 2906, + "is_chronoboosted": false, + "time": "3:01" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 20, + "frame": 3155, + "is_chronoboosted": true, + "time": "3:17" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 20, + "frame": 3312, + "is_chronoboosted": true, + "time": "3:27" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 21, + "frame": 3537, + "is_chronoboosted": false, + "time": "3:41" + }, + { + "is_worker": false, + "name": "WarpGateResearch", + "clock_position": null, + "supply": 22, + "frame": 3717, + "is_chronoboosted": true, + "time": "3:52" + }, + { + "is_worker": false, + "name": "MothershipCore", + "clock_position": null, + "supply": 22, + "frame": 3808, + "is_chronoboosted": true, + "time": "3:58" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 22, + "frame": 3861, + "is_chronoboosted": false, + "time": "4:01" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 24, + "frame": 3953, + "is_chronoboosted": false, + "time": "4:07" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 26, + "frame": 4144, + "is_chronoboosted": false, + "time": "4:19" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 26, + "frame": 4302, + "is_chronoboosted": true, + "time": "4:28" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 27, + "frame": 4453, + "is_chronoboosted": false, + "time": "4:38" + }, + { + "is_worker": false, + "name": "Stargate", + "clock_position": null, + "supply": 27, + "frame": 4552, + "is_chronoboosted": false, + "time": "4:44" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 28, + "frame": 4645, + "is_chronoboosted": false, + "time": "4:50" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 28, + "frame": 4724, + "is_chronoboosted": false, + "time": "4:55" + }, + { + "is_worker": false, + "name": "Gateway", + "clock_position": null, + "supply": 31, + "frame": 4942, + "is_chronoboosted": false, + "time": "5:08" + }, + { + "is_worker": false, + "name": "Gateway", + "clock_position": null, + "supply": 31, + "frame": 5077, + "is_chronoboosted": false, + "time": "5:17" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 31, + "frame": 5511, + "is_chronoboosted": false, + "time": "5:44" + }, + { + "is_worker": false, + "name": "Oracle", + "clock_position": null, + "supply": 33, + "frame": 5566, + "is_chronoboosted": true, + "time": "5:47" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 34, + "frame": 6087, + "is_chronoboosted": false, + "time": "6:20" + }, + { + "is_worker": false, + "name": "VoidRay", + "clock_position": null, + "supply": 38, + "frame": 6199, + "is_chronoboosted": true, + "time": "6:27" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 38, + "frame": 6457, + "is_chronoboosted": false, + "time": "6:43" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 38, + "frame": 6460, + "is_chronoboosted": false, + "time": "6:43" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 38, + "frame": 6462, + "is_chronoboosted": false, + "time": "6:43" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 42, + "frame": 7101, + "is_chronoboosted": false, + "time": "7:23" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 42, + "frame": 7104, + "is_chronoboosted": false, + "time": "7:24" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 42, + "frame": 7107, + "is_chronoboosted": false, + "time": "7:24" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 40, + "frame": 7299, + "is_chronoboosted": false, + "time": "7:36" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 36, + "frame": 7765, + "is_chronoboosted": false, + "time": "8:05" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 36, + "frame": 7768, + "is_chronoboosted": false, + "time": "8:05" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 36, + "frame": 7771, + "is_chronoboosted": false, + "time": "8:05" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 40, + "frame": 8209, + "is_chronoboosted": false, + "time": "8:33" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 42, + "frame": 8302, + "is_chronoboosted": false, + "time": "8:38" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 42, + "frame": 8305, + "is_chronoboosted": false, + "time": "8:39" + }, + { + "is_worker": false, + "name": "Gateway", + "clock_position": null, + "supply": 46, + "frame": 8448, + "is_chronoboosted": false, + "time": "8:48" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 46, + "frame": 8713, + "is_chronoboosted": false, + "time": "9:04" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 48, + "frame": 8845, + "is_chronoboosted": false, + "time": "9:12" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 48, + "frame": 8848, + "is_chronoboosted": false, + "time": "9:13" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 40, + "frame": 9233, + "is_chronoboosted": false, + "time": "9:37" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 36, + "frame": 9427, + "is_chronoboosted": false, + "time": "9:49" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 36, + "frame": 9430, + "is_chronoboosted": false, + "time": "9:49" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 36, + "frame": 9785, + "is_chronoboosted": false, + "time": "10:11" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 38, + "frame": 9875, + "is_chronoboosted": false, + "time": "10:17" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 38, + "frame": 10041, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 38, + "frame": 10043, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 38, + "frame": 10046, + "is_chronoboosted": false, + "time": "10:27" + } + ], + "abilities": [ + { + "frame": 1182, + "name": "ChronoBoost", + "time": "1:13" + }, + { + "frame": 1520, + "name": "ChronoBoost", + "time": "1:35" + }, + { + "frame": 2215, + "name": "ChronoBoost", + "time": "2:18" + }, + { + "frame": 3039, + "name": "ChronoBoost", + "time": "3:09" + }, + { + "frame": 4102, + "name": "ChronoBoost", + "time": "4:16" + }, + { + "frame": 5574, + "name": "ChronoBoost", + "time": "5:48" + }, + { + "frame": 5979, + "name": "ChronoBoost", + "time": "6:13" + }, + { + "frame": 6035, + "name": "ChronoBoost", + "time": "6:17" + }, + { + "frame": 6676, + "name": "ChronoBoost", + "time": "6:57" + }, + { + "frame": 7872, + "name": "ChronoBoost", + "time": "8:12" + }, + { + "frame": 7993, + "name": "ChronoBoost", + "time": "8:19" + }, + { + "frame": 7996, + "name": "ChronoBoost", + "time": "8:19" + }, + { + "frame": 8589, + "name": "TemporalField", + "time": "8:56" + }, + { + "frame": 8738, + "name": "TemporalField", + "time": "9:06" + }, + { + "frame": 9548, + "name": "ChronoBoost", + "time": "9:56" + }, + { + "frame": 9551, + "name": "ChronoBoost", + "time": "9:56" + }, + { + "frame": 9959, + "name": "TemporalField", + "time": "10:22" + } + ], + "name": "Stardust", + "is_human": true, + "level": 32, + "handicap": 100, + "region": "eu", + "is_winner": true, + "pick_race": "Protoss", + "clock_position": null, + "commander": null, + "color": "0042FF", + "unitsLost": [ + { + "frame": 6905, + "killer": 5, + "name": "Stalker", + "clock_position": null, + "time": "7:11" + }, + { + "frame": 7085, + "killer": 5, + "name": "Stalker", + "clock_position": null, + "time": "7:22" + }, + { + "frame": 7086, + "killer": 5, + "name": "Stalker", + "clock_position": null, + "time": "7:22" + }, + { + "frame": 7189, + "killer": 5, + "name": "Stalker", + "clock_position": null, + "time": "7:29" + }, + { + "frame": 7263, + "killer": 5, + "name": "Stalker", + "clock_position": null, + "time": "7:33" + }, + { + "frame": 7610, + "killer": 5, + "name": "VoidRay", + "clock_position": null, + "time": "7:55" + }, + { + "frame": 7641, + "killer": 5, + "name": "Stalker", + "clock_position": null, + "time": "7:57" + }, + { + "frame": 8951, + "killer": 5, + "name": "Stalker", + "clock_position": null, + "time": "9:19" + }, + { + "frame": 8961, + "killer": 5, + "name": "Stalker", + "clock_position": null, + "time": "9:20" + }, + { + "frame": 9042, + "killer": 5, + "name": "Stalker", + "clock_position": null, + "time": "9:25" + }, + { + "frame": 9121, + "killer": 5, + "name": "Zealot", + "clock_position": null, + "time": "9:30" + }, + { + "frame": 9152, + "killer": 5, + "name": "Zealot", + "clock_position": null, + "time": "9:32" + }, + { + "frame": 9197, + "killer": 5, + "name": "Stalker", + "clock_position": null, + "time": "9:34" + }, + { + "frame": 9226, + "killer": 5, + "name": "Stalker", + "clock_position": null, + "time": "9:36" + }, + { + "frame": 9257, + "killer": 5, + "name": "Stalker", + "clock_position": null, + "time": "9:38" + }, + { + "frame": 9304, + "killer": 5, + "name": "Stalker", + "clock_position": null, + "time": "9:41" + }, + { + "frame": 9406, + "killer": 5, + "name": "Stalker", + "clock_position": null, + "time": "9:47" + }, + { + "frame": 9691, + "killer": 5, + "name": "Stalker", + "clock_position": null, + "time": "10:05" } - ], - "clock_position": null, - "uid": 3074362, - "race": "Protoss", - "team": 2, - "handicap": 100 + ], + "race": "Protoss", + "result": "Win", + "team": 2, + "uid": 3074362 } - }, - "buildOrderExtracted": true, - "frames": 10178 + }, + "buildOrderExtracted": true, + "build": 25604, + "frames_per_second": 16, + "unix_timestamp": 1371501606 } \ No newline at end of file diff --git a/tests/kerrigan.json b/tests/kerrigan.json index 9a32956..3099dd0 100644 --- a/tests/kerrigan.json +++ b/tests/kerrigan.json @@ -1,16328 +1,16328 @@ { - "message": "", - "frames_per_second": 16, - "game_type": "2v2", - "map_hash": "cd8f8bea787ae7a2e10fbed0182bf0964a5f44c74ed042383fd9b10769d865d1", - "build": 62848, - "category": "Ladder", - "include_map_details": false, - "expansion": "LotV", - "frames": 24392, - "unix_timestamp": 1521950547, - "baseBuild": 62848, - "map": "Lock & Load", - "region": "us", + "map": "Lock & Load", + "baseBuild": 62848, + "expansion": "LotV", + "cooperative": true, + "frames": 24392, + "message": "", + "category": "Ladder", + "map_hash": "cd8f8bea787ae7a2e10fbed0182bf0964a5f44c74ed042383fd9b10769d865d1", + "include_map_details": false, + "region": "us", + "game_type": "2v2", "players": { "1": { "supply": [ [ - 0, + 0, 6 - ], + ], [ - 1, + 1, 12 - ], + ], [ - 160, + 160, 13 - ], + ], [ - 320, + 320, 13 - ], + ], [ - 480, + 480, 14 - ], + ], [ - 640, + 640, 14 - ], + ], [ - 800, + 800, 16 - ], + ], [ - 960, + 960, 15 - ], + ], [ - 1120, + 1120, 16 - ], + ], [ - 1280, + 1280, 17 - ], + ], [ - 1440, + 1440, 17 - ], + ], [ - 1600, + 1600, 18 - ], + ], [ - 1760, + 1760, 18 - ], + ], [ - 1920, + 1920, 18 - ], + ], [ - 2080, + 2080, 19 - ], + ], [ - 2240, + 2240, 19 - ], + ], [ - 2400, + 2400, 18 - ], + ], [ - 2560, + 2560, 19 - ], + ], [ - 2720, + 2720, 20 - ], + ], [ - 2880, + 2880, 21 - ], + ], [ - 3040, + 3040, 21 - ], + ], [ - 3200, + 3200, 21 - ], + ], [ - 3360, + 3360, 22 - ], + ], [ - 3520, + 3520, 23 - ], + ], [ - 3680, + 3680, 23 - ], + ], [ - 3840, + 3840, 26 - ], + ], [ - 4000, + 4000, 26 - ], + ], [ - 4160, + 4160, 27 - ], + ], [ - 4320, + 4320, 28 - ], + ], [ - 4480, + 4480, 29 - ], + ], [ - 4640, + 4640, 29 - ], + ], [ - 4800, + 4800, 29 - ], + ], [ - 4960, + 4960, 29 - ], + ], [ - 5120, + 5120, 30 - ], + ], [ - 5280, + 5280, 30 - ], + ], [ - 5440, + 5440, 29 - ], + ], [ - 5600, + 5600, 30 - ], + ], [ - 5760, + 5760, 35 - ], + ], [ - 5920, + 5920, 33 - ], + ], [ - 6080, + 6080, 33 - ], + ], [ - 6240, + 6240, 39 - ], + ], [ - 6400, + 6400, 39 - ], + ], [ - 6560, + 6560, 38 - ], + ], [ - 6720, + 6720, 43 - ], + ], [ - 6880, + 6880, 42 - ], + ], [ - 7040, + 7040, 42 - ], + ], [ - 7200, + 7200, 42 - ], + ], [ - 7360, + 7360, 49 - ], + ], [ - 7520, + 7520, 49 - ], + ], [ - 7680, + 7680, 48 - ], + ], [ - 7840, + 7840, 52 - ], + ], [ - 8000, + 8000, 54 - ], + ], [ - 8160, + 8160, 54 - ], + ], [ - 8320, + 8320, 54 - ], + ], [ - 8480, + 8480, 53 - ], + ], [ - 8640, + 8640, 50 - ], + ], [ - 8800, + 8800, 50 - ], + ], [ - 8960, + 8960, 70 - ], + ], [ - 9120, + 9120, 71 - ], + ], [ - 9280, + 9280, 78 - ], + ], [ - 9440, + 9440, 77 - ], + ], [ - 9600, + 9600, 77 - ], + ], [ - 9760, + 9760, 76 - ], + ], [ - 9920, + 9920, 75 - ], + ], [ - 10080, + 10080, 85 - ], + ], [ - 10240, + 10240, 85 - ], + ], [ - 10400, + 10400, 85 - ], + ], [ - 10560, + 10560, 84 - ], + ], [ - 10720, + 10720, 94 - ], + ], [ - 10880, + 10880, 94 - ], + ], [ - 11040, + 11040, 94 - ], + ], [ - 11200, + 11200, 94 - ], + ], [ - 11360, + 11360, 90 - ], + ], [ - 11520, + 11520, 102 - ], + ], [ - 11680, + 11680, 116 - ], + ], [ - 11840, + 11840, 116 - ], + ], [ - 12000, + 12000, 114 - ], + ], [ - 12160, + 12160, 104 - ], + ], [ - 12320, + 12320, 104 - ], + ], [ - 12480, + 12480, 104 - ], + ], [ - 12640, + 12640, 104 - ], + ], [ - 12800, + 12800, 100 - ], + ], [ - 12960, + 12960, 92 - ], + ], [ - 13120, + 13120, 92 - ], + ], [ - 13280, + 13280, 92 - ], + ], [ - 13440, + 13440, 92 - ], + ], [ - 13600, + 13600, 91 - ], + ], [ - 13760, + 13760, 91 - ], + ], [ - 13920, + 13920, 91 - ], + ], [ - 14080, + 14080, 90 - ], + ], [ - 14240, + 14240, 88 - ], + ], [ - 14400, + 14400, 88 - ], + ], [ - 14560, + 14560, 136 - ], + ], [ - 14720, + 14720, 136 - ], + ], [ - 14880, + 14880, 136 - ], + ], [ - 15040, + 15040, 136 - ], + ], [ - 15200, + 15200, 148 - ], + ], [ - 15360, + 15360, 148 - ], + ], [ - 15520, + 15520, 148 - ], + ], [ - 15680, + 15680, 148 - ], + ], [ - 15840, + 15840, 148 - ], + ], [ - 16000, + 16000, 148 - ], + ], [ - 16160, + 16160, 148 - ], + ], [ - 16320, + 16320, 152 - ], + ], [ - 16480, + 16480, 172 - ], + ], [ - 16640, + 16640, 172 - ], + ], [ - 16800, + 16800, 172 - ], + ], [ - 16960, + 16960, 166 - ], + ], [ - 17120, + 17120, 152 - ], + ], [ - 17280, + 17280, 170 - ], + ], [ - 17440, + 17440, 170 - ], + ], [ - 17600, + 17600, 170 - ], + ], [ - 17760, + 17760, 169 - ], + ], [ - 17920, + 17920, 168 - ], + ], [ - 18080, + 18080, 168 - ], + ], [ - 18240, + 18240, 166 - ], + ], [ - 18400, + 18400, 164 - ], + ], [ - 18560, + 18560, 164 - ], + ], [ - 18720, + 18720, 164 - ], + ], [ - 18880, + 18880, 178 - ], + ], [ - 19040, + 19040, 177 - ], + ], [ - 19200, + 19200, 171 - ], + ], [ - 19360, + 19360, 163 - ], + ], [ - 19520, + 19520, 160 - ], + ], [ - 19680, + 19680, 160 - ], + ], [ - 19840, + 19840, 160 - ], + ], [ - 20000, + 20000, 160 - ], + ], [ - 20160, + 20160, 160 - ], + ], [ - 20320, + 20320, 182 - ], + ], [ - 20480, + 20480, 182 - ], + ], [ - 20640, + 20640, 182 - ], + ], [ - 20800, + 20800, 180 - ], + ], [ - 20960, + 20960, 174 - ], + ], [ - 21120, + 21120, 173 - ], + ], [ - 21280, + 21280, 171 - ], + ], [ - 21440, + 21440, 169 - ], + ], [ - 21600, + 21600, 189 - ], + ], [ - 21760, + 21760, 188 - ], + ], [ - 21920, + 21920, 183 - ], + ], [ - 22080, + 22080, 180 - ], + ], [ - 22240, + 22240, 185 - ], + ], [ - 22400, + 22400, 179 - ], + ], [ - 22560, + 22560, 179 - ], + ], [ - 22720, + 22720, 177 - ], + ], [ - 22880, + 22880, 176 - ], + ], [ - 23040, + 23040, 196 - ], + ], [ - 23200, + 23200, 195 - ], + ], [ - 23360, + 23360, 191 - ], + ], [ - 23520, + 23520, 181 - ], + ], [ - 23680, + 23680, 181 - ], + ], [ - 23840, + 23840, 181 - ], + ], [ - 24000, + 24000, 181 - ], + ], [ - 24160, + 24160, 181 - ], + ], [ - 24320, + 24320, 181 - ], + ], [ - 24389, + 24389, 181 ] - ], - "result": "Unknown", - "uid": 992715, - "color": "FF00FF", - "is_human": true, - "team": 1, - "level": 4294967295, - "pick_race": "Zerg", + ], + "league": 0, "buildOrder": [ { - "clock_position": null, - "frame": 60, - "is_worker": true, - "time": "0:03", - "is_chronoboosted": false, - "name": "Drone", - "supply": 12 - }, - { - "clock_position": null, - "frame": 302, - "is_worker": false, - "time": "0:18", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 13 - }, - { - "clock_position": null, - "frame": 449, - "is_worker": true, - "time": "0:28", - "is_chronoboosted": false, - "name": "Drone", - "supply": 13 - }, - { - "clock_position": null, - "frame": 716, - "is_worker": true, - "time": "0:44", - "is_chronoboosted": false, - "name": "Drone", - "supply": 14 - }, - { - "clock_position": null, - "frame": 721, - "is_worker": true, - "time": "0:45", - "is_chronoboosted": false, - "name": "Drone", - "supply": 14 - }, - { - "clock_position": null, - "frame": 824, - "is_worker": false, - "time": "0:51", - "is_chronoboosted": false, - "name": "Extractor", - "supply": 16 - }, - { - "clock_position": null, - "frame": 836, - "is_worker": false, - "time": "0:52", - "is_chronoboosted": false, - "name": "Extractor", - "supply": 16 - }, - { - "clock_position": null, - "frame": 945, - "is_worker": true, - "time": "0:59", - "is_chronoboosted": false, - "name": "Drone", - "supply": 16 - }, - { - "clock_position": null, - "frame": 1052, - "is_worker": true, - "time": "1:05", - "is_chronoboosted": false, - "name": "Drone", - "supply": 15 - }, - { - "clock_position": null, - "frame": 1242, - "is_worker": true, - "time": "1:17", - "is_chronoboosted": false, - "name": "Drone", - "supply": 16 - }, - { - "clock_position": null, - "frame": 1482, - "is_worker": true, - "time": "1:32", - "is_chronoboosted": false, - "name": "Drone", - "supply": 17 - }, - { - "clock_position": null, - "frame": 1634, - "is_worker": false, - "time": "1:42", - "is_chronoboosted": false, - "name": "EvolutionChamber", - "supply": 18 - }, - { - "clock_position": null, - "frame": 1730, - "is_worker": true, - "time": "1:48", - "is_chronoboosted": false, - "name": "Drone", - "supply": 18 - }, - { - "clock_position": null, - "frame": 1956, - "is_worker": true, - "time": "2:02", - "is_chronoboosted": false, - "name": "Drone", - "supply": 18 - }, - { - "clock_position": null, - "frame": 2312, - "is_worker": false, - "time": "2:24", - "is_chronoboosted": false, - "name": "SpawningPool", - "supply": 19 - }, - { - "clock_position": null, - "frame": 2363.0, - "is_worker": false, - "time": "2:27", - "is_chronoboosted": false, - "name": "Heroic Fortitude", - "supply": 19 - }, - { - "clock_position": null, - "frame": 2458, - "is_worker": true, - "time": "2:33", - "is_chronoboosted": false, - "name": "Drone", - "supply": 18 - }, - { - "clock_position": null, - "frame": 2622, - "is_worker": true, - "time": "2:43", - "is_chronoboosted": false, - "name": "Drone", - "supply": 19 - }, - { - "clock_position": null, - "frame": 2797, - "is_worker": false, - "time": "2:54", - "is_chronoboosted": false, - "name": "Lair", - "supply": 20 - }, - { - "clock_position": null, - "frame": 2843, - "is_worker": true, - "time": "2:57", - "is_chronoboosted": false, - "name": "Drone", - "supply": 20 - }, - { - "clock_position": null, - "frame": 2938, - "is_worker": false, - "time": "3:03", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 21 - }, - { - "clock_position": null, - "frame": 3208, - "is_worker": true, - "time": "3:20", - "is_chronoboosted": false, - "name": "Drone", - "supply": 21 - }, - { - "clock_position": null, - "frame": 3436.0, - "is_worker": false, - "time": "3:34", - "is_chronoboosted": false, - "name": "ZergMeleeWeaponsLevel1", - "supply": 22 - }, - { - "clock_position": null, - "frame": 3505, - "is_worker": true, - "time": "3:39", - "is_chronoboosted": false, - "name": "Drone", - "supply": 22 - }, - { - "clock_position": null, - "frame": 3721, - "is_worker": false, - "time": "3:52", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 23 - }, - { - "clock_position": null, - "frame": 3721, - "is_worker": false, - "time": "3:52", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 23 - }, - { - "clock_position": null, - "frame": 3814, - "is_worker": false, - "time": "3:58", - "is_chronoboosted": false, - "name": "Queen", - "supply": 23 - }, - { - "clock_position": null, - "frame": 4037, - "is_worker": false, - "time": "4:12", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 26 - }, - { - "clock_position": null, - "frame": 4037, - "is_worker": false, - "time": "4:12", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 26 - }, - { - "clock_position": null, - "frame": 4191, - "is_worker": true, - "time": "4:21", - "is_chronoboosted": false, - "name": "Drone", - "supply": 27 - }, - { - "clock_position": null, - "frame": 4378, - "is_worker": true, - "time": "4:33", - "is_chronoboosted": false, - "name": "Drone", - "supply": 28 - }, - { - "clock_position": null, - "frame": 4871, - "is_worker": true, - "time": "5:04", - "is_chronoboosted": false, - "name": "Drone", - "supply": 29 - }, - { - "clock_position": null, - "frame": 4936, - "is_worker": false, - "time": "5:08", - "is_chronoboosted": false, - "name": "Hatchery", - "supply": 29 - }, - { - "clock_position": null, - "frame": 5065, - "is_worker": true, - "time": "5:16", - "is_chronoboosted": false, - "name": "Drone", - "supply": 29 - }, - { - "clock_position": null, - "frame": 5100, - "is_worker": false, - "time": "5:18", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 29 - }, - { - "clock_position": null, - "frame": 5295, - "is_worker": false, - "time": "5:30", - "is_chronoboosted": false, - "name": "Spire", - "supply": 30 - }, - { - "clock_position": null, - "frame": 5465, - "is_worker": true, - "time": "5:41", - "is_chronoboosted": false, - "name": "Drone", - "supply": 29 - }, - { - "clock_position": null, - "frame": 5616, - "is_worker": false, - "time": "5:51", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 30 - }, - { - "clock_position": null, - "frame": 5616, - "is_worker": false, - "time": "5:51", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 30 - }, - { - "clock_position": null, - "frame": 5626, - "is_worker": false, - "time": "5:51", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 30 - }, - { - "clock_position": null, - "frame": 5626, - "is_worker": false, - "time": "5:51", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 30 - }, - { - "clock_position": null, - "frame": 5628, - "is_worker": false, - "time": "5:51", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 30 - }, - { - "clock_position": null, - "frame": 5628, - "is_worker": false, - "time": "5:51", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 30 - }, - { - "clock_position": null, - "frame": 5628, - "is_worker": false, - "time": "5:51", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 30 - }, - { - "clock_position": null, - "frame": 5628, - "is_worker": false, - "time": "5:51", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 30 - }, - { - "clock_position": null, - "frame": 5629, - "is_worker": false, - "time": "5:51", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 30 - }, - { - "clock_position": null, - "frame": 5629, - "is_worker": false, - "time": "5:51", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 30 - }, - { - "clock_position": null, - "frame": 6165, - "is_worker": false, - "time": "6:25", - "is_chronoboosted": false, - "name": "Queen", - "supply": 33 - }, - { - "clock_position": null, - "frame": 6198, - "is_worker": true, - "time": "6:27", - "is_chronoboosted": false, - "name": "Drone", - "supply": 33 - }, - { - "clock_position": null, - "frame": 6209, - "is_worker": true, - "time": "6:28", - "is_chronoboosted": false, - "name": "Drone", - "supply": 33 - }, - { - "clock_position": null, - "frame": 6211, - "is_worker": true, - "time": "6:28", - "is_chronoboosted": false, - "name": "Drone", - "supply": 33 - }, - { - "clock_position": null, - "frame": 6211, - "is_worker": true, - "time": "6:28", - "is_chronoboosted": false, - "name": "Drone", - "supply": 33 - }, - { - "clock_position": null, - "frame": 6277.0, - "is_worker": false, - "time": "6:32", - "is_chronoboosted": false, - "name": "ZergMissileWeaponsLevel1", - "supply": 39 - }, - { - "clock_position": null, - "frame": 6515, - "is_worker": false, - "time": "6:47", - "is_chronoboosted": false, - "name": "HydraliskDen", - "supply": 39 - }, - { - "clock_position": null, - "frame": 6656, - "is_worker": true, - "time": "6:56", - "is_chronoboosted": false, - "name": "Drone", - "supply": 38 - }, - { - "clock_position": null, - "frame": 6667, - "is_worker": true, - "time": "6:56", - "is_chronoboosted": false, - "name": "Drone", - "supply": 38 - }, - { - "clock_position": null, - "frame": 6669, - "is_worker": true, - "time": "6:56", - "is_chronoboosted": false, - "name": "Drone", - "supply": 38 - }, - { - "clock_position": null, - "frame": 6669, - "is_worker": true, - "time": "6:56", - "is_chronoboosted": false, - "name": "Drone", - "supply": 38 - }, - { - "clock_position": null, - "frame": 6670, - "is_worker": true, - "time": "6:56", - "is_chronoboosted": false, - "name": "Drone", - "supply": 38 - }, - { - "clock_position": null, - "frame": 6670, - "is_worker": true, - "time": "6:56", - "is_chronoboosted": false, - "name": "Drone", - "supply": 38 - }, - { - "clock_position": null, - "frame": 6712, - "is_worker": false, - "time": "6:59", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 38 - }, - { - "clock_position": null, - "frame": 6714, - "is_worker": false, - "time": "6:59", - "is_chronoboosted": false, - "name": "Extractor", - "supply": 38 - }, - { - "clock_position": null, - "frame": 6716, - "is_worker": false, - "time": "6:59", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 38 - }, - { - "clock_position": null, - "frame": 6750, - "is_worker": false, - "time": "7:01", - "is_chronoboosted": false, - "name": "Extractor", - "supply": 43 - }, - { - "clock_position": null, - "frame": 6892.0, - "is_worker": false, - "time": "7:10", - "is_chronoboosted": false, - "name": "Metabolic Boost", - "supply": 42 - }, - { - "clock_position": null, - "frame": 7256, - "is_worker": true, - "time": "7:33", - "is_chronoboosted": false, - "name": "Drone", - "supply": 42 - }, - { - "clock_position": null, - "frame": 7267, - "is_worker": true, - "time": "7:34", - "is_chronoboosted": false, - "name": "Drone", - "supply": 42 - }, - { - "clock_position": null, - "frame": 7267, - "is_worker": true, - "time": "7:34", - "is_chronoboosted": false, - "name": "Drone", - "supply": 42 - }, - { - "clock_position": null, - "frame": 7269, - "is_worker": true, - "time": "7:34", - "is_chronoboosted": false, - "name": "Drone", - "supply": 42 - }, - { - "clock_position": null, - "frame": 7270, - "is_worker": true, - "time": "7:34", - "is_chronoboosted": false, - "name": "Drone", - "supply": 42 - }, - { - "clock_position": null, - "frame": 7270, - "is_worker": true, - "time": "7:34", - "is_chronoboosted": false, - "name": "Drone", - "supply": 42 - }, - { - "clock_position": null, - "frame": 7270, - "is_worker": true, - "time": "7:34", - "is_chronoboosted": false, - "name": "Drone", - "supply": 42 - }, - { - "clock_position": null, - "frame": 7424.0, - "is_worker": false, - "time": "7:44", - "is_chronoboosted": false, - "name": "Muscular Augments", - "supply": 49 - }, - { - "clock_position": null, - "frame": 7686, - "is_worker": true, - "time": "8:00", - "is_chronoboosted": false, - "name": "Drone", - "supply": 48 - }, - { - "clock_position": null, - "frame": 7698, - "is_worker": true, - "time": "8:01", - "is_chronoboosted": false, - "name": "Drone", - "supply": 48 - }, - { - "clock_position": null, - "frame": 7698, - "is_worker": true, - "time": "8:01", - "is_chronoboosted": false, - "name": "Drone", - "supply": 48 - }, - { - "clock_position": null, - "frame": 7699, - "is_worker": true, - "time": "8:01", - "is_chronoboosted": false, - "name": "Drone", - "supply": 48 - }, - { - "clock_position": null, - "frame": 7899, - "is_worker": true, - "time": "8:13", - "is_chronoboosted": false, - "name": "Drone", - "supply": 52 - }, - { - "clock_position": null, - "frame": 7911, - "is_worker": true, - "time": "8:14", - "is_chronoboosted": false, - "name": "Drone", - "supply": 52 - }, - { - "clock_position": null, - "frame": 8049, - "is_worker": false, - "time": "8:23", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 54 - }, - { - "clock_position": null, - "frame": 8053, - "is_worker": false, - "time": "8:23", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 54 - }, - { - "clock_position": null, - "frame": 8056, - "is_worker": false, - "time": "8:23", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 54 - }, - { - "clock_position": null, - "frame": 8059, - "is_worker": false, - "time": "8:23", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 54 - }, - { - "clock_position": null, - "frame": 8835, - "is_worker": false, - "time": "9:12", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 50 - }, - { - "clock_position": null, - "frame": 8846, - "is_worker": false, - "time": "9:12", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 50 - }, - { - "clock_position": null, - "frame": 8848, - "is_worker": false, - "time": "9:13", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 50 - }, - { - "clock_position": null, - "frame": 8848, - "is_worker": false, - "time": "9:13", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 50 - }, - { - "clock_position": null, - "frame": 8848, - "is_worker": false, - "time": "9:13", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 50 - }, - { - "clock_position": null, - "frame": 8849, - "is_worker": false, - "time": "9:13", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 50 - }, - { - "clock_position": null, - "frame": 8849, - "is_worker": false, - "time": "9:13", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 50 - }, - { - "clock_position": null, - "frame": 8851, - "is_worker": false, - "time": "9:13", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 50 - }, - { - "clock_position": null, - "frame": 8852, - "is_worker": false, - "time": "9:13", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 50 - }, - { - "clock_position": null, - "frame": 8852, - "is_worker": false, - "time": "9:13", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 50 - }, - { - "clock_position": null, - "frame": 9113, - "is_worker": true, - "time": "9:29", - "is_chronoboosted": false, - "name": "Drone", - "supply": 70 - }, - { - "clock_position": null, - "frame": 9126, - "is_worker": true, - "time": "9:30", - "is_chronoboosted": false, - "name": "Drone", - "supply": 71 - }, - { - "clock_position": null, - "frame": 9126, - "is_worker": true, - "time": "9:30", - "is_chronoboosted": false, - "name": "Drone", - "supply": 71 - }, - { - "clock_position": null, - "frame": 9127, - "is_worker": true, - "time": "9:30", - "is_chronoboosted": false, - "name": "Drone", - "supply": 71 - }, - { - "clock_position": null, - "frame": 9127, - "is_worker": true, - "time": "9:30", - "is_chronoboosted": false, - "name": "Drone", - "supply": 71 - }, - { - "clock_position": null, - "frame": 9129, - "is_worker": true, - "time": "9:30", - "is_chronoboosted": false, - "name": "Drone", - "supply": 71 - }, - { - "clock_position": null, - "frame": 9129, - "is_worker": true, - "time": "9:30", - "is_chronoboosted": false, - "name": "Drone", - "supply": 71 - }, - { - "clock_position": null, - "frame": 9130, - "is_worker": true, - "time": "9:30", - "is_chronoboosted": false, - "name": "Drone", - "supply": 71 - }, - { - "clock_position": null, - "frame": 9323.0, - "is_worker": false, - "time": "9:42", - "is_chronoboosted": false, - "name": "ZergGroundArmorsLevel1", - "supply": 78 - }, - { - "clock_position": null, - "frame": 9328, - "is_worker": false, - "time": "9:43", - "is_chronoboosted": false, - "name": "EvolutionChamber", - "supply": 78 - }, - { - "clock_position": null, - "frame": 9488, - "is_worker": false, - "time": "9:53", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 77 - }, - { - "clock_position": null, - "frame": 9491, - "is_worker": false, - "time": "9:53", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 77 - }, - { - "clock_position": null, - "frame": 9499, - "is_worker": false, - "time": "9:53", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 77 - }, - { - "clock_position": null, - "frame": 9748, - "is_worker": false, - "time": "10:09", - "is_chronoboosted": false, - "name": "SpineCrawler", - "supply": 77 - }, - { - "clock_position": null, - "frame": 9787, - "is_worker": false, - "time": "10:11", - "is_chronoboosted": false, - "name": "SpineCrawler", - "supply": 76 - }, - { - "clock_position": null, - "frame": 10028, - "is_worker": false, - "time": "10:26", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 75 - }, - { - "clock_position": null, - "frame": 10040, - "is_worker": false, - "time": "10:27", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 75 - }, - { - "clock_position": null, - "frame": 10041, - "is_worker": false, - "time": "10:27", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 75 - }, - { - "clock_position": null, - "frame": 10041, - "is_worker": false, - "time": "10:27", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 75 - }, - { - "clock_position": null, - "frame": 10043, - "is_worker": false, - "time": "10:27", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 75 - }, - { - "clock_position": null, - "frame": 10545, - "is_worker": false, - "time": "10:59", - "is_chronoboosted": false, - "name": "SpineCrawler", - "supply": 85 - }, - { - "clock_position": null, - "frame": 10569, - "is_worker": false, - "time": "11:00", - "is_chronoboosted": false, - "name": "SporeCrawler", - "supply": 84 - }, - { - "clock_position": null, - "frame": 10581, - "is_worker": false, - "time": "11:01", - "is_chronoboosted": false, - "name": "SpineCrawler", - "supply": 84 - }, - { - "clock_position": null, - "frame": 10696, - "is_worker": false, - "time": "11:08", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 84 - }, - { - "clock_position": null, - "frame": 10708, - "is_worker": false, - "time": "11:09", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 84 - }, - { - "clock_position": null, - "frame": 10708, - "is_worker": false, - "time": "11:09", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 84 - }, - { - "clock_position": null, - "frame": 10708, - "is_worker": false, - "time": "11:09", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 84 - }, - { - "clock_position": null, - "frame": 10709, - "is_worker": false, - "time": "11:09", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 84 - }, - { - "clock_position": null, - "frame": 10709, - "is_worker": false, - "time": "11:09", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 84 - }, - { - "clock_position": null, - "frame": 10934, - "is_worker": false, - "time": "11:23", - "is_chronoboosted": false, - "name": "Overseer", - "supply": 94 - }, - { - "clock_position": null, - "frame": 11504, - "is_worker": false, - "time": "11:59", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 90 - }, - { - "clock_position": null, - "frame": 11515, - "is_worker": false, - "time": "11:59", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 90 - }, - { - "clock_position": null, - "frame": 11517, - "is_worker": false, - "time": "11:59", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 90 - }, - { - "clock_position": null, - "frame": 11518, - "is_worker": false, - "time": "11:59", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 90 - }, - { - "clock_position": null, - "frame": 11518, - "is_worker": false, - "time": "11:59", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 90 - }, - { - "clock_position": null, - "frame": 11518, - "is_worker": false, - "time": "11:59", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 90 - }, - { - "clock_position": null, - "frame": 11520, - "is_worker": false, - "time": "12:00", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 102 - }, - { - "clock_position": null, - "frame": 11521, - "is_worker": false, - "time": "12:00", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 102 - }, - { - "clock_position": null, - "frame": 11521, - "is_worker": false, - "time": "12:00", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 102 - }, - { - "clock_position": null, - "frame": 11522, - "is_worker": false, - "time": "12:00", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 102 - }, - { - "clock_position": null, - "frame": 11525, - "is_worker": false, - "time": "12:00", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 102 - }, - { - "clock_position": null, - "frame": 11525, - "is_worker": false, - "time": "12:00", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 102 - }, - { - "clock_position": null, - "frame": 11528, - "is_worker": false, - "time": "12:00", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 102 - }, - { - "clock_position": null, - "frame": 12166.0, - "is_worker": false, - "time": "12:40", - "is_chronoboosted": false, - "name": "ZergMissileWeaponsLevel2", - "supply": 104 - }, - { - "clock_position": null, - "frame": 12371, - "is_worker": false, - "time": "12:53", - "is_chronoboosted": false, - "name": "Hive", - "supply": 104 - }, - { - "clock_position": null, - "frame": 12506.0, - "is_worker": false, - "time": "13:01", - "is_chronoboosted": false, - "name": "ZergGroundArmorsLevel2", - "supply": 104 - }, - { - "clock_position": null, - "frame": 13564, - "is_worker": false, - "time": "14:07", - "is_chronoboosted": false, - "name": "UltraliskCavern", - "supply": 92 - }, - { - "clock_position": null, - "frame": 13705, - "is_worker": false, - "time": "14:16", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 91 - }, - { - "clock_position": null, - "frame": 13708, - "is_worker": false, - "time": "14:16", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 91 - }, - { - "clock_position": null, - "frame": 13712, - "is_worker": false, - "time": "14:17", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 91 - }, - { - "clock_position": null, - "frame": 13715, - "is_worker": false, - "time": "14:17", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 91 - }, - { - "clock_position": null, - "frame": 13718, - "is_worker": false, - "time": "14:17", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 91 - }, - { - "clock_position": null, - "frame": 13720, - "is_worker": false, - "time": "14:17", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 91 - }, - { - "clock_position": null, - "frame": 13725, - "is_worker": false, - "time": "14:17", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 91 - }, - { - "clock_position": null, - "frame": 13728, - "is_worker": false, - "time": "14:18", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 91 - }, - { - "clock_position": null, - "frame": 13731, - "is_worker": false, - "time": "14:18", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 91 - }, - { - "clock_position": null, - "frame": 13969, - "is_worker": false, - "time": "14:33", - "is_chronoboosted": false, - "name": "EvolutionChamber", - "supply": 91 - }, - { - "clock_position": null, - "frame": 14437, - "is_worker": false, - "time": "15:02", - "is_chronoboosted": false, - "name": "Ultralisk", - "supply": 88 - }, - { - "clock_position": null, - "frame": 14449, - "is_worker": false, - "time": "15:03", - "is_chronoboosted": false, - "name": "Ultralisk", - "supply": 88 - }, - { - "clock_position": null, - "frame": 14449, - "is_worker": false, - "time": "15:03", - "is_chronoboosted": false, - "name": "Ultralisk", - "supply": 88 - }, - { - "clock_position": null, - "frame": 14450, - "is_worker": false, - "time": "15:03", - "is_chronoboosted": false, - "name": "Ultralisk", - "supply": 88 - }, - { - "clock_position": null, - "frame": 14450, - "is_worker": false, - "time": "15:03", - "is_chronoboosted": false, - "name": "Ultralisk", - "supply": 88 - }, - { - "clock_position": null, - "frame": 14452, - "is_worker": false, - "time": "15:03", - "is_chronoboosted": false, - "name": "Ultralisk", - "supply": 88 - }, - { - "clock_position": null, - "frame": 14453, - "is_worker": false, - "time": "15:03", - "is_chronoboosted": false, - "name": "Ultralisk", - "supply": 88 - }, - { - "clock_position": null, - "frame": 14455, - "is_worker": false, - "time": "15:03", - "is_chronoboosted": false, - "name": "Ultralisk", - "supply": 88 - }, - { - "clock_position": null, - "frame": 14623.0, - "is_worker": false, - "time": "15:13", - "is_chronoboosted": false, - "name": "Chitinous Plating", - "supply": 136 - }, - { - "clock_position": null, - "frame": 14650.0, - "is_worker": false, - "time": "15:15", - "is_chronoboosted": false, - "name": "ZergMeleeWeaponsLevel2", - "supply": 136 - }, - { - "clock_position": null, - "frame": 15174, - "is_worker": false, - "time": "15:48", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 136 - }, - { - "clock_position": null, - "frame": 15186, - "is_worker": false, - "time": "15:49", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 136 - }, - { - "clock_position": null, - "frame": 15187, - "is_worker": false, - "time": "15:49", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 136 - }, - { - "clock_position": null, - "frame": 15187, - "is_worker": false, - "time": "15:49", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 136 - }, - { - "clock_position": null, - "frame": 15189, - "is_worker": false, - "time": "15:49", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 136 - }, - { - "clock_position": null, - "frame": 15189, - "is_worker": false, - "time": "15:49", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 136 - }, - { - "clock_position": null, - "frame": 15691.0, - "is_worker": false, - "time": "16:20", - "is_chronoboosted": false, - "name": "ZergMissileWeaponsLevel3", - "supply": 148 - }, - { - "clock_position": null, - "frame": 16257.0, - "is_worker": false, - "time": "16:56", - "is_chronoboosted": false, - "name": "ZergGroundArmorsLevel3", - "supply": 148 - }, - { - "clock_position": null, - "frame": 16278, - "is_worker": false, - "time": "16:57", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 148 - }, - { - "clock_position": null, - "frame": 16297, - "is_worker": false, - "time": "16:58", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 148 - }, - { - "clock_position": null, - "frame": 16320, - "is_worker": false, - "time": "17:00", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16320, - "is_worker": false, - "time": "17:00", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16332, - "is_worker": false, - "time": "17:00", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16332, - "is_worker": false, - "time": "17:00", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16333, - "is_worker": false, - "time": "17:00", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16333, - "is_worker": false, - "time": "17:00", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16333, - "is_worker": false, - "time": "17:00", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16333, - "is_worker": false, - "time": "17:00", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16335, - "is_worker": false, - "time": "17:00", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16335, - "is_worker": false, - "time": "17:00", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16335, - "is_worker": false, - "time": "17:00", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16335, - "is_worker": false, - "time": "17:00", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16336, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16336, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16336, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16336, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16337, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16337, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16337, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16337, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16339, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16339, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16340, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16340, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16340, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16340, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16343, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16343, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16343, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16343, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16343, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16343, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16345, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16345, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16346, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16346, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16346, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16346, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16347, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16347, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 152 - }, - { - "clock_position": null, - "frame": 16599, - "is_worker": false, - "time": "17:17", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 172 - }, - { - "clock_position": null, - "frame": 16602, - "is_worker": false, - "time": "17:17", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 172 - }, - { - "clock_position": null, - "frame": 16607, - "is_worker": false, - "time": "17:17", - "is_chronoboosted": false, - "name": "Overlord", - "supply": 172 - }, - { - "clock_position": null, - "frame": 17233, - "is_worker": false, - "time": "17:57", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 152 - }, - { - "clock_position": null, - "frame": 17244, - "is_worker": false, - "time": "17:57", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 152 - }, - { - "clock_position": null, - "frame": 17246, - "is_worker": false, - "time": "17:57", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 152 - }, - { - "clock_position": null, - "frame": 17246, - "is_worker": false, - "time": "17:57", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 152 - }, - { - "clock_position": null, - "frame": 17247, - "is_worker": false, - "time": "17:57", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 152 - }, - { - "clock_position": null, - "frame": 17247, - "is_worker": false, - "time": "17:57", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 152 - }, - { - "clock_position": null, - "frame": 17249, - "is_worker": false, - "time": "17:58", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 152 - }, - { - "clock_position": null, - "frame": 17250, - "is_worker": false, - "time": "17:58", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 152 - }, - { - "clock_position": null, - "frame": 17250, - "is_worker": false, - "time": "17:58", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 152 - }, - { - "clock_position": null, - "frame": 17715.0, - "is_worker": false, - "time": "18:27", - "is_chronoboosted": false, - "name": "Hardened Carapace", - "supply": 170 - }, - { - "clock_position": null, - "frame": 18332.0, - "is_worker": false, - "time": "19:05", - "is_chronoboosted": false, - "name": "ZergMeleeWeaponsLevel3", - "supply": 166 - }, - { - "clock_position": null, - "frame": 18720, - "is_worker": false, - "time": "19:30", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 118 - }, - { - "clock_position": null, - "frame": 18730, - "is_worker": false, - "time": "19:30", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 164 - }, - { - "clock_position": null, - "frame": 18731, - "is_worker": false, - "time": "19:30", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 164 - }, - { - "clock_position": null, - "frame": 18733, - "is_worker": false, - "time": "19:30", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 164 - }, - { - "clock_position": null, - "frame": 18733, - "is_worker": false, - "time": "19:30", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 164 - }, - { - "clock_position": null, - "frame": 18734, - "is_worker": false, - "time": "19:30", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 164 - }, - { - "clock_position": null, - "frame": 18736, - "is_worker": false, - "time": "19:31", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 164 - }, - { - "clock_position": null, - "frame": 20257, - "is_worker": false, - "time": "21:06", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 160 - }, - { - "clock_position": null, - "frame": 20269, - "is_worker": false, - "time": "21:06", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 160 - }, - { - "clock_position": null, - "frame": 20269, - "is_worker": false, - "time": "21:06", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 160 - }, - { - "clock_position": null, - "frame": 20270, - "is_worker": false, - "time": "21:06", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 160 - }, - { - "clock_position": null, - "frame": 20270, - "is_worker": false, - "time": "21:06", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 160 - }, - { - "clock_position": null, - "frame": 20271, - "is_worker": false, - "time": "21:06", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 160 - }, - { - "clock_position": null, - "frame": 20271, - "is_worker": false, - "time": "21:06", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 160 - }, - { - "clock_position": null, - "frame": 20273, - "is_worker": false, - "time": "21:07", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 160 - }, - { - "clock_position": null, - "frame": 20273, - "is_worker": false, - "time": "21:07", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 160 - }, - { - "clock_position": null, - "frame": 20274, - "is_worker": false, - "time": "21:07", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 160 - }, - { - "clock_position": null, - "frame": 20274, - "is_worker": false, - "time": "21:07", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 160 - }, - { - "clock_position": null, - "frame": 21479, - "is_worker": false, - "time": "22:22", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 169 - }, - { - "clock_position": null, - "frame": 21491, - "is_worker": false, - "time": "22:23", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 169 - }, - { - "clock_position": null, - "frame": 21491, - "is_worker": false, - "time": "22:23", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 169 - }, - { - "clock_position": null, - "frame": 21492, - "is_worker": false, - "time": "22:23", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 169 - }, - { - "clock_position": null, - "frame": 21492, - "is_worker": false, - "time": "22:23", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 169 - }, - { - "clock_position": null, - "frame": 21494, - "is_worker": false, - "time": "22:23", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 169 - }, - { - "clock_position": null, - "frame": 21495, - "is_worker": false, - "time": "22:23", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 169 - }, - { - "clock_position": null, - "frame": 21495, - "is_worker": false, - "time": "22:23", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 169 - }, - { - "clock_position": null, - "frame": 21496, - "is_worker": false, - "time": "22:23", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 169 - }, - { - "clock_position": null, - "frame": 21498, - "is_worker": false, - "time": "22:23", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 169 - }, - { - "clock_position": null, - "frame": 22107, - "is_worker": false, - "time": "23:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 180 - }, - { - "clock_position": null, - "frame": 22107, - "is_worker": false, - "time": "23:01", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 180 - }, - { - "clock_position": null, - "frame": 22118, - "is_worker": false, - "time": "23:02", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 180 - }, - { - "clock_position": null, - "frame": 22118, - "is_worker": false, - "time": "23:02", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 180 - }, - { - "clock_position": null, - "frame": 22120, - "is_worker": false, - "time": "23:02", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 180 - }, - { - "clock_position": null, - "frame": 22120, - "is_worker": false, - "time": "23:02", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 180 - }, - { - "clock_position": null, - "frame": 22121, - "is_worker": false, - "time": "23:02", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 180 - }, - { - "clock_position": null, - "frame": 22121, - "is_worker": false, - "time": "23:02", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 180 - }, - { - "clock_position": null, - "frame": 22123, - "is_worker": false, - "time": "23:02", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 180 - }, - { - "clock_position": null, - "frame": 22123, - "is_worker": false, - "time": "23:02", - "is_chronoboosted": false, - "name": "Zergling", - "supply": 180 - }, - { - "clock_position": null, - "frame": 22972, - "is_worker": false, - "time": "23:55", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 176 - }, - { - "clock_position": null, - "frame": 22983, - "is_worker": false, - "time": "23:56", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 176 - }, - { - "clock_position": null, - "frame": 22983, - "is_worker": false, - "time": "23:56", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 176 - }, - { - "clock_position": null, - "frame": 22985, - "is_worker": false, - "time": "23:56", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 176 - }, - { - "clock_position": null, - "frame": 22985, - "is_worker": false, - "time": "23:56", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 176 - }, - { - "clock_position": null, - "frame": 22985, - "is_worker": false, - "time": "23:56", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 176 - }, - { - "clock_position": null, - "frame": 22986, - "is_worker": false, - "time": "23:56", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 176 - }, - { - "clock_position": null, - "frame": 22988, - "is_worker": false, - "time": "23:56", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 176 - }, - { - "clock_position": null, - "frame": 22988, - "is_worker": false, - "time": "23:56", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 176 - }, - { - "clock_position": null, - "frame": 22989, - "is_worker": false, - "time": "23:56", - "is_chronoboosted": false, - "name": "Hydralisk", - "supply": 176 + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 12, + "frame": 60, + "is_chronoboosted": false, + "time": "0:03" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 13, + "frame": 302, + "is_chronoboosted": false, + "time": "0:18" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 13, + "frame": 449, + "is_chronoboosted": false, + "time": "0:28" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 14, + "frame": 716, + "is_chronoboosted": false, + "time": "0:44" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 14, + "frame": 721, + "is_chronoboosted": false, + "time": "0:45" + }, + { + "is_worker": false, + "name": "Extractor", + "clock_position": null, + "supply": 16, + "frame": 824, + "is_chronoboosted": false, + "time": "0:51" + }, + { + "is_worker": false, + "name": "Extractor", + "clock_position": null, + "supply": 16, + "frame": 836, + "is_chronoboosted": false, + "time": "0:52" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 16, + "frame": 945, + "is_chronoboosted": false, + "time": "0:59" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 15, + "frame": 1052, + "is_chronoboosted": false, + "time": "1:05" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 16, + "frame": 1242, + "is_chronoboosted": false, + "time": "1:17" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 17, + "frame": 1482, + "is_chronoboosted": false, + "time": "1:32" + }, + { + "is_worker": false, + "name": "EvolutionChamber", + "clock_position": null, + "supply": 18, + "frame": 1634, + "is_chronoboosted": false, + "time": "1:42" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 18, + "frame": 1730, + "is_chronoboosted": false, + "time": "1:48" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 18, + "frame": 1956, + "is_chronoboosted": false, + "time": "2:02" + }, + { + "is_worker": false, + "name": "SpawningPool", + "clock_position": null, + "supply": 19, + "frame": 2312, + "is_chronoboosted": false, + "time": "2:24" + }, + { + "is_worker": false, + "name": "Heroic Fortitude", + "clock_position": null, + "supply": 19, + "frame": 2363.0, + "is_chronoboosted": false, + "time": "2:27" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 18, + "frame": 2458, + "is_chronoboosted": false, + "time": "2:33" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 19, + "frame": 2622, + "is_chronoboosted": false, + "time": "2:43" + }, + { + "is_worker": false, + "name": "Lair", + "clock_position": null, + "supply": 20, + "frame": 2797, + "is_chronoboosted": false, + "time": "2:54" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 20, + "frame": 2843, + "is_chronoboosted": false, + "time": "2:57" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 21, + "frame": 2938, + "is_chronoboosted": false, + "time": "3:03" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 21, + "frame": 3208, + "is_chronoboosted": false, + "time": "3:20" + }, + { + "is_worker": false, + "name": "ZergMeleeWeaponsLevel1", + "clock_position": null, + "supply": 22, + "frame": 3436.0, + "is_chronoboosted": false, + "time": "3:34" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 22, + "frame": 3505, + "is_chronoboosted": false, + "time": "3:39" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 23, + "frame": 3721, + "is_chronoboosted": false, + "time": "3:52" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 23, + "frame": 3721, + "is_chronoboosted": false, + "time": "3:52" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 23, + "frame": 3814, + "is_chronoboosted": false, + "time": "3:58" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 26, + "frame": 4037, + "is_chronoboosted": false, + "time": "4:12" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 26, + "frame": 4037, + "is_chronoboosted": false, + "time": "4:12" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 27, + "frame": 4191, + "is_chronoboosted": false, + "time": "4:21" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 28, + "frame": 4378, + "is_chronoboosted": false, + "time": "4:33" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 29, + "frame": 4871, + "is_chronoboosted": false, + "time": "5:04" + }, + { + "is_worker": false, + "name": "Hatchery", + "clock_position": null, + "supply": 29, + "frame": 4936, + "is_chronoboosted": false, + "time": "5:08" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 29, + "frame": 5065, + "is_chronoboosted": false, + "time": "5:16" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 29, + "frame": 5100, + "is_chronoboosted": false, + "time": "5:18" + }, + { + "is_worker": false, + "name": "Spire", + "clock_position": null, + "supply": 30, + "frame": 5295, + "is_chronoboosted": false, + "time": "5:30" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 29, + "frame": 5465, + "is_chronoboosted": false, + "time": "5:41" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 30, + "frame": 5616, + "is_chronoboosted": false, + "time": "5:51" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 30, + "frame": 5616, + "is_chronoboosted": false, + "time": "5:51" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 30, + "frame": 5626, + "is_chronoboosted": false, + "time": "5:51" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 30, + "frame": 5626, + "is_chronoboosted": false, + "time": "5:51" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 30, + "frame": 5628, + "is_chronoboosted": false, + "time": "5:51" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 30, + "frame": 5628, + "is_chronoboosted": false, + "time": "5:51" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 30, + "frame": 5628, + "is_chronoboosted": false, + "time": "5:51" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 30, + "frame": 5628, + "is_chronoboosted": false, + "time": "5:51" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 30, + "frame": 5629, + "is_chronoboosted": false, + "time": "5:51" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 30, + "frame": 5629, + "is_chronoboosted": false, + "time": "5:51" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 33, + "frame": 6165, + "is_chronoboosted": false, + "time": "6:25" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 33, + "frame": 6198, + "is_chronoboosted": false, + "time": "6:27" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 33, + "frame": 6209, + "is_chronoboosted": false, + "time": "6:28" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 33, + "frame": 6211, + "is_chronoboosted": false, + "time": "6:28" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 33, + "frame": 6211, + "is_chronoboosted": false, + "time": "6:28" + }, + { + "is_worker": false, + "name": "ZergMissileWeaponsLevel1", + "clock_position": null, + "supply": 39, + "frame": 6277.0, + "is_chronoboosted": false, + "time": "6:32" + }, + { + "is_worker": false, + "name": "HydraliskDen", + "clock_position": null, + "supply": 39, + "frame": 6515, + "is_chronoboosted": false, + "time": "6:47" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 38, + "frame": 6656, + "is_chronoboosted": false, + "time": "6:56" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 38, + "frame": 6667, + "is_chronoboosted": false, + "time": "6:56" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 38, + "frame": 6669, + "is_chronoboosted": false, + "time": "6:56" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 38, + "frame": 6669, + "is_chronoboosted": false, + "time": "6:56" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 38, + "frame": 6670, + "is_chronoboosted": false, + "time": "6:56" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 38, + "frame": 6670, + "is_chronoboosted": false, + "time": "6:56" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 38, + "frame": 6712, + "is_chronoboosted": false, + "time": "6:59" + }, + { + "is_worker": false, + "name": "Extractor", + "clock_position": null, + "supply": 38, + "frame": 6714, + "is_chronoboosted": false, + "time": "6:59" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 38, + "frame": 6716, + "is_chronoboosted": false, + "time": "6:59" + }, + { + "is_worker": false, + "name": "Extractor", + "clock_position": null, + "supply": 43, + "frame": 6750, + "is_chronoboosted": false, + "time": "7:01" + }, + { + "is_worker": false, + "name": "Metabolic Boost", + "clock_position": null, + "supply": 42, + "frame": 6892.0, + "is_chronoboosted": false, + "time": "7:10" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 42, + "frame": 7256, + "is_chronoboosted": false, + "time": "7:33" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 42, + "frame": 7267, + "is_chronoboosted": false, + "time": "7:34" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 42, + "frame": 7267, + "is_chronoboosted": false, + "time": "7:34" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 42, + "frame": 7269, + "is_chronoboosted": false, + "time": "7:34" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 42, + "frame": 7270, + "is_chronoboosted": false, + "time": "7:34" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 42, + "frame": 7270, + "is_chronoboosted": false, + "time": "7:34" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 42, + "frame": 7270, + "is_chronoboosted": false, + "time": "7:34" + }, + { + "is_worker": false, + "name": "Muscular Augments", + "clock_position": null, + "supply": 49, + "frame": 7424.0, + "is_chronoboosted": false, + "time": "7:44" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 48, + "frame": 7686, + "is_chronoboosted": false, + "time": "8:00" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 48, + "frame": 7698, + "is_chronoboosted": false, + "time": "8:01" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 48, + "frame": 7698, + "is_chronoboosted": false, + "time": "8:01" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 48, + "frame": 7699, + "is_chronoboosted": false, + "time": "8:01" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 52, + "frame": 7899, + "is_chronoboosted": false, + "time": "8:13" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 52, + "frame": 7911, + "is_chronoboosted": false, + "time": "8:14" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 54, + "frame": 8049, + "is_chronoboosted": false, + "time": "8:23" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 54, + "frame": 8053, + "is_chronoboosted": false, + "time": "8:23" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 54, + "frame": 8056, + "is_chronoboosted": false, + "time": "8:23" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 54, + "frame": 8059, + "is_chronoboosted": false, + "time": "8:23" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 50, + "frame": 8835, + "is_chronoboosted": false, + "time": "9:12" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 50, + "frame": 8846, + "is_chronoboosted": false, + "time": "9:12" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 50, + "frame": 8848, + "is_chronoboosted": false, + "time": "9:13" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 50, + "frame": 8848, + "is_chronoboosted": false, + "time": "9:13" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 50, + "frame": 8848, + "is_chronoboosted": false, + "time": "9:13" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 50, + "frame": 8849, + "is_chronoboosted": false, + "time": "9:13" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 50, + "frame": 8849, + "is_chronoboosted": false, + "time": "9:13" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 50, + "frame": 8851, + "is_chronoboosted": false, + "time": "9:13" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 50, + "frame": 8852, + "is_chronoboosted": false, + "time": "9:13" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 50, + "frame": 8852, + "is_chronoboosted": false, + "time": "9:13" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 70, + "frame": 9113, + "is_chronoboosted": false, + "time": "9:29" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 71, + "frame": 9126, + "is_chronoboosted": false, + "time": "9:30" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 71, + "frame": 9126, + "is_chronoboosted": false, + "time": "9:30" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 71, + "frame": 9127, + "is_chronoboosted": false, + "time": "9:30" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 71, + "frame": 9127, + "is_chronoboosted": false, + "time": "9:30" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 71, + "frame": 9129, + "is_chronoboosted": false, + "time": "9:30" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 71, + "frame": 9129, + "is_chronoboosted": false, + "time": "9:30" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 71, + "frame": 9130, + "is_chronoboosted": false, + "time": "9:30" + }, + { + "is_worker": false, + "name": "ZergGroundArmorsLevel1", + "clock_position": null, + "supply": 78, + "frame": 9323.0, + "is_chronoboosted": false, + "time": "9:42" + }, + { + "is_worker": false, + "name": "EvolutionChamber", + "clock_position": null, + "supply": 78, + "frame": 9328, + "is_chronoboosted": false, + "time": "9:43" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 77, + "frame": 9488, + "is_chronoboosted": false, + "time": "9:53" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 77, + "frame": 9491, + "is_chronoboosted": false, + "time": "9:53" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 77, + "frame": 9499, + "is_chronoboosted": false, + "time": "9:53" + }, + { + "is_worker": false, + "name": "SpineCrawler", + "clock_position": null, + "supply": 77, + "frame": 9748, + "is_chronoboosted": false, + "time": "10:09" + }, + { + "is_worker": false, + "name": "SpineCrawler", + "clock_position": null, + "supply": 76, + "frame": 9787, + "is_chronoboosted": false, + "time": "10:11" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 75, + "frame": 10028, + "is_chronoboosted": false, + "time": "10:26" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 75, + "frame": 10040, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 75, + "frame": 10041, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 75, + "frame": 10041, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 75, + "frame": 10043, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "SpineCrawler", + "clock_position": null, + "supply": 85, + "frame": 10545, + "is_chronoboosted": false, + "time": "10:59" + }, + { + "is_worker": false, + "name": "SporeCrawler", + "clock_position": null, + "supply": 84, + "frame": 10569, + "is_chronoboosted": false, + "time": "11:00" + }, + { + "is_worker": false, + "name": "SpineCrawler", + "clock_position": null, + "supply": 84, + "frame": 10581, + "is_chronoboosted": false, + "time": "11:01" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 84, + "frame": 10696, + "is_chronoboosted": false, + "time": "11:08" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 84, + "frame": 10708, + "is_chronoboosted": false, + "time": "11:09" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 84, + "frame": 10708, + "is_chronoboosted": false, + "time": "11:09" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 84, + "frame": 10708, + "is_chronoboosted": false, + "time": "11:09" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 84, + "frame": 10709, + "is_chronoboosted": false, + "time": "11:09" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 84, + "frame": 10709, + "is_chronoboosted": false, + "time": "11:09" + }, + { + "is_worker": false, + "name": "Overseer", + "clock_position": null, + "supply": 94, + "frame": 10934, + "is_chronoboosted": false, + "time": "11:23" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 90, + "frame": 11504, + "is_chronoboosted": false, + "time": "11:59" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 90, + "frame": 11515, + "is_chronoboosted": false, + "time": "11:59" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 90, + "frame": 11517, + "is_chronoboosted": false, + "time": "11:59" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 90, + "frame": 11518, + "is_chronoboosted": false, + "time": "11:59" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 90, + "frame": 11518, + "is_chronoboosted": false, + "time": "11:59" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 90, + "frame": 11518, + "is_chronoboosted": false, + "time": "11:59" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 102, + "frame": 11520, + "is_chronoboosted": false, + "time": "12:00" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 102, + "frame": 11521, + "is_chronoboosted": false, + "time": "12:00" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 102, + "frame": 11521, + "is_chronoboosted": false, + "time": "12:00" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 102, + "frame": 11522, + "is_chronoboosted": false, + "time": "12:00" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 102, + "frame": 11525, + "is_chronoboosted": false, + "time": "12:00" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 102, + "frame": 11525, + "is_chronoboosted": false, + "time": "12:00" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 102, + "frame": 11528, + "is_chronoboosted": false, + "time": "12:00" + }, + { + "is_worker": false, + "name": "ZergMissileWeaponsLevel2", + "clock_position": null, + "supply": 104, + "frame": 12166.0, + "is_chronoboosted": false, + "time": "12:40" + }, + { + "is_worker": false, + "name": "Hive", + "clock_position": null, + "supply": 104, + "frame": 12371, + "is_chronoboosted": false, + "time": "12:53" + }, + { + "is_worker": false, + "name": "ZergGroundArmorsLevel2", + "clock_position": null, + "supply": 104, + "frame": 12506.0, + "is_chronoboosted": false, + "time": "13:01" + }, + { + "is_worker": false, + "name": "UltraliskCavern", + "clock_position": null, + "supply": 92, + "frame": 13564, + "is_chronoboosted": false, + "time": "14:07" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 91, + "frame": 13705, + "is_chronoboosted": false, + "time": "14:16" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 91, + "frame": 13708, + "is_chronoboosted": false, + "time": "14:16" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 91, + "frame": 13712, + "is_chronoboosted": false, + "time": "14:17" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 91, + "frame": 13715, + "is_chronoboosted": false, + "time": "14:17" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 91, + "frame": 13718, + "is_chronoboosted": false, + "time": "14:17" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 91, + "frame": 13720, + "is_chronoboosted": false, + "time": "14:17" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 91, + "frame": 13725, + "is_chronoboosted": false, + "time": "14:17" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 91, + "frame": 13728, + "is_chronoboosted": false, + "time": "14:18" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 91, + "frame": 13731, + "is_chronoboosted": false, + "time": "14:18" + }, + { + "is_worker": false, + "name": "EvolutionChamber", + "clock_position": null, + "supply": 91, + "frame": 13969, + "is_chronoboosted": false, + "time": "14:33" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 88, + "frame": 14437, + "is_chronoboosted": false, + "time": "15:02" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 88, + "frame": 14449, + "is_chronoboosted": false, + "time": "15:03" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 88, + "frame": 14449, + "is_chronoboosted": false, + "time": "15:03" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 88, + "frame": 14450, + "is_chronoboosted": false, + "time": "15:03" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 88, + "frame": 14450, + "is_chronoboosted": false, + "time": "15:03" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 88, + "frame": 14452, + "is_chronoboosted": false, + "time": "15:03" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 88, + "frame": 14453, + "is_chronoboosted": false, + "time": "15:03" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 88, + "frame": 14455, + "is_chronoboosted": false, + "time": "15:03" + }, + { + "is_worker": false, + "name": "Chitinous Plating", + "clock_position": null, + "supply": 136, + "frame": 14623.0, + "is_chronoboosted": false, + "time": "15:13" + }, + { + "is_worker": false, + "name": "ZergMeleeWeaponsLevel2", + "clock_position": null, + "supply": 136, + "frame": 14650.0, + "is_chronoboosted": false, + "time": "15:15" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 136, + "frame": 15174, + "is_chronoboosted": false, + "time": "15:48" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 136, + "frame": 15186, + "is_chronoboosted": false, + "time": "15:49" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 136, + "frame": 15187, + "is_chronoboosted": false, + "time": "15:49" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 136, + "frame": 15187, + "is_chronoboosted": false, + "time": "15:49" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 136, + "frame": 15189, + "is_chronoboosted": false, + "time": "15:49" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 136, + "frame": 15189, + "is_chronoboosted": false, + "time": "15:49" + }, + { + "is_worker": false, + "name": "ZergMissileWeaponsLevel3", + "clock_position": null, + "supply": 148, + "frame": 15691.0, + "is_chronoboosted": false, + "time": "16:20" + }, + { + "is_worker": false, + "name": "ZergGroundArmorsLevel3", + "clock_position": null, + "supply": 148, + "frame": 16257.0, + "is_chronoboosted": false, + "time": "16:56" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 148, + "frame": 16278, + "is_chronoboosted": false, + "time": "16:57" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 148, + "frame": 16297, + "is_chronoboosted": false, + "time": "16:58" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16320, + "is_chronoboosted": false, + "time": "17:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16320, + "is_chronoboosted": false, + "time": "17:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16332, + "is_chronoboosted": false, + "time": "17:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16332, + "is_chronoboosted": false, + "time": "17:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16333, + "is_chronoboosted": false, + "time": "17:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16333, + "is_chronoboosted": false, + "time": "17:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16333, + "is_chronoboosted": false, + "time": "17:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16333, + "is_chronoboosted": false, + "time": "17:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16335, + "is_chronoboosted": false, + "time": "17:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16335, + "is_chronoboosted": false, + "time": "17:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16335, + "is_chronoboosted": false, + "time": "17:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16335, + "is_chronoboosted": false, + "time": "17:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16336, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16336, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16336, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16336, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16337, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16337, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16337, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16337, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16339, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16339, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16340, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16340, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16340, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16340, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16343, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16343, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16343, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16343, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16343, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16343, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16345, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16345, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16346, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16346, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16346, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16346, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16347, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 152, + "frame": 16347, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 172, + "frame": 16599, + "is_chronoboosted": false, + "time": "17:17" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 172, + "frame": 16602, + "is_chronoboosted": false, + "time": "17:17" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 172, + "frame": 16607, + "is_chronoboosted": false, + "time": "17:17" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 152, + "frame": 17233, + "is_chronoboosted": false, + "time": "17:57" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 152, + "frame": 17244, + "is_chronoboosted": false, + "time": "17:57" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 152, + "frame": 17246, + "is_chronoboosted": false, + "time": "17:57" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 152, + "frame": 17246, + "is_chronoboosted": false, + "time": "17:57" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 152, + "frame": 17247, + "is_chronoboosted": false, + "time": "17:57" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 152, + "frame": 17247, + "is_chronoboosted": false, + "time": "17:57" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 152, + "frame": 17249, + "is_chronoboosted": false, + "time": "17:58" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 152, + "frame": 17250, + "is_chronoboosted": false, + "time": "17:58" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 152, + "frame": 17250, + "is_chronoboosted": false, + "time": "17:58" + }, + { + "is_worker": false, + "name": "Hardened Carapace", + "clock_position": null, + "supply": 170, + "frame": 17715.0, + "is_chronoboosted": false, + "time": "18:27" + }, + { + "is_worker": false, + "name": "ZergMeleeWeaponsLevel3", + "clock_position": null, + "supply": 166, + "frame": 18332.0, + "is_chronoboosted": false, + "time": "19:05" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 118, + "frame": 18720, + "is_chronoboosted": false, + "time": "19:30" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 164, + "frame": 18730, + "is_chronoboosted": false, + "time": "19:30" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 164, + "frame": 18731, + "is_chronoboosted": false, + "time": "19:30" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 164, + "frame": 18733, + "is_chronoboosted": false, + "time": "19:30" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 164, + "frame": 18733, + "is_chronoboosted": false, + "time": "19:30" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 164, + "frame": 18734, + "is_chronoboosted": false, + "time": "19:30" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 164, + "frame": 18736, + "is_chronoboosted": false, + "time": "19:31" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 160, + "frame": 20257, + "is_chronoboosted": false, + "time": "21:06" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 160, + "frame": 20269, + "is_chronoboosted": false, + "time": "21:06" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 160, + "frame": 20269, + "is_chronoboosted": false, + "time": "21:06" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 160, + "frame": 20270, + "is_chronoboosted": false, + "time": "21:06" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 160, + "frame": 20270, + "is_chronoboosted": false, + "time": "21:06" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 160, + "frame": 20271, + "is_chronoboosted": false, + "time": "21:06" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 160, + "frame": 20271, + "is_chronoboosted": false, + "time": "21:06" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 160, + "frame": 20273, + "is_chronoboosted": false, + "time": "21:07" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 160, + "frame": 20273, + "is_chronoboosted": false, + "time": "21:07" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 160, + "frame": 20274, + "is_chronoboosted": false, + "time": "21:07" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 160, + "frame": 20274, + "is_chronoboosted": false, + "time": "21:07" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 169, + "frame": 21479, + "is_chronoboosted": false, + "time": "22:22" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 169, + "frame": 21491, + "is_chronoboosted": false, + "time": "22:23" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 169, + "frame": 21491, + "is_chronoboosted": false, + "time": "22:23" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 169, + "frame": 21492, + "is_chronoboosted": false, + "time": "22:23" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 169, + "frame": 21492, + "is_chronoboosted": false, + "time": "22:23" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 169, + "frame": 21494, + "is_chronoboosted": false, + "time": "22:23" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 169, + "frame": 21495, + "is_chronoboosted": false, + "time": "22:23" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 169, + "frame": 21495, + "is_chronoboosted": false, + "time": "22:23" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 169, + "frame": 21496, + "is_chronoboosted": false, + "time": "22:23" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 169, + "frame": 21498, + "is_chronoboosted": false, + "time": "22:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 180, + "frame": 22107, + "is_chronoboosted": false, + "time": "23:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 180, + "frame": 22107, + "is_chronoboosted": false, + "time": "23:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 180, + "frame": 22118, + "is_chronoboosted": false, + "time": "23:02" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 180, + "frame": 22118, + "is_chronoboosted": false, + "time": "23:02" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 180, + "frame": 22120, + "is_chronoboosted": false, + "time": "23:02" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 180, + "frame": 22120, + "is_chronoboosted": false, + "time": "23:02" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 180, + "frame": 22121, + "is_chronoboosted": false, + "time": "23:02" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 180, + "frame": 22121, + "is_chronoboosted": false, + "time": "23:02" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 180, + "frame": 22123, + "is_chronoboosted": false, + "time": "23:02" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 180, + "frame": 22123, + "is_chronoboosted": false, + "time": "23:02" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 176, + "frame": 22972, + "is_chronoboosted": false, + "time": "23:55" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 176, + "frame": 22983, + "is_chronoboosted": false, + "time": "23:56" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 176, + "frame": 22983, + "is_chronoboosted": false, + "time": "23:56" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 176, + "frame": 22985, + "is_chronoboosted": false, + "time": "23:56" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 176, + "frame": 22985, + "is_chronoboosted": false, + "time": "23:56" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 176, + "frame": 22985, + "is_chronoboosted": false, + "time": "23:56" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 176, + "frame": 22986, + "is_chronoboosted": false, + "time": "23:56" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 176, + "frame": 22988, + "is_chronoboosted": false, + "time": "23:56" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 176, + "frame": 22988, + "is_chronoboosted": false, + "time": "23:56" + }, + { + "is_worker": false, + "name": "Hydralisk", + "clock_position": null, + "supply": 176, + "frame": 22989, + "is_chronoboosted": false, + "time": "23:56" } - ], - "league": 0, - "commander": "Kerrigan", - "handicap": 100, - "unitsLost": [ + ], + "abilities": [ { - "clock_position": null, - "time": "1:21", - "killer": null, - "frame": 1305, - "name": "Drone" - }, - { - "clock_position": null, - "time": "1:22", - "killer": null, - "frame": 1317, - "name": "Drone" - }, - { - "clock_position": null, - "time": "2:22", - "killer": null, - "frame": 2274, - "name": "Drone" - }, - { - "clock_position": null, - "time": "2:54", - "killer": null, - "frame": 2792, - "name": "Drone" - }, - { - "clock_position": null, - "time": "4:02", - "killer": null, - "frame": 3876, - "name": null - }, - { - "clock_position": null, - "time": "6:04", - "killer": 3, - "frame": 5834, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "6:05", - "killer": 3, - "frame": 5847, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "6:05", - "killer": 3, - "frame": 5849, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "6:05", - "killer": 3, - "frame": 5853, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "6:08", - "killer": null, - "frame": 5897, - "name": "Drone" - }, - { - "clock_position": null, - "time": "6:11", - "killer": null, - "frame": 5936, - "name": "Drone" - }, - { - "clock_position": null, - "time": "6:12", - "killer": 1, - "frame": 5962, - "name": null - }, - { - "clock_position": null, - "time": "6:18", - "killer": 1, - "frame": 6063, - "name": null - }, - { - "clock_position": null, - "time": "6:19", - "killer": 1, - "frame": 6066, - "name": null - }, - { - "clock_position": null, - "time": "6:19", - "killer": 1, - "frame": 6071, - "name": null - }, - { - "clock_position": null, - "time": "6:19", - "killer": 1, - "frame": 6079, - "name": null - }, - { - "clock_position": null, - "time": "6:20", - "killer": 1, - "frame": 6080, - "name": null - }, - { - "clock_position": null, - "time": "6:20", - "killer": 1, - "frame": 6081, - "name": null - }, - { - "clock_position": null, - "time": "6:20", - "killer": 1, - "frame": 6093, - "name": null - }, - { - "clock_position": null, - "time": "6:21", - "killer": 1, - "frame": 6097, - "name": null - }, - { - "clock_position": null, - "time": "6:21", - "killer": 1, - "frame": 6102, - "name": null - }, - { - "clock_position": null, - "time": "6:21", - "killer": 1, - "frame": 6102, - "name": null - }, - { - "clock_position": null, - "time": "7:27", - "killer": null, - "frame": 7155, - "name": "Drone" - }, - { - "clock_position": null, - "time": "7:29", - "killer": null, - "frame": 7195, - "name": "Drone" - }, - { - "clock_position": null, - "time": "7:31", - "killer": null, - "frame": 7230, - "name": "Drone" - }, - { - "clock_position": null, - "time": "7:50", - "killer": 3, - "frame": 7530, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "8:47", - "killer": 4, - "frame": 8445, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "8:47", - "killer": 4, - "frame": 8446, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "8:54", - "killer": 4, - "frame": 8553, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "8:55", - "killer": 4, - "frame": 8563, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "8:55", - "killer": 1, - "frame": 8568, - "name": null - }, - { - "clock_position": null, - "time": "8:56", - "killer": 4, - "frame": 8579, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "8:56", - "killer": 4, - "frame": 8582, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "8:57", - "killer": 4, - "frame": 8594, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "8:58", - "killer": 4, - "frame": 8613, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "8:58", - "killer": 4, - "frame": 8623, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "9:01", - "killer": 1, - "frame": 8669, - "name": null - }, - { - "clock_position": null, - "time": "9:02", - "killer": 1, - "frame": 8672, - "name": null - }, - { - "clock_position": null, - "time": "9:03", - "killer": 1, - "frame": 8691, - "name": null - }, - { - "clock_position": null, - "time": "9:06", - "killer": 1, - "frame": 8736, - "name": null - }, - { - "clock_position": null, - "time": "9:07", - "killer": 1, - "frame": 8760, - "name": null - }, - { - "clock_position": null, - "time": "9:19", - "killer": 1, - "frame": 8951, - "name": null - }, - { - "clock_position": null, - "time": "9:24", - "killer": 1, - "frame": 9033, - "name": null - }, - { - "clock_position": null, - "time": "9:26", - "killer": 1, - "frame": 9071, - "name": null - }, - { - "clock_position": null, - "time": "9:29", - "killer": 1, - "frame": 9108, - "name": null - }, - { - "clock_position": null, - "time": "10:23", - "killer": null, - "frame": 9968, - "name": "Drone" - }, - { - "clock_position": null, - "time": "10:39", - "killer": null, - "frame": 10228, - "name": "Drone" - }, - { - "clock_position": null, - "time": "10:41", - "killer": null, - "frame": 10268, - "name": "Drone" - }, - { - "clock_position": null, - "time": "11:29", - "killer": null, - "frame": 11025, - "name": "Drone" - }, - { - "clock_position": null, - "time": "11:30", - "killer": null, - "frame": 11050, - "name": "Drone" - }, - { - "clock_position": null, - "time": "11:31", - "killer": null, - "frame": 11061, - "name": "Drone" - }, - { - "clock_position": null, - "time": "11:35", - "killer": 1, - "frame": 11124, - "name": null - }, - { - "clock_position": null, - "time": "11:36", - "killer": 1, - "frame": 11136, - "name": null - }, - { - "clock_position": null, - "time": "11:36", - "killer": 1, - "frame": 11137, - "name": null - }, - { - "clock_position": null, - "time": "11:36", - "killer": 1, - "frame": 11148, - "name": null - }, - { - "clock_position": null, - "time": "11:37", - "killer": 1, - "frame": 11166, - "name": null - }, - { - "clock_position": null, - "time": "11:38", - "killer": 1, - "frame": 11177, - "name": null - }, - { - "clock_position": null, - "time": "11:38", - "killer": 1, - "frame": 11178, - "name": null - }, - { - "clock_position": null, - "time": "11:39", - "killer": 1, - "frame": 11187, - "name": null - }, - { - "clock_position": null, - "time": "11:40", - "killer": 1, - "frame": 11204, - "name": null - }, - { - "clock_position": null, - "time": "11:40", - "killer": 1, - "frame": 11206, - "name": null - }, - { - "clock_position": null, - "time": "11:40", - "killer": 3, - "frame": 11209, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "11:40", - "killer": 3, - "frame": 11210, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "11:42", - "killer": 1, - "frame": 11242, - "name": null - }, - { - "clock_position": null, - "time": "11:42", - "killer": 1, - "frame": 11246, - "name": null - }, - { - "clock_position": null, - "time": "11:45", - "killer": 1, - "frame": 11280, - "name": null - }, - { - "clock_position": null, - "time": "11:45", - "killer": 1, - "frame": 11291, - "name": null - }, - { - "clock_position": null, - "time": "11:46", - "killer": 1, - "frame": 11299, - "name": null - }, - { - "clock_position": null, - "time": "11:46", - "killer": 1, - "frame": 11299, - "name": null - }, - { - "clock_position": null, - "time": "11:46", - "killer": 1, - "frame": 11302, - "name": null - }, - { - "clock_position": null, - "time": "11:47", - "killer": 1, - "frame": 11313, - "name": null - }, - { - "clock_position": null, - "time": "11:48", - "killer": 1, - "frame": 11342, - "name": null - }, - { - "clock_position": null, - "time": "11:50", - "killer": 1, - "frame": 11371, - "name": null - }, - { - "clock_position": null, - "time": "12:23", - "killer": 1, - "frame": 11900, - "name": null - }, - { - "clock_position": null, - "time": "12:26", - "killer": 4, - "frame": 11948, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "12:32", - "killer": 4, - "frame": 12032, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "12:33", - "killer": 4, - "frame": 12055, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "12:33", - "killer": 4, - "frame": 12061, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "12:34", - "killer": 2, - "frame": 12068, - "name": null - }, - { - "clock_position": null, - "time": "12:34", - "killer": 4, - "frame": 12076, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "12:36", - "killer": 4, - "frame": 12108, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "13:12", - "killer": 4, - "frame": 12682, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "13:13", - "killer": 4, - "frame": 12700, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "13:20", - "killer": 4, - "frame": 12815, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "13:21", - "killer": 4, - "frame": 12823, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "13:25", - "killer": 4, - "frame": 12889, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "13:26", - "killer": 4, - "frame": 12899, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "14:39", - "killer": 1, - "frame": 14077, - "name": null - }, - { - "clock_position": null, - "time": "14:40", - "killer": 1, - "frame": 14086, - "name": null - }, - { - "clock_position": null, - "time": "14:40", - "killer": 1, - "frame": 14087, - "name": null - }, - { - "clock_position": null, - "time": "14:42", - "killer": 1, - "frame": 14113, - "name": null - }, - { - "clock_position": null, - "time": "14:42", - "killer": 1, - "frame": 14118, - "name": null - }, - { - "clock_position": null, - "time": "14:42", - "killer": 1, - "frame": 14120, - "name": null - }, - { - "clock_position": null, - "time": "14:42", - "killer": 1, - "frame": 14123, - "name": null - }, - { - "clock_position": null, - "time": "14:43", - "killer": 1, - "frame": 14139, - "name": null - }, - { - "clock_position": null, - "time": "14:44", - "killer": 1, - "frame": 14146, - "name": null - }, - { - "clock_position": null, - "time": "14:44", - "killer": 4, - "frame": 14155, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "14:47", - "killer": 1, - "frame": 14192, - "name": null - }, - { - "clock_position": null, - "time": "14:47", - "killer": 1, - "frame": 14194, - "name": null - }, - { - "clock_position": null, - "time": "14:51", - "killer": 1, - "frame": 14266, - "name": null - }, - { - "clock_position": null, - "time": "14:51", - "killer": 1, - "frame": 14269, - "name": null - }, - { - "clock_position": null, - "time": "14:53", - "killer": 1, - "frame": 14301, - "name": null - }, - { - "clock_position": null, - "time": "14:57", - "killer": null, - "frame": 14365, - "name": "Drone" - }, - { - "clock_position": null, - "time": "14:57", - "killer": 1, - "frame": 14366, - "name": null - }, - { - "clock_position": null, - "time": "14:58", - "killer": 1, - "frame": 14370, - "name": null - }, - { - "clock_position": null, - "time": "14:58", - "killer": 1, - "frame": 14372, - "name": null - }, - { - "clock_position": null, - "time": "15:13", - "killer": null, - "frame": 14610, - "name": "Drone" - }, - { - "clock_position": null, - "time": "17:36", - "killer": 3, - "frame": 16897, - "name": "Ultralisk" - }, - { - "clock_position": null, - "time": "17:40", - "killer": 3, - "frame": 16973, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "17:42", - "killer": 3, - "frame": 16994, - "name": "Ultralisk" - }, - { - "clock_position": null, - "time": "17:45", - "killer": 3, - "frame": 17046, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "17:46", - "killer": 3, - "frame": 17058, - "name": "Ultralisk" - }, - { - "clock_position": null, - "time": "17:47", - "killer": 3, - "frame": 17072, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "17:49", - "killer": 3, - "frame": 17104, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "18:27", - "killer": 4, - "frame": 17713, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "18:29", - "killer": 4, - "frame": 17754, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "18:30", - "killer": 4, - "frame": 17766, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "18:46", - "killer": 3, - "frame": 18030, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "18:57", - "killer": 4, - "frame": 18198, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "18:58", - "killer": 3, - "frame": 18209, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "18:58", - "killer": 3, - "frame": 18219, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "18:59", - "killer": 3, - "frame": 18236, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "19:00", - "killer": 3, - "frame": 18246, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "19:02", - "killer": 3, - "frame": 18278, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "19:03", - "killer": 3, - "frame": 18294, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "19:09", - "killer": 3, - "frame": 18392, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "19:41", - "killer": 4, - "frame": 18899, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "19:42", - "killer": 4, - "frame": 18914, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "19:44", - "killer": 3, - "frame": 18952, - "name": "SpineCrawler" - }, - { - "clock_position": null, - "time": "19:45", - "killer": 3, - "frame": 18965, - "name": "SpineCrawler" - }, - { - "clock_position": null, - "time": "19:49", - "killer": 3, - "frame": 19039, - "name": "SpineCrawler" - }, - { - "clock_position": null, - "time": "19:53", - "killer": 3, - "frame": 19101, - "name": "SpineCrawler" - }, - { - "clock_position": null, - "time": "19:55", - "killer": 3, - "frame": 19134, - "name": null - }, - { - "clock_position": null, - "time": "19:56", - "killer": 3, - "frame": 19138, - "name": "Drone" - }, - { - "clock_position": null, - "time": "19:56", - "killer": 3, - "frame": 19138, - "name": "Drone" - }, - { - "clock_position": null, - "time": "19:57", - "killer": 3, - "frame": 19159, - "name": "SporeCrawler" - }, - { - "clock_position": null, - "time": "19:57", - "killer": 3, - "frame": 19159, - "name": "Drone" - }, - { - "clock_position": null, - "time": "19:58", - "killer": 3, - "frame": 19181, - "name": "Drone" - }, - { - "clock_position": null, - "time": "20:03", - "killer": 3, - "frame": 19251, - "name": "Drone" - }, - { - "clock_position": null, - "time": "20:03", - "killer": 3, - "frame": 19261, - "name": "Drone" - }, - { - "clock_position": null, - "time": "20:04", - "killer": 4, - "frame": 19271, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "20:04", - "killer": 3, - "frame": 19275, - "name": "Drone" - }, - { - "clock_position": null, - "time": "20:07", - "killer": 3, - "frame": 19327, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "20:08", - "killer": 3, - "frame": 19331, - "name": "CreepTumorBurrowed" - }, - { - "clock_position": null, - "time": "20:08", - "killer": 3, - "frame": 19335, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "20:09", - "killer": 3, - "frame": 19347, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "20:12", - "killer": 3, - "frame": 19400, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "20:13", - "killer": 3, - "frame": 19423, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "20:14", - "killer": 3, - "frame": 19428, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "20:14", - "killer": 3, - "frame": 19437, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "20:16", - "killer": 3, - "frame": 19458, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "20:17", - "killer": 3, - "frame": 19477, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "21:02", - "killer": 2, - "frame": 20192, - "name": null - }, - { - "clock_position": null, - "time": "21:37", - "killer": 3, - "frame": 20764, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "21:42", - "killer": 3, - "frame": 20833, - "name": "Ultralisk" - }, - { - "clock_position": null, - "time": "21:59", - "killer": 4, - "frame": 21110, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "22:00", - "killer": 4, - "frame": 21123, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "22:02", - "killer": 4, - "frame": 21167, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "22:06", - "killer": 1, - "frame": 21219, - "name": null - }, - { - "clock_position": null, - "time": "22:06", - "killer": 1, - "frame": 21220, - "name": null - }, - { - "clock_position": null, - "time": "22:07", - "killer": 1, - "frame": 21243, - "name": null - }, - { - "clock_position": null, - "time": "22:08", - "killer": 1, - "frame": 21251, - "name": null - }, - { - "clock_position": null, - "time": "22:09", - "killer": 1, - "frame": 21271, - "name": null - }, - { - "clock_position": null, - "time": "22:09", - "killer": 1, - "frame": 21276, - "name": null - }, - { - "clock_position": null, - "time": "22:10", - "killer": 1, - "frame": 21284, - "name": null - }, - { - "clock_position": null, - "time": "22:11", - "killer": 1, - "frame": 21299, - "name": null - }, - { - "clock_position": null, - "time": "22:12", - "killer": 1, - "frame": 21312, - "name": null - }, - { - "clock_position": null, - "time": "22:14", - "killer": 1, - "frame": 21352, - "name": null - }, - { - "clock_position": null, - "time": "22:14", - "killer": 1, - "frame": 21354, - "name": null - }, - { - "clock_position": null, - "time": "22:15", - "killer": 4, - "frame": 21365, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "22:15", - "killer": 1, - "frame": 21371, - "name": null - }, - { - "clock_position": null, - "time": "22:15", - "killer": 1, - "frame": 21372, - "name": null - }, - { - "clock_position": null, - "time": "22:17", - "killer": 1, - "frame": 21393, - "name": null - }, - { - "clock_position": null, - "time": "22:38", - "killer": 4, - "frame": 21735, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "22:39", - "killer": 4, - "frame": 21752, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "22:42", - "killer": 4, - "frame": 21800, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "22:45", - "killer": 4, - "frame": 21844, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "22:45", - "killer": 4, - "frame": 21845, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "22:48", - "killer": 4, - "frame": 21899, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "22:52", - "killer": 3, - "frame": 21956, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "22:52", - "killer": 3, - "frame": 21958, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "22:57", - "killer": 4, - "frame": 22039, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "23:11", - "killer": 3, - "frame": 22257, - "name": "Ultralisk" - }, - { - "clock_position": null, - "time": "23:36", - "killer": 2, - "frame": 22659, - "name": null - }, - { - "clock_position": null, - "time": "23:38", - "killer": 4, - "frame": 22696, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "23:41", - "killer": 4, - "frame": 22739, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "24:06", - "killer": 3, - "frame": 23141, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "24:07", - "killer": 3, - "frame": 23159, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "24:09", - "killer": 4, - "frame": 23189, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "24:09", - "killer": 2, - "frame": 23190, - "name": null - }, - { - "clock_position": null, - "time": "24:11", - "killer": 4, - "frame": 23216, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "24:11", - "killer": 4, - "frame": 23219, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "24:17", - "killer": 4, - "frame": 23320, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "24:18", - "killer": 4, - "frame": 23333, - "name": "Zergling" - }, - { - "clock_position": null, - "time": "24:19", - "killer": 3, - "frame": 23355, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "24:20", - "killer": 4, - "frame": 23360, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "24:21", - "killer": 3, - "frame": 23386, - "name": "Hydralisk" - }, - { - "clock_position": null, - "time": "24:27", - "killer": 4, - "frame": 23479, - "name": "Ultralisk" + "frame": 4911, + "name": "SpawnLarva", + "time": "5:06" + }, + { + "frame": 5598, + "name": "SpawnLarva", + "time": "5:49" + }, + { + "frame": 6306, + "name": "SpawnLarva", + "time": "6:34" + }, + { + "frame": 7315, + "name": "SpawnLarva", + "time": "7:37" + }, + { + "frame": 8014, + "name": "SpawnLarva", + "time": "8:20" + }, + { + "frame": 9153, + "name": "SpawnLarva", + "time": "9:32" + }, + { + "frame": 10069, + "name": "SpawnLarva", + "time": "10:29" + }, + { + "frame": 11655, + "name": "SpawnLarva", + "time": "12:08" + }, + { + "frame": 12383, + "name": "SpawnLarva", + "time": "12:53" + }, + { + "frame": 13137, + "name": "SpawnLarva", + "time": "13:41" + }, + { + "frame": 13916, + "name": "SpawnLarva", + "time": "14:29" + }, + { + "frame": 14688, + "name": "SpawnLarva", + "time": "15:18" + }, + { + "frame": 14983, + "name": "QueenTransfusion", + "time": "15:36" + }, + { + "frame": 16185, + "name": "SpawnLarva", + "time": "16:51" + }, + { + "frame": 22180, + "name": "SpawnLarva", + "time": "23:06" } - ], - "abilities": [ + ], + "name": "StoicLoofah", + "is_human": true, + "level": 4294967295, + "handicap": 100, + "region": "us", + "is_winner": false, + "pick_race": "Zerg", + "clock_position": null, + "commander": "Kerrigan", + "color": "FF00FF", + "unitsLost": [ { - "time": "5:06", - "frame": 4911, - "name": "SpawnLarva" - }, - { - "time": "5:49", - "frame": 5598, - "name": "SpawnLarva" - }, - { - "time": "6:34", - "frame": 6306, - "name": "SpawnLarva" - }, - { - "time": "7:37", - "frame": 7315, - "name": "SpawnLarva" - }, - { - "time": "8:20", - "frame": 8014, - "name": "SpawnLarva" - }, - { - "time": "9:32", - "frame": 9153, - "name": "SpawnLarva" - }, - { - "time": "10:29", - "frame": 10069, - "name": "SpawnLarva" - }, - { - "time": "12:08", - "frame": 11655, - "name": "SpawnLarva" - }, - { - "time": "12:53", - "frame": 12383, - "name": "SpawnLarva" - }, - { - "time": "13:41", - "frame": 13137, - "name": "SpawnLarva" - }, - { - "time": "14:29", - "frame": 13916, - "name": "SpawnLarva" - }, - { - "time": "15:18", - "frame": 14688, - "name": "SpawnLarva" - }, - { - "time": "15:36", - "frame": 14983, - "name": "QueenTransfusion" - }, - { - "time": "16:51", - "frame": 16185, - "name": "SpawnLarva" - }, - { - "time": "23:06", - "frame": 22180, - "name": "SpawnLarva" + "frame": 1305, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "1:21" + }, + { + "frame": 1317, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "1:22" + }, + { + "frame": 2274, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "2:22" + }, + { + "frame": 2792, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "2:54" + }, + { + "frame": 3876, + "killer": null, + "name": null, + "clock_position": null, + "time": "4:02" + }, + { + "frame": 5834, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "6:04" + }, + { + "frame": 5847, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "6:05" + }, + { + "frame": 5849, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "6:05" + }, + { + "frame": 5853, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "6:05" + }, + { + "frame": 5897, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "6:08" + }, + { + "frame": 5936, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "6:11" + }, + { + "frame": 5962, + "killer": 1, + "name": null, + "clock_position": null, + "time": "6:12" + }, + { + "frame": 6063, + "killer": 1, + "name": null, + "clock_position": null, + "time": "6:18" + }, + { + "frame": 6066, + "killer": 1, + "name": null, + "clock_position": null, + "time": "6:19" + }, + { + "frame": 6071, + "killer": 1, + "name": null, + "clock_position": null, + "time": "6:19" + }, + { + "frame": 6079, + "killer": 1, + "name": null, + "clock_position": null, + "time": "6:19" + }, + { + "frame": 6080, + "killer": 1, + "name": null, + "clock_position": null, + "time": "6:20" + }, + { + "frame": 6081, + "killer": 1, + "name": null, + "clock_position": null, + "time": "6:20" + }, + { + "frame": 6093, + "killer": 1, + "name": null, + "clock_position": null, + "time": "6:20" + }, + { + "frame": 6097, + "killer": 1, + "name": null, + "clock_position": null, + "time": "6:21" + }, + { + "frame": 6102, + "killer": 1, + "name": null, + "clock_position": null, + "time": "6:21" + }, + { + "frame": 6102, + "killer": 1, + "name": null, + "clock_position": null, + "time": "6:21" + }, + { + "frame": 7155, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "7:27" + }, + { + "frame": 7195, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "7:29" + }, + { + "frame": 7230, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "7:31" + }, + { + "frame": 7530, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "7:50" + }, + { + "frame": 8445, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "8:47" + }, + { + "frame": 8446, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "8:47" + }, + { + "frame": 8553, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "8:54" + }, + { + "frame": 8563, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "8:55" + }, + { + "frame": 8568, + "killer": 1, + "name": null, + "clock_position": null, + "time": "8:55" + }, + { + "frame": 8579, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "8:56" + }, + { + "frame": 8582, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "8:56" + }, + { + "frame": 8594, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "8:57" + }, + { + "frame": 8613, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "8:58" + }, + { + "frame": 8623, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "8:58" + }, + { + "frame": 8669, + "killer": 1, + "name": null, + "clock_position": null, + "time": "9:01" + }, + { + "frame": 8672, + "killer": 1, + "name": null, + "clock_position": null, + "time": "9:02" + }, + { + "frame": 8691, + "killer": 1, + "name": null, + "clock_position": null, + "time": "9:03" + }, + { + "frame": 8736, + "killer": 1, + "name": null, + "clock_position": null, + "time": "9:06" + }, + { + "frame": 8760, + "killer": 1, + "name": null, + "clock_position": null, + "time": "9:07" + }, + { + "frame": 8951, + "killer": 1, + "name": null, + "clock_position": null, + "time": "9:19" + }, + { + "frame": 9033, + "killer": 1, + "name": null, + "clock_position": null, + "time": "9:24" + }, + { + "frame": 9071, + "killer": 1, + "name": null, + "clock_position": null, + "time": "9:26" + }, + { + "frame": 9108, + "killer": 1, + "name": null, + "clock_position": null, + "time": "9:29" + }, + { + "frame": 9968, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "10:23" + }, + { + "frame": 10228, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "10:39" + }, + { + "frame": 10268, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "10:41" + }, + { + "frame": 11025, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "11:29" + }, + { + "frame": 11050, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "11:30" + }, + { + "frame": 11061, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "11:31" + }, + { + "frame": 11124, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:35" + }, + { + "frame": 11136, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:36" + }, + { + "frame": 11137, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:36" + }, + { + "frame": 11148, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:36" + }, + { + "frame": 11166, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:37" + }, + { + "frame": 11177, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:38" + }, + { + "frame": 11178, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:38" + }, + { + "frame": 11187, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:39" + }, + { + "frame": 11204, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:40" + }, + { + "frame": 11206, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:40" + }, + { + "frame": 11209, + "killer": 3, + "name": "Hydralisk", + "clock_position": null, + "time": "11:40" + }, + { + "frame": 11210, + "killer": 3, + "name": "Hydralisk", + "clock_position": null, + "time": "11:40" + }, + { + "frame": 11242, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:42" + }, + { + "frame": 11246, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:42" + }, + { + "frame": 11280, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:45" + }, + { + "frame": 11291, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:45" + }, + { + "frame": 11299, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:46" + }, + { + "frame": 11299, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:46" + }, + { + "frame": 11302, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:46" + }, + { + "frame": 11313, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:47" + }, + { + "frame": 11342, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:48" + }, + { + "frame": 11371, + "killer": 1, + "name": null, + "clock_position": null, + "time": "11:50" + }, + { + "frame": 11900, + "killer": 1, + "name": null, + "clock_position": null, + "time": "12:23" + }, + { + "frame": 11948, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "12:26" + }, + { + "frame": 12032, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "12:32" + }, + { + "frame": 12055, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "12:33" + }, + { + "frame": 12061, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "12:33" + }, + { + "frame": 12068, + "killer": 2, + "name": null, + "clock_position": null, + "time": "12:34" + }, + { + "frame": 12076, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "12:34" + }, + { + "frame": 12108, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "12:36" + }, + { + "frame": 12682, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "13:12" + }, + { + "frame": 12700, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "13:13" + }, + { + "frame": 12815, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "13:20" + }, + { + "frame": 12823, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "13:21" + }, + { + "frame": 12889, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "13:25" + }, + { + "frame": 12899, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "13:26" + }, + { + "frame": 14077, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:39" + }, + { + "frame": 14086, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:40" + }, + { + "frame": 14087, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:40" + }, + { + "frame": 14113, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:42" + }, + { + "frame": 14118, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:42" + }, + { + "frame": 14120, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:42" + }, + { + "frame": 14123, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:42" + }, + { + "frame": 14139, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:43" + }, + { + "frame": 14146, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:44" + }, + { + "frame": 14155, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "14:44" + }, + { + "frame": 14192, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:47" + }, + { + "frame": 14194, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:47" + }, + { + "frame": 14266, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:51" + }, + { + "frame": 14269, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:51" + }, + { + "frame": 14301, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:53" + }, + { + "frame": 14365, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "14:57" + }, + { + "frame": 14366, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:57" + }, + { + "frame": 14370, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:58" + }, + { + "frame": 14372, + "killer": 1, + "name": null, + "clock_position": null, + "time": "14:58" + }, + { + "frame": 14610, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "15:13" + }, + { + "frame": 16897, + "killer": 3, + "name": "Ultralisk", + "clock_position": null, + "time": "17:36" + }, + { + "frame": 16973, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "17:40" + }, + { + "frame": 16994, + "killer": 3, + "name": "Ultralisk", + "clock_position": null, + "time": "17:42" + }, + { + "frame": 17046, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "17:45" + }, + { + "frame": 17058, + "killer": 3, + "name": "Ultralisk", + "clock_position": null, + "time": "17:46" + }, + { + "frame": 17072, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "17:47" + }, + { + "frame": 17104, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "17:49" + }, + { + "frame": 17713, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "18:27" + }, + { + "frame": 17754, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "18:29" + }, + { + "frame": 17766, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "18:30" + }, + { + "frame": 18030, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "18:46" + }, + { + "frame": 18198, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "18:57" + }, + { + "frame": 18209, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "18:58" + }, + { + "frame": 18219, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "18:58" + }, + { + "frame": 18236, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "18:59" + }, + { + "frame": 18246, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "19:00" + }, + { + "frame": 18278, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "19:02" + }, + { + "frame": 18294, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "19:03" + }, + { + "frame": 18392, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "19:09" + }, + { + "frame": 18899, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "19:41" + }, + { + "frame": 18914, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "19:42" + }, + { + "frame": 18952, + "killer": 3, + "name": "SpineCrawler", + "clock_position": null, + "time": "19:44" + }, + { + "frame": 18965, + "killer": 3, + "name": "SpineCrawler", + "clock_position": null, + "time": "19:45" + }, + { + "frame": 19039, + "killer": 3, + "name": "SpineCrawler", + "clock_position": null, + "time": "19:49" + }, + { + "frame": 19101, + "killer": 3, + "name": "SpineCrawler", + "clock_position": null, + "time": "19:53" + }, + { + "frame": 19134, + "killer": 3, + "name": null, + "clock_position": null, + "time": "19:55" + }, + { + "frame": 19138, + "killer": 3, + "name": "Drone", + "clock_position": null, + "time": "19:56" + }, + { + "frame": 19138, + "killer": 3, + "name": "Drone", + "clock_position": null, + "time": "19:56" + }, + { + "frame": 19159, + "killer": 3, + "name": "SporeCrawler", + "clock_position": null, + "time": "19:57" + }, + { + "frame": 19159, + "killer": 3, + "name": "Drone", + "clock_position": null, + "time": "19:57" + }, + { + "frame": 19181, + "killer": 3, + "name": "Drone", + "clock_position": null, + "time": "19:58" + }, + { + "frame": 19251, + "killer": 3, + "name": "Drone", + "clock_position": null, + "time": "20:03" + }, + { + "frame": 19261, + "killer": 3, + "name": "Drone", + "clock_position": null, + "time": "20:03" + }, + { + "frame": 19271, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "20:04" + }, + { + "frame": 19275, + "killer": 3, + "name": "Drone", + "clock_position": null, + "time": "20:04" + }, + { + "frame": 19327, + "killer": 3, + "name": "Hydralisk", + "clock_position": null, + "time": "20:07" + }, + { + "frame": 19331, + "killer": 3, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "20:08" + }, + { + "frame": 19335, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "20:08" + }, + { + "frame": 19347, + "killer": 3, + "name": "Hydralisk", + "clock_position": null, + "time": "20:09" + }, + { + "frame": 19400, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "20:12" + }, + { + "frame": 19423, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "20:13" + }, + { + "frame": 19428, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "20:14" + }, + { + "frame": 19437, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "20:14" + }, + { + "frame": 19458, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "20:16" + }, + { + "frame": 19477, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "20:17" + }, + { + "frame": 20192, + "killer": 2, + "name": null, + "clock_position": null, + "time": "21:02" + }, + { + "frame": 20764, + "killer": 3, + "name": "Hydralisk", + "clock_position": null, + "time": "21:37" + }, + { + "frame": 20833, + "killer": 3, + "name": "Ultralisk", + "clock_position": null, + "time": "21:42" + }, + { + "frame": 21110, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "21:59" + }, + { + "frame": 21123, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "22:00" + }, + { + "frame": 21167, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "22:02" + }, + { + "frame": 21219, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:06" + }, + { + "frame": 21220, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:06" + }, + { + "frame": 21243, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:07" + }, + { + "frame": 21251, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:08" + }, + { + "frame": 21271, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:09" + }, + { + "frame": 21276, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:09" + }, + { + "frame": 21284, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:10" + }, + { + "frame": 21299, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:11" + }, + { + "frame": 21312, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:12" + }, + { + "frame": 21352, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:14" + }, + { + "frame": 21354, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:14" + }, + { + "frame": 21365, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "22:15" + }, + { + "frame": 21371, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:15" + }, + { + "frame": 21372, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:15" + }, + { + "frame": 21393, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:17" + }, + { + "frame": 21735, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "22:38" + }, + { + "frame": 21752, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "22:39" + }, + { + "frame": 21800, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "22:42" + }, + { + "frame": 21844, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "22:45" + }, + { + "frame": 21845, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "22:45" + }, + { + "frame": 21899, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "22:48" + }, + { + "frame": 21956, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "22:52" + }, + { + "frame": 21958, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "22:52" + }, + { + "frame": 22039, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "22:57" + }, + { + "frame": 22257, + "killer": 3, + "name": "Ultralisk", + "clock_position": null, + "time": "23:11" + }, + { + "frame": 22659, + "killer": 2, + "name": null, + "clock_position": null, + "time": "23:36" + }, + { + "frame": 22696, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "23:38" + }, + { + "frame": 22739, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "23:41" + }, + { + "frame": 23141, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "24:06" + }, + { + "frame": 23159, + "killer": 3, + "name": "Zergling", + "clock_position": null, + "time": "24:07" + }, + { + "frame": 23189, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "24:09" + }, + { + "frame": 23190, + "killer": 2, + "name": null, + "clock_position": null, + "time": "24:09" + }, + { + "frame": 23216, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "24:11" + }, + { + "frame": 23219, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "24:11" + }, + { + "frame": 23320, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "24:17" + }, + { + "frame": 23333, + "killer": 4, + "name": "Zergling", + "clock_position": null, + "time": "24:18" + }, + { + "frame": 23355, + "killer": 3, + "name": "Hydralisk", + "clock_position": null, + "time": "24:19" + }, + { + "frame": 23360, + "killer": 4, + "name": "Hydralisk", + "clock_position": null, + "time": "24:20" + }, + { + "frame": 23386, + "killer": 3, + "name": "Hydralisk", + "clock_position": null, + "time": "24:21" + }, + { + "frame": 23479, + "killer": 4, + "name": "Ultralisk", + "clock_position": null, + "time": "24:27" } - ], - "region": "us", - "race": "Zerg", - "clock_position": null, - "name": "StoicLoofah", - "is_winner": false - }, + ], + "race": "Zerg", + "result": "Unknown", + "team": 1, + "uid": 992715 + }, "2": { "supply": [ [ - 0, + 0, 6 - ], + ], [ - 1, + 1, 12 - ], + ], [ - 160, + 160, 13 - ], + ], [ - 320, + 320, 13 - ], + ], [ - 480, + 480, 13 - ], + ], [ - 640, + 640, 14 - ], + ], [ - 800, + 800, 15 - ], + ], [ - 960, + 960, 16 - ], + ], [ - 1120, + 1120, 16 - ], + ], [ - 1280, + 1280, 17 - ], + ], [ - 1440, + 1440, 18 - ], + ], [ - 1600, + 1600, 18 - ], + ], [ - 1760, + 1760, 19 - ], + ], [ - 1920, + 1920, 20 - ], + ], [ - 2080, + 2080, 21 - ], + ], [ - 2240, + 2240, 21 - ], + ], [ - 2400, + 2400, 22 - ], + ], [ - 2560, + 2560, 23 - ], + ], [ - 2720, + 2720, 23 - ], + ], [ - 2880, + 2880, 24 - ], + ], [ - 3040, + 3040, 29 - ], + ], [ - 3200, + 3200, 30 - ], + ], [ - 3360, + 3360, 30 - ], + ], [ - 3520, + 3520, 30 - ], + ], [ - 3680, + 3680, 30 - ], + ], [ - 3840, + 3840, 30 - ], + ], [ - 4000, + 4000, 30 - ], + ], [ - 4160, + 4160, 38 - ], + ], [ - 4320, + 4320, 38 - ], + ], [ - 4480, + 4480, 38 - ], + ], [ - 4640, + 4640, 38 - ], + ], [ - 4800, + 4800, 38 - ], + ], [ - 4960, + 4960, 38 - ], + ], [ - 5120, + 5120, 44 - ], + ], [ - 5280, + 5280, 44 - ], + ], [ - 5440, + 5440, 44 - ], + ], [ - 5600, + 5600, 44 - ], + ], [ - 5760, + 5760, 44 - ], + ], [ - 5920, + 5920, 45 - ], + ], [ - 6080, + 6080, 45 - ], + ], [ - 6240, + 6240, 46 - ], + ], [ - 6400, + 6400, 47 - ], + ], [ - 6560, + 6560, 48 - ], + ], [ - 6720, + 6720, 50 - ], + ], [ - 6880, + 6880, 55 - ], + ], [ - 7040, + 7040, 51 - ], + ], [ - 7200, + 7200, 47 - ], + ], [ - 7360, + 7360, 47 - ], + ], [ - 7520, + 7520, 49 - ], + ], [ - 7680, + 7680, 50 - ], + ], [ - 7840, + 7840, 51 - ], + ], [ - 8000, + 8000, 53 - ], + ], [ - 8160, + 8160, 54 - ], + ], [ - 8320, + 8320, 60 - ], + ], [ - 8480, + 8480, 57 - ], + ], [ - 8640, + 8640, 51 - ], + ], [ - 8800, + 8800, 49 - ], + ], [ - 8960, + 8960, 65 - ], + ], [ - 9120, + 9120, 66 - ], + ], [ - 9280, + 9280, 66 - ], + ], [ - 9440, + 9440, 68 - ], + ], [ - 9600, + 9600, 70 - ], + ], [ - 9760, + 9760, 70 - ], + ], [ - 9920, + 9920, 72 - ], + ], [ - 10080, + 10080, 68 - ], + ], [ - 10240, + 10240, 63 - ], + ], [ - 10400, + 10400, 63 - ], + ], [ - 10560, + 10560, 78 - ], + ], [ - 10720, + 10720, 78 - ], + ], [ - 10880, + 10880, 78 - ], + ], [ - 11040, + 11040, 78 - ], + ], [ - 11200, + 11200, 76 - ], + ], [ - 11360, + 11360, 76 - ], + ], [ - 11520, + 11520, 76 - ], + ], [ - 11680, + 11680, 76 - ], + ], [ - 11840, + 11840, 76 - ], + ], [ - 12000, + 12000, 76 - ], + ], [ - 12160, + 12160, 92 - ], + ], [ - 12320, + 12320, 94 - ], + ], [ - 12480, + 12480, 90 - ], + ], [ - 12640, + 12640, 100 - ], + ], [ - 12800, + 12800, 102 - ], + ], [ - 12960, + 12960, 92 - ], + ], [ - 13120, + 13120, 68 - ], + ], [ - 13280, + 13280, 56 - ], + ], [ - 13440, + 13440, 52 - ], + ], [ - 13600, + 13600, 64 - ], + ], [ - 13760, + 13760, 68 - ], + ], [ - 13920, + 13920, 68 - ], + ], [ - 14080, + 14080, 68 - ], + ], [ - 14240, + 14240, 68 - ], + ], [ - 14400, + 14400, 68 - ], + ], [ - 14560, + 14560, 68 - ], + ], [ - 14720, + 14720, 76 - ], + ], [ - 14880, + 14880, 98 - ], + ], [ - 15040, + 15040, 98 - ], + ], [ - 15200, + 15200, 98 - ], + ], [ - 15360, + 15360, 98 - ], + ], [ - 15520, + 15520, 98 - ], + ], [ - 15680, + 15680, 98 - ], + ], [ - 15840, + 15840, 98 - ], + ], [ - 16000, + 16000, 98 - ], + ], [ - 16160, + 16160, 114 - ], + ], [ - 16320, + 16320, 128 - ], + ], [ - 16480, + 16480, 126 - ], + ], [ - 16640, + 16640, 116 - ], + ], [ - 16800, + 16800, 100 - ], + ], [ - 16960, + 16960, 92 - ], + ], [ - 17120, + 17120, 84 - ], + ], [ - 17280, + 17280, 74 - ], + ], [ - 17440, + 17440, 68 - ], + ], [ - 17600, + 17600, 82 - ], + ], [ - 17760, + 17760, 72 - ], + ], [ - 17920, + 17920, 70 - ], + ], [ - 18080, + 18080, 70 - ], + ], [ - 18240, + 18240, 76 - ], + ], [ - 18400, + 18400, 76 - ], + ], [ - 18560, + 18560, 76 - ], + ], [ - 18720, + 18720, 76 - ], + ], [ - 18880, + 18880, 90 - ], + ], [ - 19040, + 19040, 98 - ], + ], [ - 19200, + 19200, 92 - ], + ], [ - 19360, + 19360, 90 - ], + ], [ - 19520, + 19520, 90 - ], + ], [ - 19680, + 19680, 90 - ], + ], [ - 19840, + 19840, 90 - ], + ], [ - 20000, + 20000, 90 - ], + ], [ - 20160, + 20160, 90 - ], + ], [ - 20320, + 20320, 104 - ], + ], [ - 20480, + 20480, 126 - ], + ], [ - 20640, + 20640, 126 - ], + ], [ - 20800, + 20800, 126 - ], + ], [ - 20960, + 20960, 134 - ], + ], [ - 21120, + 21120, 138 - ], + ], [ - 21280, + 21280, 138 - ], + ], [ - 21440, + 21440, 130 - ], + ], [ - 21600, + 21600, 130 - ], + ], [ - 21760, + 21760, 130 - ], + ], [ - 21920, + 21920, 130 - ], + ], [ - 22080, + 22080, 128 - ], + ], [ - 22240, + 22240, 128 - ], + ], [ - 22400, + 22400, 128 - ], + ], [ - 22560, + 22560, 128 - ], + ], [ - 22720, + 22720, 138 - ], + ], [ - 22880, + 22880, 144 - ], + ], [ - 23040, + 23040, 144 - ], + ], [ - 23200, + 23200, 144 - ], + ], [ - 23360, + 23360, 172 - ], + ], [ - 23520, + 23520, 174 - ], + ], [ - 23680, + 23680, 166 - ], + ], [ - 23840, + 23840, 148 - ], + ], [ - 24000, + 24000, 146 - ], + ], [ - 24160, + 24160, 146 - ], + ], [ - 24320, + 24320, 146 - ], + ], [ - 24382, + 24382, 146 ] - ], - "result": "Unknown", - "uid": 1423109, - "color": "1CA7EA", - "is_human": true, - "team": 2, - "level": 4294967295, - "pick_race": "Protoss", + ], + "league": 0, "buildOrder": [ { - "clock_position": null, - "frame": 81, - "is_worker": true, - "time": "0:05", - "is_chronoboosted": true, - "name": "Probe", - "supply": 12 - }, - { - "clock_position": null, - "frame": 477, - "is_worker": false, - "time": "0:29", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 13 - }, - { - "clock_position": null, - "frame": 493, - "is_worker": true, - "time": "0:30", - "is_chronoboosted": true, - "name": "Probe", - "supply": 13 - }, - { - "clock_position": null, - "frame": 715, - "is_worker": true, - "time": "0:44", - "is_chronoboosted": true, - "name": "Probe", - "supply": 14 - }, - { - "clock_position": null, - "frame": 937, - "is_worker": true, - "time": "0:58", - "is_chronoboosted": true, - "name": "Probe", - "supply": 15 - }, - { - "clock_position": null, - "frame": 1159, - "is_worker": true, - "time": "1:12", - "is_chronoboosted": true, - "name": "Probe", - "supply": 16 - }, - { - "clock_position": null, - "frame": 1348, - "is_worker": false, - "time": "1:24", - "is_chronoboosted": false, - "name": "WarpGate", - "supply": 17 - }, - { - "clock_position": null, - "frame": 1381, - "is_worker": true, - "time": "1:26", - "is_chronoboosted": true, - "name": "Probe", - "supply": 17 - }, - { - "clock_position": null, - "frame": 1411, - "is_worker": false, - "time": "1:28", - "is_chronoboosted": false, - "name": "Assimilator", - "supply": 17 - }, - { - "clock_position": null, - "frame": 1603, - "is_worker": true, - "time": "1:40", - "is_chronoboosted": true, - "name": "Probe", - "supply": 18 - }, - { - "clock_position": null, - "frame": 1825, - "is_worker": true, - "time": "1:54", - "is_chronoboosted": true, - "name": "Probe", - "supply": 19 - }, - { - "clock_position": null, - "frame": 1907, - "is_worker": false, - "time": "1:59", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 19 - }, - { - "clock_position": null, - "frame": 1980, - "is_worker": false, - "time": "2:03", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 20 - }, - { - "clock_position": null, - "frame": 2047, - "is_worker": true, - "time": "2:07", - "is_chronoboosted": true, - "name": "Probe", - "supply": 20 - }, - { - "clock_position": null, - "frame": 2269, - "is_worker": true, - "time": "2:21", - "is_chronoboosted": true, - "name": "Probe", - "supply": 21 - }, - { - "clock_position": null, - "frame": 2436, - "is_worker": false, - "time": "2:32", - "is_chronoboosted": false, - "name": "WarpGate", - "supply": 22 - }, - { - "clock_position": null, - "frame": 2491, - "is_worker": true, - "time": "2:35", - "is_chronoboosted": true, - "name": "Probe", - "supply": 22 - }, - { - "clock_position": null, - "frame": 2707, - "is_worker": false, - "time": "2:49", - "is_chronoboosted": false, - "name": "Assimilator", - "supply": 23 - }, - { - "clock_position": null, - "frame": 2713, - "is_worker": true, - "time": "2:49", - "is_chronoboosted": true, - "name": "Probe", - "supply": 23 - }, - { - "clock_position": null, - "frame": 2935, - "is_worker": true, - "time": "3:03", - "is_chronoboosted": true, - "name": "Probe", - "supply": 24 - }, - { - "clock_position": null, - "frame": 2989, - "is_worker": false, - "time": "3:06", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 24 - }, - { - "clock_position": null, - "frame": 2999, - "is_worker": false, - "time": "3:07", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 24 - }, - { - "clock_position": null, - "frame": 3157, - "is_worker": true, - "time": "3:17", - "is_chronoboosted": true, - "name": "Probe", - "supply": 29 - }, - { - "clock_position": null, - "frame": 3786, - "is_worker": false, - "time": "3:56", - "is_chronoboosted": false, - "name": "CyberneticsCore", - "supply": 30 - }, - { - "clock_position": null, - "frame": 3828, - "is_worker": false, - "time": "3:59", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 30 - }, - { - "clock_position": null, - "frame": 3892, - "is_worker": false, - "time": "4:03", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 30 - }, - { - "clock_position": null, - "frame": 4018, - "is_worker": false, - "time": "4:11", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 30 - }, - { - "clock_position": null, - "frame": 4042, - "is_worker": false, - "time": "4:12", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 30 - }, - { - "clock_position": null, - "frame": 4049, - "is_worker": false, - "time": "4:13", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 30 - }, - { - "clock_position": null, - "frame": 4059, - "is_worker": false, - "time": "4:13", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 30 - }, - { - "clock_position": null, - "frame": 4070, - "is_worker": false, - "time": "4:14", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 30 - }, - { - "clock_position": null, - "frame": 4785, - "is_worker": false, - "time": "4:59", - "is_chronoboosted": false, - "name": "TwilightCouncil", - "supply": 38 - }, - { - "clock_position": null, - "frame": 4875, - "is_worker": false, - "time": "5:04", - "is_chronoboosted": false, - "name": "WarpGate", - "supply": 38 - }, - { - "clock_position": null, - "frame": 4898, - "is_worker": false, - "time": "5:06", - "is_chronoboosted": false, - "name": "WarpGate", - "supply": 38 - }, - { - "clock_position": null, - "frame": 5064, - "is_worker": false, - "time": "5:16", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 38 - }, - { - "clock_position": null, - "frame": 5072, - "is_worker": false, - "time": "5:17", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 38 - }, - { - "clock_position": null, - "frame": 5085, - "is_worker": false, - "time": "5:17", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 38 - }, - { - "clock_position": null, - "frame": 5762, - "is_worker": false, - "time": "6:00", - "is_chronoboosted": false, - "name": "Nexus", - "supply": 44 - }, - { - "clock_position": null, - "frame": 5874, - "is_worker": true, - "time": "6:07", - "is_chronoboosted": true, - "name": "Probe", - "supply": 44 - }, - { - "clock_position": null, - "frame": 6096, - "is_worker": true, - "time": "6:21", - "is_chronoboosted": true, - "name": "Probe", - "supply": 45 - }, - { - "clock_position": null, - "frame": 6318, - "is_worker": true, - "time": "6:34", - "is_chronoboosted": true, - "name": "Probe", - "supply": 46 - }, - { - "clock_position": null, - "frame": 6540, - "is_worker": true, - "time": "6:48", - "is_chronoboosted": true, - "name": "Probe", - "supply": 47 - }, - { - "clock_position": null, - "frame": 6713, - "is_worker": false, - "time": "6:59", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 48 - }, - { - "clock_position": null, - "frame": 6723, - "is_worker": false, - "time": "7:00", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 50 - }, - { - "clock_position": null, - "frame": 6736, - "is_worker": false, - "time": "7:01", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 50 - }, - { - "clock_position": null, - "frame": 6762, - "is_worker": true, - "time": "7:02", - "is_chronoboosted": true, - "name": "Probe", - "supply": 50 - }, - { - "clock_position": null, - "frame": 6914, - "is_worker": false, - "time": "7:12", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 55 - }, - { - "clock_position": null, - "frame": 6996, - "is_worker": false, - "time": "7:17", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 55 - }, - { - "clock_position": null, - "frame": 7054, - "is_worker": false, - "time": "7:20", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 51 - }, - { - "clock_position": null, - "frame": 7415, - "is_worker": true, - "time": "7:43", - "is_chronoboosted": true, - "name": "Probe", - "supply": 47 - }, - { - "clock_position": null, - "frame": 7489, - "is_worker": true, - "time": "7:48", - "is_chronoboosted": true, - "name": "Probe", - "supply": 47 - }, - { - "clock_position": null, - "frame": 7637, - "is_worker": true, - "time": "7:57", - "is_chronoboosted": true, - "name": "Probe", - "supply": 49 - }, - { - "clock_position": null, - "frame": 7677, - "is_worker": false, - "time": "7:59", - "is_chronoboosted": false, - "name": "Assimilator", - "supply": 49 - }, - { - "clock_position": null, - "frame": 7711, - "is_worker": true, - "time": "8:01", - "is_chronoboosted": true, - "name": "Probe", - "supply": 50 - }, - { - "clock_position": null, - "frame": 7768, - "is_worker": false, - "time": "8:05", - "is_chronoboosted": false, - "name": "Assimilator", - "supply": 50 - }, - { - "clock_position": null, - "frame": 7859, - "is_worker": true, - "time": "8:11", - "is_chronoboosted": true, - "name": "Probe", - "supply": 51 - }, - { - "clock_position": null, - "frame": 7933, - "is_worker": true, - "time": "8:15", - "is_chronoboosted": true, - "name": "Probe", - "supply": 51 - }, - { - "clock_position": null, - "frame": 7943, - "is_worker": false, - "time": "8:16", - "is_chronoboosted": false, - "name": "Forge", - "supply": 51 - }, - { - "clock_position": null, - "frame": 7949, - "is_worker": false, - "time": "8:16", - "is_chronoboosted": false, - "name": "Forge", - "supply": 51 - }, - { - "clock_position": null, - "frame": 8000, - "is_worker": false, - "time": "8:20", - "is_chronoboosted": false, - "name": "Charge", - "supply": 53 - }, - { - "clock_position": null, - "frame": 8081, - "is_worker": true, - "time": "8:25", - "is_chronoboosted": true, - "name": "Probe", - "supply": 53 - }, - { - "clock_position": null, - "frame": 8155, - "is_worker": true, - "time": "8:29", - "is_chronoboosted": true, - "name": "Probe", - "supply": 53 - }, - { - "clock_position": null, - "frame": 8292, - "is_worker": false, - "time": "8:38", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 54 - }, - { - "clock_position": null, - "frame": 8302, - "is_worker": false, - "time": "8:38", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 54 - }, - { - "clock_position": null, - "frame": 8303, - "is_worker": true, - "time": "8:38", - "is_chronoboosted": true, - "name": "Probe", - "supply": 54 - }, - { - "clock_position": null, - "frame": 8310, - "is_worker": false, - "time": "8:39", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 54 - }, - { - "clock_position": null, - "frame": 8377, - "is_worker": true, - "time": "8:43", - "is_chronoboosted": true, - "name": "Probe", - "supply": 60 - }, - { - "clock_position": null, - "frame": 8835, - "is_worker": false, - "time": "9:12", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 49 - }, - { - "clock_position": null, - "frame": 8841, - "is_worker": false, - "time": "9:12", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 49 - }, - { - "clock_position": null, - "frame": 8845, - "is_worker": false, - "time": "9:12", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 49 - }, - { - "clock_position": null, - "frame": 8849, - "is_worker": false, - "time": "9:13", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 49 - }, - { - "clock_position": null, - "frame": 8854, - "is_worker": false, - "time": "9:13", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 49 - }, - { - "clock_position": null, - "frame": 8858, - "is_worker": false, - "time": "9:13", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 49 - }, - { - "clock_position": null, - "frame": 8861, - "is_worker": false, - "time": "9:13", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 49 - }, - { - "clock_position": null, - "frame": 8865, - "is_worker": false, - "time": "9:14", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 49 - }, - { - "clock_position": null, - "frame": 9088, - "is_worker": true, - "time": "9:28", - "is_chronoboosted": true, - "name": "Probe", - "supply": 65 - }, - { - "clock_position": null, - "frame": 9195, - "is_worker": false, - "time": "9:34", - "is_chronoboosted": false, - "name": "Singularity Charge", - "supply": 66 - }, - { - "clock_position": null, - "frame": 9310, - "is_worker": true, - "time": "9:41", - "is_chronoboosted": true, - "name": "Probe", - "supply": 66 - }, - { - "clock_position": null, - "frame": 9312, - "is_worker": true, - "time": "9:42", - "is_chronoboosted": true, - "name": "Probe", - "supply": 66 - }, - { - "clock_position": null, - "frame": 9532, - "is_worker": true, - "time": "9:55", - "is_chronoboosted": true, - "name": "Probe", - "supply": 68 - }, - { - "clock_position": null, - "frame": 9534, - "is_worker": true, - "time": "9:55", - "is_chronoboosted": true, - "name": "Probe", - "supply": 68 - }, - { - "clock_position": null, - "frame": 9754, - "is_worker": true, - "time": "10:09", - "is_chronoboosted": true, - "name": "Probe", - "supply": 70 - }, - { - "clock_position": null, - "frame": 9756, - "is_worker": true, - "time": "10:09", - "is_chronoboosted": true, - "name": "Probe", - "supply": 70 - }, - { - "clock_position": null, - "frame": 9976, - "is_worker": true, - "time": "10:23", - "is_chronoboosted": true, - "name": "Probe", - "supply": 72 - }, - { - "clock_position": null, - "frame": 9978, - "is_worker": true, - "time": "10:23", - "is_chronoboosted": true, - "name": "Probe", - "supply": 72 - }, - { - "clock_position": null, - "frame": 10032, - "is_worker": false, - "time": "10:27", - "is_chronoboosted": false, - "name": "TemplarArchive", - "supply": 72 - }, - { - "clock_position": null, - "frame": 10125, - "is_worker": false, - "time": "10:32", - "is_chronoboosted": false, - "name": "Forge", - "supply": 68 - }, - { - "clock_position": null, - "frame": 10154, - "is_worker": false, - "time": "10:34", - "is_chronoboosted": false, - "name": "Whirlwind", - "supply": 68 - }, - { - "clock_position": null, - "frame": 10200, - "is_worker": true, - "time": "10:37", - "is_chronoboosted": true, - "name": "Probe", - "supply": 68 - }, - { - "clock_position": null, - "frame": 10422, - "is_worker": true, - "time": "10:51", - "is_chronoboosted": true, - "name": "Probe", - "supply": 63 - }, - { - "clock_position": null, - "frame": 10457, - "is_worker": false, - "time": "10:53", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 63 - }, - { - "clock_position": null, - "frame": 10463, - "is_worker": false, - "time": "10:53", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 63 - }, - { - "clock_position": null, - "frame": 10467, - "is_worker": false, - "time": "10:54", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 63 - }, - { - "clock_position": null, - "frame": 10472, - "is_worker": false, - "time": "10:54", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 63 - }, - { - "clock_position": null, - "frame": 10476, - "is_worker": false, - "time": "10:54", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 63 - }, - { - "clock_position": null, - "frame": 10479, - "is_worker": false, - "time": "10:54", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 63 - }, - { - "clock_position": null, - "frame": 10483, - "is_worker": false, - "time": "10:55", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 63 - }, - { - "clock_position": null, - "frame": 11039, - "is_worker": false, - "time": "11:29", - "is_chronoboosted": false, - "name": "WarpGate", - "supply": 78 - }, - { - "clock_position": null, - "frame": 11075, - "is_worker": false, - "time": "11:32", - "is_chronoboosted": false, - "name": "WarpGate", - "supply": 78 - }, - { - "clock_position": null, - "frame": 11118, - "is_worker": false, - "time": "11:34", - "is_chronoboosted": false, - "name": "WarpGate", - "supply": 78 - }, - { - "clock_position": null, - "frame": 11157, - "is_worker": false, - "time": "11:37", - "is_chronoboosted": false, - "name": "WarpGate", - "supply": 78 - }, - { - "clock_position": null, - "frame": 11593, - "is_worker": false, - "time": "12:04", - "is_chronoboosted": false, - "name": "Trillic Compresion Mesh", - "supply": 76 - }, - { - "clock_position": null, - "frame": 12091, - "is_worker": false, - "time": "12:35", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 76 - }, - { - "clock_position": null, - "frame": 12095, - "is_worker": false, - "time": "12:35", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 76 - }, - { - "clock_position": null, - "frame": 12098, - "is_worker": false, - "time": "12:36", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 76 - }, - { - "clock_position": null, - "frame": 12107, - "is_worker": false, - "time": "12:36", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 76 - }, - { - "clock_position": null, - "frame": 12110, - "is_worker": false, - "time": "12:36", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 76 - }, - { - "clock_position": null, - "frame": 12114, - "is_worker": false, - "time": "12:37", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 76 - }, - { - "clock_position": null, - "frame": 12117, - "is_worker": false, - "time": "12:37", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 76 - }, - { - "clock_position": null, - "frame": 12123, - "is_worker": false, - "time": "12:37", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 76 - }, - { - "clock_position": null, - "frame": 12146, - "is_worker": false, - "time": "12:39", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 76 - }, - { - "clock_position": null, - "frame": 12153, - "is_worker": false, - "time": "12:39", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 76 - }, - { - "clock_position": null, - "frame": 12157, - "is_worker": false, - "time": "12:39", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 76 - }, - { - "clock_position": null, - "frame": 12162, - "is_worker": false, - "time": "12:40", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 92 - }, - { - "clock_position": null, - "frame": 12459, - "is_worker": false, - "time": "12:58", - "is_chronoboosted": false, - "name": "ProtossGroundWeaponsLevel1", - "supply": 94 - }, - { - "clock_position": null, - "frame": 12470, - "is_worker": false, - "time": "12:59", - "is_chronoboosted": false, - "name": "ProtossGroundArmorsLevel1", - "supply": 94 - }, - { - "clock_position": null, - "frame": 12483, - "is_worker": false, - "time": "13:00", - "is_chronoboosted": false, - "name": "ProtossShieldsLevel1", - "supply": 90 - }, - { - "clock_position": null, - "frame": 12563, - "is_worker": false, - "time": "13:05", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 90 - }, - { - "clock_position": null, - "frame": 12573, - "is_worker": false, - "time": "13:05", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 90 - }, - { - "clock_position": null, - "frame": 12578, - "is_worker": false, - "time": "13:06", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 90 - }, - { - "clock_position": null, - "frame": 12580, - "is_worker": false, - "time": "13:06", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 90 - }, - { - "clock_position": null, - "frame": 12589, - "is_worker": false, - "time": "13:06", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 90 - }, - { - "clock_position": null, - "frame": 12661, - "is_worker": false, - "time": "13:11", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 100 - }, - { - "clock_position": null, - "frame": 13008, - "is_worker": false, - "time": "13:33", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 92 - }, - { - "clock_position": null, - "frame": 13032, - "is_worker": false, - "time": "13:34", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 92 - }, - { - "clock_position": null, - "frame": 13064, - "is_worker": false, - "time": "13:36", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 92 - }, - { - "clock_position": null, - "frame": 13093, - "is_worker": false, - "time": "13:38", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 92 - }, - { - "clock_position": null, - "frame": 13131, - "is_worker": false, - "time": "13:40", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 68 - }, - { - "clock_position": null, - "frame": 13167, - "is_worker": false, - "time": "13:42", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 68 - }, - { - "clock_position": null, - "frame": 13232, - "is_worker": false, - "time": "13:47", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 68 - }, - { - "clock_position": null, - "frame": 13273, - "is_worker": false, - "time": "13:49", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 68 - }, - { - "clock_position": null, - "frame": 13318, - "is_worker": false, - "time": "13:52", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 56 - }, - { - "clock_position": null, - "frame": 13363, - "is_worker": false, - "time": "13:55", - "is_chronoboosted": false, - "name": "Pylon", - "supply": 56 - }, - { - "clock_position": null, - "frame": 13551, - "is_worker": false, - "time": "14:06", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 52 - }, - { - "clock_position": null, - "frame": 13558, - "is_worker": false, - "time": "14:07", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 52 - }, - { - "clock_position": null, - "frame": 13564, - "is_worker": false, - "time": "14:07", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 52 - }, - { - "clock_position": null, - "frame": 13572, - "is_worker": false, - "time": "14:08", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 52 - }, - { - "clock_position": null, - "frame": 13582, - "is_worker": false, - "time": "14:08", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 52 - }, - { - "clock_position": null, - "frame": 13592, - "is_worker": false, - "time": "14:09", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 52 - }, - { - "clock_position": null, - "frame": 13604, - "is_worker": false, - "time": "14:10", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 64 - }, - { - "clock_position": null, - "frame": 13617, - "is_worker": false, - "time": "14:11", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 64 - }, - { - "clock_position": null, - "frame": 13863, - "is_worker": false, - "time": "14:26", - "is_chronoboosted": false, - "name": "Psionic Storm", - "supply": 68 - }, - { - "clock_position": null, - "frame": 14114, - "is_worker": false, - "time": "14:42", - "is_chronoboosted": false, - "name": "Archon", - "supply": 68 - }, - { - "clock_position": null, - "frame": 14116, - "is_worker": false, - "time": "14:42", - "is_chronoboosted": false, - "name": "Archon", - "supply": 68 - }, - { - "clock_position": null, - "frame": 14124, - "is_worker": false, - "time": "14:42", - "is_chronoboosted": false, - "name": "Archon", - "supply": 68 - }, - { - "clock_position": null, - "frame": 14138, - "is_worker": false, - "time": "14:43", - "is_chronoboosted": false, - "name": "Archon", - "supply": 68 - }, - { - "clock_position": null, - "frame": 14699, - "is_worker": false, - "time": "15:18", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 68 - }, - { - "clock_position": null, - "frame": 14705, - "is_worker": false, - "time": "15:19", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 68 - }, - { - "clock_position": null, - "frame": 14714, - "is_worker": false, - "time": "15:19", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 68 - }, - { - "clock_position": null, - "frame": 14718, - "is_worker": false, - "time": "15:19", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 68 - }, - { - "clock_position": null, - "frame": 14722, - "is_worker": false, - "time": "15:20", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 14730, - "is_worker": false, - "time": "15:20", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 14732, - "is_worker": false, - "time": "15:20", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 14737, - "is_worker": false, - "time": "15:21", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 14741, - "is_worker": false, - "time": "15:21", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 14767, - "is_worker": false, - "time": "15:22", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 14776, - "is_worker": false, - "time": "15:23", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 14780, - "is_worker": false, - "time": "15:23", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 14786, - "is_worker": false, - "time": "15:24", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 14790, - "is_worker": false, - "time": "15:24", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 14796, - "is_worker": false, - "time": "15:24", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 15072, - "is_worker": false, - "time": "15:42", - "is_chronoboosted": false, - "name": "ProtossGroundWeaponsLevel2", - "supply": 98 - }, - { - "clock_position": null, - "frame": 15091, - "is_worker": false, - "time": "15:43", - "is_chronoboosted": false, - "name": "ProtossGroundArmorsLevel2", - "supply": 98 - }, - { - "clock_position": null, - "frame": 15121, - "is_worker": false, - "time": "15:45", - "is_chronoboosted": false, - "name": "ProtossShieldsLevel2", - "supply": 98 - }, - { - "clock_position": null, - "frame": 15302, - "is_worker": false, - "time": "15:56", - "is_chronoboosted": false, - "name": "Khaydarin Amulet", - "supply": 98 - }, - { - "clock_position": null, - "frame": 16119, - "is_worker": false, - "time": "16:47", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 98 - }, - { - "clock_position": null, - "frame": 16123, - "is_worker": false, - "time": "16:47", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 98 - }, - { - "clock_position": null, - "frame": 16127, - "is_worker": false, - "time": "16:47", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 98 - }, - { - "clock_position": null, - "frame": 16134, - "is_worker": false, - "time": "16:48", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 98 - }, - { - "clock_position": null, - "frame": 16139, - "is_worker": false, - "time": "16:48", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 98 - }, - { - "clock_position": null, - "frame": 16143, - "is_worker": false, - "time": "16:48", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 98 - }, - { - "clock_position": null, - "frame": 16150, - "is_worker": false, - "time": "16:49", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 98 - }, - { - "clock_position": null, - "frame": 16157, - "is_worker": false, - "time": "16:49", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 98 - }, - { - "clock_position": null, - "frame": 16162, - "is_worker": false, - "time": "16:50", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 114 - }, - { - "clock_position": null, - "frame": 16166, - "is_worker": false, - "time": "16:50", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 114 - }, - { - "clock_position": null, - "frame": 16170, - "is_worker": false, - "time": "16:50", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 114 - }, - { - "clock_position": null, - "frame": 16179, - "is_worker": false, - "time": "16:51", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 114 - }, - { - "clock_position": null, - "frame": 16182, - "is_worker": false, - "time": "16:51", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 114 - }, - { - "clock_position": null, - "frame": 16186, - "is_worker": false, - "time": "16:51", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 114 - }, - { - "clock_position": null, - "frame": 16189, - "is_worker": false, - "time": "16:51", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 114 - }, - { - "clock_position": null, - "frame": 17391, - "is_worker": false, - "time": "18:06", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 74 - }, - { - "clock_position": null, - "frame": 17397, - "is_worker": false, - "time": "18:07", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 74 - }, - { - "clock_position": null, - "frame": 17403, - "is_worker": false, - "time": "18:07", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 74 - }, - { - "clock_position": null, - "frame": 17407, - "is_worker": false, - "time": "18:07", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 74 - }, - { - "clock_position": null, - "frame": 17414, - "is_worker": false, - "time": "18:08", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 74 - }, - { - "clock_position": null, - "frame": 17423, - "is_worker": false, - "time": "18:08", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 74 - }, - { - "clock_position": null, - "frame": 17430, - "is_worker": false, - "time": "18:09", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 74 - }, - { - "clock_position": null, - "frame": 17440, - "is_worker": false, - "time": "18:10", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 68 - }, - { - "clock_position": null, - "frame": 17446, - "is_worker": false, - "time": "18:10", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 68 - }, - { - "clock_position": null, - "frame": 17450, - "is_worker": false, - "time": "18:10", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 68 - }, - { - "clock_position": null, - "frame": 17454, - "is_worker": false, - "time": "18:10", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 68 - }, - { - "clock_position": null, - "frame": 17457, - "is_worker": false, - "time": "18:11", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 68 - }, - { - "clock_position": null, - "frame": 17463, - "is_worker": false, - "time": "18:11", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 68 - }, - { - "clock_position": null, - "frame": 17467, - "is_worker": false, - "time": "18:11", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 68 - }, - { - "clock_position": null, - "frame": 17472, - "is_worker": false, - "time": "18:12", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 68 - }, - { - "clock_position": null, - "frame": 17473, - "is_worker": false, - "time": "18:12", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 68 - }, - { - "clock_position": null, - "frame": 17477, - "is_worker": false, - "time": "18:12", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 68 - }, - { - "clock_position": null, - "frame": 17482, - "is_worker": false, - "time": "18:12", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 68 - }, - { - "clock_position": null, - "frame": 18122, - "is_worker": false, - "time": "18:52", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 70 - }, - { - "clock_position": null, - "frame": 18130, - "is_worker": false, - "time": "18:53", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 70 - }, - { - "clock_position": null, - "frame": 18138, - "is_worker": false, - "time": "18:53", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 70 - }, - { - "clock_position": null, - "frame": 18319, - "is_worker": false, - "time": "19:04", - "is_chronoboosted": false, - "name": "Plasma Surge", - "supply": 76 - }, - { - "clock_position": null, - "frame": 18851, - "is_worker": false, - "time": "19:38", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 18856, - "is_worker": false, - "time": "19:38", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 18861, - "is_worker": false, - "time": "19:38", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 18864, - "is_worker": false, - "time": "19:39", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 18869, - "is_worker": false, - "time": "19:39", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 18872, - "is_worker": false, - "time": "19:39", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 18877, - "is_worker": false, - "time": "19:39", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 76 - }, - { - "clock_position": null, - "frame": 18881, - "is_worker": false, - "time": "19:40", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 90 - }, - { - "clock_position": null, - "frame": 18884, - "is_worker": false, - "time": "19:40", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 90 - }, - { - "clock_position": null, - "frame": 18888, - "is_worker": false, - "time": "19:40", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 90 - }, - { - "clock_position": null, - "frame": 18892, - "is_worker": false, - "time": "19:40", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 90 - }, - { - "clock_position": null, - "frame": 20231, - "is_worker": false, - "time": "21:04", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 90 - }, - { - "clock_position": null, - "frame": 20237, - "is_worker": false, - "time": "21:04", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 90 - }, - { - "clock_position": null, - "frame": 20240, - "is_worker": false, - "time": "21:05", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 90 - }, - { - "clock_position": null, - "frame": 20244, - "is_worker": false, - "time": "21:05", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 90 - }, - { - "clock_position": null, - "frame": 20247, - "is_worker": false, - "time": "21:05", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 90 - }, - { - "clock_position": null, - "frame": 20313, - "is_worker": false, - "time": "21:09", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 90 - }, - { - "clock_position": null, - "frame": 20319, - "is_worker": false, - "time": "21:09", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 90 - }, - { - "clock_position": null, - "frame": 20322, - "is_worker": false, - "time": "21:10", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 104 - }, - { - "clock_position": null, - "frame": 20328, - "is_worker": false, - "time": "21:10", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 104 - }, - { - "clock_position": null, - "frame": 20330, - "is_worker": false, - "time": "21:10", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 104 - }, - { - "clock_position": null, - "frame": 20335, - "is_worker": false, - "time": "21:10", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 104 - }, - { - "clock_position": null, - "frame": 20339, - "is_worker": false, - "time": "21:11", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 104 - }, - { - "clock_position": null, - "frame": 20343, - "is_worker": false, - "time": "21:11", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 104 - }, - { - "clock_position": null, - "frame": 20348, - "is_worker": false, - "time": "21:11", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 104 - }, - { - "clock_position": null, - "frame": 20352, - "is_worker": false, - "time": "21:12", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 104 - }, - { - "clock_position": null, - "frame": 20369, - "is_worker": false, - "time": "21:13", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 104 - }, - { - "clock_position": null, - "frame": 20382, - "is_worker": false, - "time": "21:13", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 104 - }, - { - "clock_position": null, - "frame": 20395, - "is_worker": false, - "time": "21:14", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 104 - }, - { - "clock_position": null, - "frame": 20916, - "is_worker": false, - "time": "21:47", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 126 - }, - { - "clock_position": null, - "frame": 20923, - "is_worker": false, - "time": "21:47", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 126 - }, - { - "clock_position": null, - "frame": 20942, - "is_worker": false, - "time": "21:48", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 126 - }, - { - "clock_position": null, - "frame": 20951, - "is_worker": false, - "time": "21:49", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 126 - }, - { - "clock_position": null, - "frame": 20955, - "is_worker": false, - "time": "21:49", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 126 - }, - { - "clock_position": null, - "frame": 20958, - "is_worker": false, - "time": "21:49", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 126 - }, - { - "clock_position": null, - "frame": 20964, - "is_worker": false, - "time": "21:50", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 134 - }, - { - "clock_position": null, - "frame": 20970, - "is_worker": false, - "time": "21:50", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 134 - }, - { - "clock_position": null, - "frame": 22680, - "is_worker": false, - "time": "23:37", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 128 - }, - { - "clock_position": null, - "frame": 22684, - "is_worker": false, - "time": "23:37", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 128 - }, - { - "clock_position": null, - "frame": 22688, - "is_worker": false, - "time": "23:38", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 128 - }, - { - "clock_position": null, - "frame": 22693, - "is_worker": false, - "time": "23:38", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 128 - }, - { - "clock_position": null, - "frame": 22703, - "is_worker": false, - "time": "23:38", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 128 - }, - { - "clock_position": null, - "frame": 22707, - "is_worker": false, - "time": "23:39", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 128 - }, - { - "clock_position": null, - "frame": 22711, - "is_worker": false, - "time": "23:39", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 128 - }, - { - "clock_position": null, - "frame": 22720, - "is_worker": false, - "time": "23:40", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 138 - }, - { - "clock_position": null, - "frame": 22724, - "is_worker": false, - "time": "23:40", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 138 - }, - { - "clock_position": null, - "frame": 22729, - "is_worker": false, - "time": "23:40", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 138 - }, - { - "clock_position": null, - "frame": 22734, - "is_worker": false, - "time": "23:40", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 138 - }, - { - "clock_position": null, - "frame": 22742, - "is_worker": false, - "time": "23:41", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 138 - }, - { - "clock_position": null, - "frame": 22769, - "is_worker": false, - "time": "23:43", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 138 - }, - { - "clock_position": null, - "frame": 23212, - "is_worker": false, - "time": "24:10", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 144 - }, - { - "clock_position": null, - "frame": 23221, - "is_worker": false, - "time": "24:11", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 144 - }, - { - "clock_position": null, - "frame": 23225, - "is_worker": false, - "time": "24:11", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 144 - }, - { - "clock_position": null, - "frame": 23228, - "is_worker": false, - "time": "24:11", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 144 - }, - { - "clock_position": null, - "frame": 23232, - "is_worker": false, - "time": "24:12", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 144 - }, - { - "clock_position": null, - "frame": 23237, - "is_worker": false, - "time": "24:12", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 144 - }, - { - "clock_position": null, - "frame": 23240, - "is_worker": false, - "time": "24:12", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 144 - }, - { - "clock_position": null, - "frame": 23244, - "is_worker": false, - "time": "24:12", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 144 - }, - { - "clock_position": null, - "frame": 23248, - "is_worker": false, - "time": "24:13", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 144 - }, - { - "clock_position": null, - "frame": 23320, - "is_worker": false, - "time": "24:17", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 144 - }, - { - "clock_position": null, - "frame": 23327, - "is_worker": false, - "time": "24:17", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 144 - }, - { - "clock_position": null, - "frame": 23335, - "is_worker": false, - "time": "24:18", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 144 - }, - { - "clock_position": null, - "frame": 23343, - "is_worker": false, - "time": "24:18", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 144 - }, - { - "clock_position": null, - "frame": 23356, - "is_worker": false, - "time": "24:19", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 144 - }, - { - "clock_position": null, - "frame": 23368, - "is_worker": false, - "time": "24:20", - "is_chronoboosted": false, - "name": "Dragoon", - "supply": 172 + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 12, + "frame": 81, + "is_chronoboosted": true, + "time": "0:05" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 13, + "frame": 477, + "is_chronoboosted": false, + "time": "0:29" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 13, + "frame": 493, + "is_chronoboosted": true, + "time": "0:30" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 14, + "frame": 715, + "is_chronoboosted": true, + "time": "0:44" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 15, + "frame": 937, + "is_chronoboosted": true, + "time": "0:58" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 16, + "frame": 1159, + "is_chronoboosted": true, + "time": "1:12" + }, + { + "is_worker": false, + "name": "WarpGate", + "clock_position": null, + "supply": 17, + "frame": 1348, + "is_chronoboosted": false, + "time": "1:24" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 17, + "frame": 1381, + "is_chronoboosted": true, + "time": "1:26" + }, + { + "is_worker": false, + "name": "Assimilator", + "clock_position": null, + "supply": 17, + "frame": 1411, + "is_chronoboosted": false, + "time": "1:28" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 18, + "frame": 1603, + "is_chronoboosted": true, + "time": "1:40" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 19, + "frame": 1825, + "is_chronoboosted": true, + "time": "1:54" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 19, + "frame": 1907, + "is_chronoboosted": false, + "time": "1:59" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 20, + "frame": 1980, + "is_chronoboosted": false, + "time": "2:03" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 20, + "frame": 2047, + "is_chronoboosted": true, + "time": "2:07" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 21, + "frame": 2269, + "is_chronoboosted": true, + "time": "2:21" + }, + { + "is_worker": false, + "name": "WarpGate", + "clock_position": null, + "supply": 22, + "frame": 2436, + "is_chronoboosted": false, + "time": "2:32" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 22, + "frame": 2491, + "is_chronoboosted": true, + "time": "2:35" + }, + { + "is_worker": false, + "name": "Assimilator", + "clock_position": null, + "supply": 23, + "frame": 2707, + "is_chronoboosted": false, + "time": "2:49" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 23, + "frame": 2713, + "is_chronoboosted": true, + "time": "2:49" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 24, + "frame": 2935, + "is_chronoboosted": true, + "time": "3:03" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 24, + "frame": 2989, + "is_chronoboosted": false, + "time": "3:06" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 24, + "frame": 2999, + "is_chronoboosted": false, + "time": "3:07" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 29, + "frame": 3157, + "is_chronoboosted": true, + "time": "3:17" + }, + { + "is_worker": false, + "name": "CyberneticsCore", + "clock_position": null, + "supply": 30, + "frame": 3786, + "is_chronoboosted": false, + "time": "3:56" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 30, + "frame": 3828, + "is_chronoboosted": false, + "time": "3:59" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 30, + "frame": 3892, + "is_chronoboosted": false, + "time": "4:03" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 30, + "frame": 4018, + "is_chronoboosted": false, + "time": "4:11" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 30, + "frame": 4042, + "is_chronoboosted": false, + "time": "4:12" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 30, + "frame": 4049, + "is_chronoboosted": false, + "time": "4:13" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 30, + "frame": 4059, + "is_chronoboosted": false, + "time": "4:13" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 30, + "frame": 4070, + "is_chronoboosted": false, + "time": "4:14" + }, + { + "is_worker": false, + "name": "TwilightCouncil", + "clock_position": null, + "supply": 38, + "frame": 4785, + "is_chronoboosted": false, + "time": "4:59" + }, + { + "is_worker": false, + "name": "WarpGate", + "clock_position": null, + "supply": 38, + "frame": 4875, + "is_chronoboosted": false, + "time": "5:04" + }, + { + "is_worker": false, + "name": "WarpGate", + "clock_position": null, + "supply": 38, + "frame": 4898, + "is_chronoboosted": false, + "time": "5:06" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 38, + "frame": 5064, + "is_chronoboosted": false, + "time": "5:16" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 38, + "frame": 5072, + "is_chronoboosted": false, + "time": "5:17" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 38, + "frame": 5085, + "is_chronoboosted": false, + "time": "5:17" + }, + { + "is_worker": false, + "name": "Nexus", + "clock_position": null, + "supply": 44, + "frame": 5762, + "is_chronoboosted": false, + "time": "6:00" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 44, + "frame": 5874, + "is_chronoboosted": true, + "time": "6:07" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 45, + "frame": 6096, + "is_chronoboosted": true, + "time": "6:21" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 46, + "frame": 6318, + "is_chronoboosted": true, + "time": "6:34" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 47, + "frame": 6540, + "is_chronoboosted": true, + "time": "6:48" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 48, + "frame": 6713, + "is_chronoboosted": false, + "time": "6:59" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 50, + "frame": 6723, + "is_chronoboosted": false, + "time": "7:00" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 50, + "frame": 6736, + "is_chronoboosted": false, + "time": "7:01" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 50, + "frame": 6762, + "is_chronoboosted": true, + "time": "7:02" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 55, + "frame": 6914, + "is_chronoboosted": false, + "time": "7:12" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 55, + "frame": 6996, + "is_chronoboosted": false, + "time": "7:17" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 51, + "frame": 7054, + "is_chronoboosted": false, + "time": "7:20" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 47, + "frame": 7415, + "is_chronoboosted": true, + "time": "7:43" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 47, + "frame": 7489, + "is_chronoboosted": true, + "time": "7:48" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 49, + "frame": 7637, + "is_chronoboosted": true, + "time": "7:57" + }, + { + "is_worker": false, + "name": "Assimilator", + "clock_position": null, + "supply": 49, + "frame": 7677, + "is_chronoboosted": false, + "time": "7:59" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 50, + "frame": 7711, + "is_chronoboosted": true, + "time": "8:01" + }, + { + "is_worker": false, + "name": "Assimilator", + "clock_position": null, + "supply": 50, + "frame": 7768, + "is_chronoboosted": false, + "time": "8:05" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 51, + "frame": 7859, + "is_chronoboosted": true, + "time": "8:11" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 51, + "frame": 7933, + "is_chronoboosted": true, + "time": "8:15" + }, + { + "is_worker": false, + "name": "Forge", + "clock_position": null, + "supply": 51, + "frame": 7943, + "is_chronoboosted": false, + "time": "8:16" + }, + { + "is_worker": false, + "name": "Forge", + "clock_position": null, + "supply": 51, + "frame": 7949, + "is_chronoboosted": false, + "time": "8:16" + }, + { + "is_worker": false, + "name": "Charge", + "clock_position": null, + "supply": 53, + "frame": 8000, + "is_chronoboosted": false, + "time": "8:20" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 53, + "frame": 8081, + "is_chronoboosted": true, + "time": "8:25" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 53, + "frame": 8155, + "is_chronoboosted": true, + "time": "8:29" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 54, + "frame": 8292, + "is_chronoboosted": false, + "time": "8:38" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 54, + "frame": 8302, + "is_chronoboosted": false, + "time": "8:38" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 54, + "frame": 8303, + "is_chronoboosted": true, + "time": "8:38" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 54, + "frame": 8310, + "is_chronoboosted": false, + "time": "8:39" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 60, + "frame": 8377, + "is_chronoboosted": true, + "time": "8:43" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 49, + "frame": 8835, + "is_chronoboosted": false, + "time": "9:12" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 49, + "frame": 8841, + "is_chronoboosted": false, + "time": "9:12" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 49, + "frame": 8845, + "is_chronoboosted": false, + "time": "9:12" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 49, + "frame": 8849, + "is_chronoboosted": false, + "time": "9:13" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 49, + "frame": 8854, + "is_chronoboosted": false, + "time": "9:13" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 49, + "frame": 8858, + "is_chronoboosted": false, + "time": "9:13" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 49, + "frame": 8861, + "is_chronoboosted": false, + "time": "9:13" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 49, + "frame": 8865, + "is_chronoboosted": false, + "time": "9:14" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 65, + "frame": 9088, + "is_chronoboosted": true, + "time": "9:28" + }, + { + "is_worker": false, + "name": "Singularity Charge", + "clock_position": null, + "supply": 66, + "frame": 9195, + "is_chronoboosted": false, + "time": "9:34" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 66, + "frame": 9310, + "is_chronoboosted": true, + "time": "9:41" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 66, + "frame": 9312, + "is_chronoboosted": true, + "time": "9:42" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 68, + "frame": 9532, + "is_chronoboosted": true, + "time": "9:55" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 68, + "frame": 9534, + "is_chronoboosted": true, + "time": "9:55" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 70, + "frame": 9754, + "is_chronoboosted": true, + "time": "10:09" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 70, + "frame": 9756, + "is_chronoboosted": true, + "time": "10:09" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 72, + "frame": 9976, + "is_chronoboosted": true, + "time": "10:23" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 72, + "frame": 9978, + "is_chronoboosted": true, + "time": "10:23" + }, + { + "is_worker": false, + "name": "TemplarArchive", + "clock_position": null, + "supply": 72, + "frame": 10032, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "Forge", + "clock_position": null, + "supply": 68, + "frame": 10125, + "is_chronoboosted": false, + "time": "10:32" + }, + { + "is_worker": false, + "name": "Whirlwind", + "clock_position": null, + "supply": 68, + "frame": 10154, + "is_chronoboosted": false, + "time": "10:34" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 68, + "frame": 10200, + "is_chronoboosted": true, + "time": "10:37" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 63, + "frame": 10422, + "is_chronoboosted": true, + "time": "10:51" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 63, + "frame": 10457, + "is_chronoboosted": false, + "time": "10:53" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 63, + "frame": 10463, + "is_chronoboosted": false, + "time": "10:53" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 63, + "frame": 10467, + "is_chronoboosted": false, + "time": "10:54" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 63, + "frame": 10472, + "is_chronoboosted": false, + "time": "10:54" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 63, + "frame": 10476, + "is_chronoboosted": false, + "time": "10:54" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 63, + "frame": 10479, + "is_chronoboosted": false, + "time": "10:54" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 63, + "frame": 10483, + "is_chronoboosted": false, + "time": "10:55" + }, + { + "is_worker": false, + "name": "WarpGate", + "clock_position": null, + "supply": 78, + "frame": 11039, + "is_chronoboosted": false, + "time": "11:29" + }, + { + "is_worker": false, + "name": "WarpGate", + "clock_position": null, + "supply": 78, + "frame": 11075, + "is_chronoboosted": false, + "time": "11:32" + }, + { + "is_worker": false, + "name": "WarpGate", + "clock_position": null, + "supply": 78, + "frame": 11118, + "is_chronoboosted": false, + "time": "11:34" + }, + { + "is_worker": false, + "name": "WarpGate", + "clock_position": null, + "supply": 78, + "frame": 11157, + "is_chronoboosted": false, + "time": "11:37" + }, + { + "is_worker": false, + "name": "Trillic Compresion Mesh", + "clock_position": null, + "supply": 76, + "frame": 11593, + "is_chronoboosted": false, + "time": "12:04" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 76, + "frame": 12091, + "is_chronoboosted": false, + "time": "12:35" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 76, + "frame": 12095, + "is_chronoboosted": false, + "time": "12:35" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 76, + "frame": 12098, + "is_chronoboosted": false, + "time": "12:36" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 76, + "frame": 12107, + "is_chronoboosted": false, + "time": "12:36" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 76, + "frame": 12110, + "is_chronoboosted": false, + "time": "12:36" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 76, + "frame": 12114, + "is_chronoboosted": false, + "time": "12:37" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 76, + "frame": 12117, + "is_chronoboosted": false, + "time": "12:37" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 76, + "frame": 12123, + "is_chronoboosted": false, + "time": "12:37" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 76, + "frame": 12146, + "is_chronoboosted": false, + "time": "12:39" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 76, + "frame": 12153, + "is_chronoboosted": false, + "time": "12:39" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 76, + "frame": 12157, + "is_chronoboosted": false, + "time": "12:39" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 92, + "frame": 12162, + "is_chronoboosted": false, + "time": "12:40" + }, + { + "is_worker": false, + "name": "ProtossGroundWeaponsLevel1", + "clock_position": null, + "supply": 94, + "frame": 12459, + "is_chronoboosted": false, + "time": "12:58" + }, + { + "is_worker": false, + "name": "ProtossGroundArmorsLevel1", + "clock_position": null, + "supply": 94, + "frame": 12470, + "is_chronoboosted": false, + "time": "12:59" + }, + { + "is_worker": false, + "name": "ProtossShieldsLevel1", + "clock_position": null, + "supply": 90, + "frame": 12483, + "is_chronoboosted": false, + "time": "13:00" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 90, + "frame": 12563, + "is_chronoboosted": false, + "time": "13:05" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 90, + "frame": 12573, + "is_chronoboosted": false, + "time": "13:05" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 90, + "frame": 12578, + "is_chronoboosted": false, + "time": "13:06" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 90, + "frame": 12580, + "is_chronoboosted": false, + "time": "13:06" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 90, + "frame": 12589, + "is_chronoboosted": false, + "time": "13:06" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 100, + "frame": 12661, + "is_chronoboosted": false, + "time": "13:11" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 92, + "frame": 13008, + "is_chronoboosted": false, + "time": "13:33" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 92, + "frame": 13032, + "is_chronoboosted": false, + "time": "13:34" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 92, + "frame": 13064, + "is_chronoboosted": false, + "time": "13:36" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 92, + "frame": 13093, + "is_chronoboosted": false, + "time": "13:38" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 68, + "frame": 13131, + "is_chronoboosted": false, + "time": "13:40" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 68, + "frame": 13167, + "is_chronoboosted": false, + "time": "13:42" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 68, + "frame": 13232, + "is_chronoboosted": false, + "time": "13:47" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 68, + "frame": 13273, + "is_chronoboosted": false, + "time": "13:49" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 56, + "frame": 13318, + "is_chronoboosted": false, + "time": "13:52" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 56, + "frame": 13363, + "is_chronoboosted": false, + "time": "13:55" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 52, + "frame": 13551, + "is_chronoboosted": false, + "time": "14:06" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 52, + "frame": 13558, + "is_chronoboosted": false, + "time": "14:07" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 52, + "frame": 13564, + "is_chronoboosted": false, + "time": "14:07" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 52, + "frame": 13572, + "is_chronoboosted": false, + "time": "14:08" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 52, + "frame": 13582, + "is_chronoboosted": false, + "time": "14:08" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 52, + "frame": 13592, + "is_chronoboosted": false, + "time": "14:09" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 64, + "frame": 13604, + "is_chronoboosted": false, + "time": "14:10" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 64, + "frame": 13617, + "is_chronoboosted": false, + "time": "14:11" + }, + { + "is_worker": false, + "name": "Psionic Storm", + "clock_position": null, + "supply": 68, + "frame": 13863, + "is_chronoboosted": false, + "time": "14:26" + }, + { + "is_worker": false, + "name": "Archon", + "clock_position": null, + "supply": 68, + "frame": 14114, + "is_chronoboosted": false, + "time": "14:42" + }, + { + "is_worker": false, + "name": "Archon", + "clock_position": null, + "supply": 68, + "frame": 14116, + "is_chronoboosted": false, + "time": "14:42" + }, + { + "is_worker": false, + "name": "Archon", + "clock_position": null, + "supply": 68, + "frame": 14124, + "is_chronoboosted": false, + "time": "14:42" + }, + { + "is_worker": false, + "name": "Archon", + "clock_position": null, + "supply": 68, + "frame": 14138, + "is_chronoboosted": false, + "time": "14:43" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 68, + "frame": 14699, + "is_chronoboosted": false, + "time": "15:18" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 68, + "frame": 14705, + "is_chronoboosted": false, + "time": "15:19" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 68, + "frame": 14714, + "is_chronoboosted": false, + "time": "15:19" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 68, + "frame": 14718, + "is_chronoboosted": false, + "time": "15:19" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 14722, + "is_chronoboosted": false, + "time": "15:20" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 14730, + "is_chronoboosted": false, + "time": "15:20" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 14732, + "is_chronoboosted": false, + "time": "15:20" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 14737, + "is_chronoboosted": false, + "time": "15:21" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 14741, + "is_chronoboosted": false, + "time": "15:21" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 14767, + "is_chronoboosted": false, + "time": "15:22" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 14776, + "is_chronoboosted": false, + "time": "15:23" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 14780, + "is_chronoboosted": false, + "time": "15:23" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 14786, + "is_chronoboosted": false, + "time": "15:24" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 14790, + "is_chronoboosted": false, + "time": "15:24" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 14796, + "is_chronoboosted": false, + "time": "15:24" + }, + { + "is_worker": false, + "name": "ProtossGroundWeaponsLevel2", + "clock_position": null, + "supply": 98, + "frame": 15072, + "is_chronoboosted": false, + "time": "15:42" + }, + { + "is_worker": false, + "name": "ProtossGroundArmorsLevel2", + "clock_position": null, + "supply": 98, + "frame": 15091, + "is_chronoboosted": false, + "time": "15:43" + }, + { + "is_worker": false, + "name": "ProtossShieldsLevel2", + "clock_position": null, + "supply": 98, + "frame": 15121, + "is_chronoboosted": false, + "time": "15:45" + }, + { + "is_worker": false, + "name": "Khaydarin Amulet", + "clock_position": null, + "supply": 98, + "frame": 15302, + "is_chronoboosted": false, + "time": "15:56" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 98, + "frame": 16119, + "is_chronoboosted": false, + "time": "16:47" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 98, + "frame": 16123, + "is_chronoboosted": false, + "time": "16:47" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 98, + "frame": 16127, + "is_chronoboosted": false, + "time": "16:47" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 98, + "frame": 16134, + "is_chronoboosted": false, + "time": "16:48" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 98, + "frame": 16139, + "is_chronoboosted": false, + "time": "16:48" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 98, + "frame": 16143, + "is_chronoboosted": false, + "time": "16:48" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 98, + "frame": 16150, + "is_chronoboosted": false, + "time": "16:49" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 98, + "frame": 16157, + "is_chronoboosted": false, + "time": "16:49" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 114, + "frame": 16162, + "is_chronoboosted": false, + "time": "16:50" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 114, + "frame": 16166, + "is_chronoboosted": false, + "time": "16:50" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 114, + "frame": 16170, + "is_chronoboosted": false, + "time": "16:50" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 114, + "frame": 16179, + "is_chronoboosted": false, + "time": "16:51" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 114, + "frame": 16182, + "is_chronoboosted": false, + "time": "16:51" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 114, + "frame": 16186, + "is_chronoboosted": false, + "time": "16:51" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 114, + "frame": 16189, + "is_chronoboosted": false, + "time": "16:51" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 74, + "frame": 17391, + "is_chronoboosted": false, + "time": "18:06" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 74, + "frame": 17397, + "is_chronoboosted": false, + "time": "18:07" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 74, + "frame": 17403, + "is_chronoboosted": false, + "time": "18:07" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 74, + "frame": 17407, + "is_chronoboosted": false, + "time": "18:07" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 74, + "frame": 17414, + "is_chronoboosted": false, + "time": "18:08" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 74, + "frame": 17423, + "is_chronoboosted": false, + "time": "18:08" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 74, + "frame": 17430, + "is_chronoboosted": false, + "time": "18:09" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 68, + "frame": 17440, + "is_chronoboosted": false, + "time": "18:10" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 68, + "frame": 17446, + "is_chronoboosted": false, + "time": "18:10" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 68, + "frame": 17450, + "is_chronoboosted": false, + "time": "18:10" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 68, + "frame": 17454, + "is_chronoboosted": false, + "time": "18:10" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 68, + "frame": 17457, + "is_chronoboosted": false, + "time": "18:11" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 68, + "frame": 17463, + "is_chronoboosted": false, + "time": "18:11" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 68, + "frame": 17467, + "is_chronoboosted": false, + "time": "18:11" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 68, + "frame": 17472, + "is_chronoboosted": false, + "time": "18:12" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 68, + "frame": 17473, + "is_chronoboosted": false, + "time": "18:12" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 68, + "frame": 17477, + "is_chronoboosted": false, + "time": "18:12" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 68, + "frame": 17482, + "is_chronoboosted": false, + "time": "18:12" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 70, + "frame": 18122, + "is_chronoboosted": false, + "time": "18:52" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 70, + "frame": 18130, + "is_chronoboosted": false, + "time": "18:53" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 70, + "frame": 18138, + "is_chronoboosted": false, + "time": "18:53" + }, + { + "is_worker": false, + "name": "Plasma Surge", + "clock_position": null, + "supply": 76, + "frame": 18319, + "is_chronoboosted": false, + "time": "19:04" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 18851, + "is_chronoboosted": false, + "time": "19:38" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 18856, + "is_chronoboosted": false, + "time": "19:38" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 18861, + "is_chronoboosted": false, + "time": "19:38" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 18864, + "is_chronoboosted": false, + "time": "19:39" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 18869, + "is_chronoboosted": false, + "time": "19:39" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 18872, + "is_chronoboosted": false, + "time": "19:39" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 76, + "frame": 18877, + "is_chronoboosted": false, + "time": "19:39" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 90, + "frame": 18881, + "is_chronoboosted": false, + "time": "19:40" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 90, + "frame": 18884, + "is_chronoboosted": false, + "time": "19:40" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 90, + "frame": 18888, + "is_chronoboosted": false, + "time": "19:40" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 90, + "frame": 18892, + "is_chronoboosted": false, + "time": "19:40" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 90, + "frame": 20231, + "is_chronoboosted": false, + "time": "21:04" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 90, + "frame": 20237, + "is_chronoboosted": false, + "time": "21:04" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 90, + "frame": 20240, + "is_chronoboosted": false, + "time": "21:05" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 90, + "frame": 20244, + "is_chronoboosted": false, + "time": "21:05" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 90, + "frame": 20247, + "is_chronoboosted": false, + "time": "21:05" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 90, + "frame": 20313, + "is_chronoboosted": false, + "time": "21:09" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 90, + "frame": 20319, + "is_chronoboosted": false, + "time": "21:09" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 104, + "frame": 20322, + "is_chronoboosted": false, + "time": "21:10" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 104, + "frame": 20328, + "is_chronoboosted": false, + "time": "21:10" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 104, + "frame": 20330, + "is_chronoboosted": false, + "time": "21:10" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 104, + "frame": 20335, + "is_chronoboosted": false, + "time": "21:10" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 104, + "frame": 20339, + "is_chronoboosted": false, + "time": "21:11" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 104, + "frame": 20343, + "is_chronoboosted": false, + "time": "21:11" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 104, + "frame": 20348, + "is_chronoboosted": false, + "time": "21:11" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 104, + "frame": 20352, + "is_chronoboosted": false, + "time": "21:12" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 104, + "frame": 20369, + "is_chronoboosted": false, + "time": "21:13" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 104, + "frame": 20382, + "is_chronoboosted": false, + "time": "21:13" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 104, + "frame": 20395, + "is_chronoboosted": false, + "time": "21:14" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 126, + "frame": 20916, + "is_chronoboosted": false, + "time": "21:47" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 126, + "frame": 20923, + "is_chronoboosted": false, + "time": "21:47" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 126, + "frame": 20942, + "is_chronoboosted": false, + "time": "21:48" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 126, + "frame": 20951, + "is_chronoboosted": false, + "time": "21:49" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 126, + "frame": 20955, + "is_chronoboosted": false, + "time": "21:49" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 126, + "frame": 20958, + "is_chronoboosted": false, + "time": "21:49" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 134, + "frame": 20964, + "is_chronoboosted": false, + "time": "21:50" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 134, + "frame": 20970, + "is_chronoboosted": false, + "time": "21:50" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 128, + "frame": 22680, + "is_chronoboosted": false, + "time": "23:37" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 128, + "frame": 22684, + "is_chronoboosted": false, + "time": "23:37" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 128, + "frame": 22688, + "is_chronoboosted": false, + "time": "23:38" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 128, + "frame": 22693, + "is_chronoboosted": false, + "time": "23:38" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 128, + "frame": 22703, + "is_chronoboosted": false, + "time": "23:38" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 128, + "frame": 22707, + "is_chronoboosted": false, + "time": "23:39" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 128, + "frame": 22711, + "is_chronoboosted": false, + "time": "23:39" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 138, + "frame": 22720, + "is_chronoboosted": false, + "time": "23:40" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 138, + "frame": 22724, + "is_chronoboosted": false, + "time": "23:40" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 138, + "frame": 22729, + "is_chronoboosted": false, + "time": "23:40" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 138, + "frame": 22734, + "is_chronoboosted": false, + "time": "23:40" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 138, + "frame": 22742, + "is_chronoboosted": false, + "time": "23:41" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 138, + "frame": 22769, + "is_chronoboosted": false, + "time": "23:43" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 144, + "frame": 23212, + "is_chronoboosted": false, + "time": "24:10" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 144, + "frame": 23221, + "is_chronoboosted": false, + "time": "24:11" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 144, + "frame": 23225, + "is_chronoboosted": false, + "time": "24:11" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 144, + "frame": 23228, + "is_chronoboosted": false, + "time": "24:11" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 144, + "frame": 23232, + "is_chronoboosted": false, + "time": "24:12" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 144, + "frame": 23237, + "is_chronoboosted": false, + "time": "24:12" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 144, + "frame": 23240, + "is_chronoboosted": false, + "time": "24:12" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 144, + "frame": 23244, + "is_chronoboosted": false, + "time": "24:12" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 144, + "frame": 23248, + "is_chronoboosted": false, + "time": "24:13" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 144, + "frame": 23320, + "is_chronoboosted": false, + "time": "24:17" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 144, + "frame": 23327, + "is_chronoboosted": false, + "time": "24:17" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 144, + "frame": 23335, + "is_chronoboosted": false, + "time": "24:18" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 144, + "frame": 23343, + "is_chronoboosted": false, + "time": "24:18" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 144, + "frame": 23356, + "is_chronoboosted": false, + "time": "24:19" + }, + { + "is_worker": false, + "name": "Dragoon", + "clock_position": null, + "supply": 172, + "frame": 23368, + "is_chronoboosted": false, + "time": "24:20" } - ], - "league": 0, - "commander": "Artanis", - "handicap": 100, + ], + "abilities": [], + "name": "maemar", + "is_human": true, + "level": 4294967295, + "handicap": 100, + "region": "us", + "is_winner": false, + "pick_race": "Protoss", + "clock_position": null, + "commander": "Artanis", + "color": "1CA7EA", "unitsLost": [ { - "clock_position": null, - "time": "6:06", - "killer": 2, - "frame": 5866, - "name": null - }, - { - "clock_position": null, - "time": "6:08", - "killer": 2, - "frame": 5897, - "name": null - }, - { - "clock_position": null, - "time": "6:09", - "killer": 2, - "frame": 5905, - "name": null - }, - { - "clock_position": null, - "time": "6:09", - "killer": 2, - "frame": 5914, - "name": null - }, - { - "clock_position": null, - "time": "6:12", - "killer": 2, - "frame": 5960, - "name": null - }, - { - "clock_position": null, - "time": "6:13", - "killer": 2, - "frame": 5968, - "name": null - }, - { - "clock_position": null, - "time": "6:13", - "killer": 2, - "frame": 5976, - "name": null - }, - { - "clock_position": null, - "time": "6:14", - "killer": 2, - "frame": 5992, - "name": null - }, - { - "clock_position": null, - "time": "6:15", - "killer": 2, - "frame": 6015, - "name": null - }, - { - "clock_position": null, - "time": "6:18", - "killer": 2, - "frame": 6053, - "name": null - }, - { - "clock_position": null, - "time": "6:19", - "killer": 2, - "frame": 6070, - "name": null - }, - { - "clock_position": null, - "time": "7:18", - "killer": 4, - "frame": 7018, - "name": null - }, - { - "clock_position": null, - "time": "7:19", - "killer": 4, - "frame": 7024, - "name": null - }, - { - "clock_position": null, - "time": "7:26", - "killer": 4, - "frame": 7145, - "name": null - }, - { - "clock_position": null, - "time": "7:28", - "killer": 3, - "frame": 7177, - "name": null - }, - { - "clock_position": null, - "time": "8:37", - "killer": 4, - "frame": 8281, - "name": null - }, - { - "clock_position": null, - "time": "8:43", - "killer": 3, - "frame": 8368, - "name": null - }, - { - "clock_position": null, - "time": "8:46", - "killer": 4, - "frame": 8424, - "name": null - }, - { - "clock_position": null, - "time": "8:50", - "killer": 4, - "frame": 8491, - "name": null - }, - { - "clock_position": null, - "time": "8:51", - "killer": 3, - "frame": 8508, - "name": null - }, - { - "clock_position": null, - "time": "8:52", - "killer": 4, - "frame": 8514, - "name": null - }, - { - "clock_position": null, - "time": "8:52", - "killer": 2, - "frame": 8517, - "name": null - }, - { - "clock_position": null, - "time": "9:00", - "killer": 2, - "frame": 8644, - "name": null - }, - { - "clock_position": null, - "time": "9:01", - "killer": 4, - "frame": 8666, - "name": null - }, - { - "clock_position": null, - "time": "9:03", - "killer": 2, - "frame": 8701, - "name": null - }, - { - "clock_position": null, - "time": "9:06", - "killer": 2, - "frame": 8744, - "name": null - }, - { - "clock_position": null, - "time": "9:08", - "killer": 2, - "frame": 8770, - "name": null - }, - { - "clock_position": null, - "time": "9:17", - "killer": 2, - "frame": 8923, - "name": null - }, - { - "clock_position": null, - "time": "9:18", - "killer": 2, - "frame": 8928, - "name": null - }, - { - "clock_position": null, - "time": "9:18", - "killer": 2, - "frame": 8931, - "name": null - }, - { - "clock_position": null, - "time": "9:18", - "killer": 2, - "frame": 8932, - "name": null - }, - { - "clock_position": null, - "time": "9:19", - "killer": 2, - "frame": 8958, - "name": null - }, - { - "clock_position": null, - "time": "9:19", - "killer": 2, - "frame": 8959, - "name": null - }, - { - "clock_position": null, - "time": "10:22", - "killer": 4, - "frame": 9958, - "name": null - }, - { - "clock_position": null, - "time": "10:25", - "killer": 3, - "frame": 10006, - "name": null - }, - { - "clock_position": null, - "time": "10:28", - "killer": 3, - "frame": 10060, - "name": null - }, - { - "clock_position": null, - "time": "10:30", - "killer": 3, - "frame": 10084, - "name": null - }, - { - "clock_position": null, - "time": "10:32", - "killer": 3, - "frame": 10125, - "name": null - }, - { - "clock_position": null, - "time": "10:33", - "killer": 3, - "frame": 10130, - "name": null - }, - { - "clock_position": null, - "time": "11:35", - "killer": 2, - "frame": 11135, - "name": null - }, - { - "clock_position": null, - "time": "11:36", - "killer": 2, - "frame": 11141, - "name": null - }, - { - "clock_position": null, - "time": "11:36", - "killer": 3, - "frame": 11142, - "name": null - }, - { - "clock_position": null, - "time": "11:37", - "killer": 2, - "frame": 11166, - "name": null - }, - { - "clock_position": null, - "time": "11:38", - "killer": 2, - "frame": 11170, - "name": null - }, - { - "clock_position": null, - "time": "11:38", - "killer": 2, - "frame": 11171, - "name": null - }, - { - "clock_position": null, - "time": "11:38", - "killer": 2, - "frame": 11173, - "name": null - }, - { - "clock_position": null, - "time": "11:39", - "killer": 2, - "frame": 11186, - "name": null - }, - { - "clock_position": null, - "time": "11:40", - "killer": 2, - "frame": 11201, - "name": null - }, - { - "clock_position": null, - "time": "11:41", - "killer": 2, - "frame": 11221, - "name": null - }, - { - "clock_position": null, - "time": "11:41", - "killer": 2, - "frame": 11228, - "name": null - }, - { - "clock_position": null, - "time": "11:41", - "killer": 2, - "frame": 11230, - "name": null - }, - { - "clock_position": null, - "time": "11:42", - "killer": 2, - "frame": 11235, - "name": null - }, - { - "clock_position": null, - "time": "11:42", - "killer": 2, - "frame": 11239, - "name": null - }, - { - "clock_position": null, - "time": "11:46", - "killer": 2, - "frame": 11309, - "name": null - }, - { - "clock_position": null, - "time": "11:48", - "killer": 2, - "frame": 11333, - "name": null - }, - { - "clock_position": null, - "time": "11:50", - "killer": 2, - "frame": 11364, - "name": null - }, - { - "clock_position": null, - "time": "12:10", - "killer": 2, - "frame": 11692, - "name": null - }, - { - "clock_position": null, - "time": "12:13", - "killer": 2, - "frame": 11732, - "name": null - }, - { - "clock_position": null, - "time": "12:14", - "killer": 2, - "frame": 11744, - "name": null - }, - { - "clock_position": null, - "time": "12:17", - "killer": 2, - "frame": 11796, - "name": null - }, - { - "clock_position": null, - "time": "12:31", - "killer": 3, - "frame": 12017, - "name": null - }, - { - "clock_position": null, - "time": "12:34", - "killer": 2, - "frame": 12068, - "name": null - }, - { - "clock_position": null, - "time": "12:35", - "killer": 3, - "frame": 12088, - "name": null - }, - { - "clock_position": null, - "time": "12:38", - "killer": 3, - "frame": 12139, - "name": null - }, - { - "clock_position": null, - "time": "12:50", - "killer": 4, - "frame": 12330, - "name": null - }, - { - "clock_position": null, - "time": "12:56", - "killer": 4, - "frame": 12428, - "name": null - }, - { - "clock_position": null, - "time": "13:23", - "killer": 4, - "frame": 12851, - "name": null - }, - { - "clock_position": null, - "time": "13:23", - "killer": 3, - "frame": 12859, - "name": null - }, - { - "clock_position": null, - "time": "13:24", - "killer": 4, - "frame": 12876, - "name": null - }, - { - "clock_position": null, - "time": "13:25", - "killer": 3, - "frame": 12881, - "name": null - }, - { - "clock_position": null, - "time": "13:25", - "killer": 3, - "frame": 12894, - "name": null - }, - { - "clock_position": null, - "time": "13:31", - "killer": 3, - "frame": 12990, - "name": null - }, - { - "clock_position": null, - "time": "13:33", - "killer": 3, - "frame": 13011, - "name": null - }, - { - "clock_position": null, - "time": "13:33", - "killer": 4, - "frame": 13016, - "name": null - }, - { - "clock_position": null, - "time": "13:33", - "killer": 4, - "frame": 13020, - "name": null - }, - { - "clock_position": null, - "time": "13:34", - "killer": 4, - "frame": 13029, - "name": null - }, - { - "clock_position": null, - "time": "13:35", - "killer": 3, - "frame": 13043, - "name": null - }, - { - "clock_position": null, - "time": "13:35", - "killer": 3, - "frame": 13050, - "name": null - }, - { - "clock_position": null, - "time": "13:35", - "killer": 3, - "frame": 13055, - "name": null - }, - { - "clock_position": null, - "time": "13:37", - "killer": 4, - "frame": 13072, - "name": null - }, - { - "clock_position": null, - "time": "13:37", - "killer": 3, - "frame": 13077, - "name": null - }, - { - "clock_position": null, - "time": "13:38", - "killer": 4, - "frame": 13093, - "name": null - }, - { - "clock_position": null, - "time": "13:39", - "killer": 3, - "frame": 13119, - "name": null - }, - { - "clock_position": null, - "time": "13:41", - "killer": 3, - "frame": 13147, - "name": null - }, - { - "clock_position": null, - "time": "13:41", - "killer": 3, - "frame": 13147, - "name": null - }, - { - "clock_position": null, - "time": "13:44", - "killer": 3, - "frame": 13187, - "name": null - }, - { - "clock_position": null, - "time": "13:44", - "killer": 3, - "frame": 13187, - "name": null - }, - { - "clock_position": null, - "time": "13:45", - "killer": 3, - "frame": 13201, - "name": null - }, - { - "clock_position": null, - "time": "13:49", - "killer": 4, - "frame": 13278, - "name": null - }, - { - "clock_position": null, - "time": "13:50", - "killer": 4, - "frame": 13291, - "name": null - }, - { - "clock_position": null, - "time": "13:53", - "killer": 4, - "frame": 13337, - "name": null - }, - { - "clock_position": null, - "time": "14:54", - "killer": null, - "frame": 14306, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "14:54", - "killer": null, - "frame": 14306, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "14:54", - "killer": null, - "frame": 14308, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "14:54", - "killer": null, - "frame": 14308, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "14:54", - "killer": null, - "frame": 14316, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "14:54", - "killer": null, - "frame": 14316, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "14:55", - "killer": null, - "frame": 14330, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "14:55", - "killer": null, - "frame": 14330, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "14:56", - "killer": 2, - "frame": 14343, - "name": null - }, - { - "clock_position": null, - "time": "14:56", - "killer": 2, - "frame": 14349, - "name": null - }, - { - "clock_position": null, - "time": "14:56", - "killer": 2, - "frame": 14350, - "name": null - }, - { - "clock_position": null, - "time": "14:57", - "killer": 2, - "frame": 14352, - "name": null - }, - { - "clock_position": null, - "time": "14:57", - "killer": 2, - "frame": 14366, - "name": null - }, - { - "clock_position": null, - "time": "14:59", - "killer": 2, - "frame": 14389, - "name": null - }, - { - "clock_position": null, - "time": "15:01", - "killer": 2, - "frame": 14420, - "name": null - }, - { - "clock_position": null, - "time": "15:02", - "killer": 2, - "frame": 14447, - "name": null - }, - { - "clock_position": null, - "time": "15:03", - "killer": 2, - "frame": 14455, - "name": null - }, - { - "clock_position": null, - "time": "15:03", - "killer": 2, - "frame": 14459, - "name": null - }, - { - "clock_position": null, - "time": "15:04", - "killer": 2, - "frame": 14479, - "name": null - }, - { - "clock_position": null, - "time": "15:04", - "killer": 2, - "frame": 14479, - "name": null - }, - { - "clock_position": null, - "time": "15:05", - "killer": 2, - "frame": 14489, - "name": null - }, - { - "clock_position": null, - "time": "15:07", - "killer": 2, - "frame": 14517, - "name": null - }, - { - "clock_position": null, - "time": "15:07", - "killer": 2, - "frame": 14518, - "name": null - }, - { - "clock_position": null, - "time": "15:07", - "killer": 2, - "frame": 14523, - "name": null - }, - { - "clock_position": null, - "time": "15:08", - "killer": 2, - "frame": 14536, - "name": null - }, - { - "clock_position": null, - "time": "17:04", - "killer": 3, - "frame": 16398, - "name": null - }, - { - "clock_position": null, - "time": "17:11", - "killer": 3, - "frame": 16503, - "name": null - }, - { - "clock_position": null, - "time": "17:11", - "killer": 3, - "frame": 16511, - "name": null - }, - { - "clock_position": null, - "time": "17:12", - "killer": 3, - "frame": 16519, - "name": null - }, - { - "clock_position": null, - "time": "17:14", - "killer": 3, - "frame": 16551, - "name": null - }, - { - "clock_position": null, - "time": "17:18", - "killer": 3, - "frame": 16623, - "name": null - }, - { - "clock_position": null, - "time": "17:20", - "killer": 4, - "frame": 16646, - "name": null - }, - { - "clock_position": null, - "time": "17:20", - "killer": 4, - "frame": 16650, - "name": null - }, - { - "clock_position": null, - "time": "17:22", - "killer": 4, - "frame": 16682, - "name": null - }, - { - "clock_position": null, - "time": "17:23", - "killer": 3, - "frame": 16701, - "name": null - }, - { - "clock_position": null, - "time": "17:28", - "killer": 4, - "frame": 16774, - "name": null - }, - { - "clock_position": null, - "time": "17:28", - "killer": 3, - "frame": 16778, - "name": null - }, - { - "clock_position": null, - "time": "17:28", - "killer": 4, - "frame": 16780, - "name": null - }, - { - "clock_position": null, - "time": "17:29", - "killer": 4, - "frame": 16792, - "name": null - }, - { - "clock_position": null, - "time": "17:31", - "killer": 4, - "frame": 16821, - "name": null - }, - { - "clock_position": null, - "time": "17:33", - "killer": 3, - "frame": 16859, - "name": null - }, - { - "clock_position": null, - "time": "17:34", - "killer": 4, - "frame": 16872, - "name": "Archon" - }, - { - "clock_position": null, - "time": "17:41", - "killer": 3, - "frame": 16978, - "name": null - }, - { - "clock_position": null, - "time": "17:44", - "killer": 3, - "frame": 17035, - "name": null - }, - { - "clock_position": null, - "time": "17:45", - "killer": 4, - "frame": 17046, - "name": "Archon" - }, - { - "clock_position": null, - "time": "17:53", - "killer": 3, - "frame": 17174, - "name": "Archon" - }, - { - "clock_position": null, - "time": "17:55", - "killer": 3, - "frame": 17209, - "name": null - }, - { - "clock_position": null, - "time": "17:57", - "killer": 4, - "frame": 17246, - "name": null - }, - { - "clock_position": null, - "time": "17:58", - "killer": 4, - "frame": 17262, - "name": null - }, - { - "clock_position": null, - "time": "18:00", - "killer": 4, - "frame": 17286, - "name": null - }, - { - "clock_position": null, - "time": "18:02", - "killer": 4, - "frame": 17322, - "name": "Archon" - }, - { - "clock_position": null, - "time": "18:04", - "killer": 4, - "frame": 17346, - "name": null - }, - { - "clock_position": null, - "time": "18:04", - "killer": 3, - "frame": 17352, - "name": null - }, - { - "clock_position": null, - "time": "18:05", - "killer": 4, - "frame": 17369, - "name": null - }, - { - "clock_position": null, - "time": "18:06", - "killer": 4, - "frame": 17386, - "name": null - }, - { - "clock_position": null, - "time": "18:06", - "killer": 4, - "frame": 17386, - "name": "Probe" - }, - { - "clock_position": null, - "time": "18:07", - "killer": 4, - "frame": 17393, - "name": null - }, - { - "clock_position": null, - "time": "18:07", - "killer": 4, - "frame": 17402, - "name": "Probe" - }, - { - "clock_position": null, - "time": "18:07", - "killer": 4, - "frame": 17407, - "name": null - }, - { - "clock_position": null, - "time": "18:11", - "killer": 4, - "frame": 17456, - "name": null - }, - { - "clock_position": null, - "time": "18:13", - "killer": 4, - "frame": 17491, - "name": null - }, - { - "clock_position": null, - "time": "18:15", - "killer": 4, - "frame": 17534, - "name": null - }, - { - "clock_position": null, - "time": "18:18", - "killer": 4, - "frame": 17576, - "name": null - }, - { - "clock_position": null, - "time": "18:20", - "killer": 4, - "frame": 17611, - "name": null - }, - { - "clock_position": null, - "time": "18:23", - "killer": 4, - "frame": 17659, - "name": null - }, - { - "clock_position": null, - "time": "18:25", - "killer": 4, - "frame": 17680, - "name": null - }, - { - "clock_position": null, - "time": "18:25", - "killer": 4, - "frame": 17688, - "name": null - }, - { - "clock_position": null, - "time": "18:27", - "killer": 4, - "frame": 17724, - "name": null - }, - { - "clock_position": null, - "time": "18:35", - "killer": 4, - "frame": 17848, - "name": null - }, - { - "clock_position": null, - "time": "19:56", - "killer": 4, - "frame": 19145, - "name": null - }, - { - "clock_position": null, - "time": "19:57", - "killer": 4, - "frame": 19152, - "name": null - }, - { - "clock_position": null, - "time": "19:59", - "killer": 4, - "frame": 19188, - "name": null - }, - { - "clock_position": null, - "time": "20:03", - "killer": 4, - "frame": 19263, - "name": null - }, - { - "clock_position": null, - "time": "21:02", - "killer": 2, - "frame": 20192, - "name": null - }, - { - "clock_position": null, - "time": "21:43", - "killer": 3, - "frame": 20852, - "name": null - }, - { - "clock_position": null, - "time": "21:44", - "killer": 3, - "frame": 20869, - "name": null - }, - { - "clock_position": null, - "time": "22:06", - "killer": 2, - "frame": 21223, - "name": null - }, - { - "clock_position": null, - "time": "22:07", - "killer": 2, - "frame": 21234, - "name": null - }, - { - "clock_position": null, - "time": "22:07", - "killer": 2, - "frame": 21243, - "name": null - }, - { - "clock_position": null, - "time": "22:08", - "killer": 2, - "frame": 21252, - "name": null - }, - { - "clock_position": null, - "time": "22:09", - "killer": 2, - "frame": 21275, - "name": null - }, - { - "clock_position": null, - "time": "22:10", - "killer": 2, - "frame": 21280, - "name": null - }, - { - "clock_position": null, - "time": "22:10", - "killer": 2, - "frame": 21287, - "name": null - }, - { - "clock_position": null, - "time": "22:11", - "killer": 2, - "frame": 21299, - "name": null - }, - { - "clock_position": null, - "time": "22:11", - "killer": 4, - "frame": 21308, - "name": null - }, - { - "clock_position": null, - "time": "22:11", - "killer": 4, - "frame": 21309, - "name": null - }, - { - "clock_position": null, - "time": "22:11", - "killer": 4, - "frame": 21311, - "name": null - }, - { - "clock_position": null, - "time": "22:12", - "killer": 4, - "frame": 21323, - "name": null - }, - { - "clock_position": null, - "time": "22:12", - "killer": 2, - "frame": 21327, - "name": null - }, - { - "clock_position": null, - "time": "22:15", - "killer": 2, - "frame": 21365, - "name": null - }, - { - "clock_position": null, - "time": "22:15", - "killer": 2, - "frame": 21368, - "name": null - }, - { - "clock_position": null, - "time": "22:17", - "killer": 2, - "frame": 21396, - "name": null - }, - { - "clock_position": null, - "time": "22:17", - "killer": 2, - "frame": 21397, - "name": null - }, - { - "clock_position": null, - "time": "22:17", - "killer": 2, - "frame": 21400, - "name": null - }, - { - "clock_position": null, - "time": "22:51", - "killer": 4, - "frame": 21943, - "name": null - }, - { - "clock_position": null, - "time": "23:36", - "killer": 2, - "frame": 22659, - "name": null - }, - { - "clock_position": null, - "time": "23:37", - "killer": 4, - "frame": 22685, - "name": null - }, - { - "clock_position": null, - "time": "23:38", - "killer": 4, - "frame": 22691, - "name": null - }, - { - "clock_position": null, - "time": "23:40", - "killer": 4, - "frame": 22730, - "name": null - }, - { - "clock_position": null, - "time": "23:42", - "killer": 4, - "frame": 22761, - "name": null - }, - { - "clock_position": null, - "time": "23:43", - "killer": 4, - "frame": 22771, - "name": null - }, - { - "clock_position": null, - "time": "24:09", - "killer": 2, - "frame": 23190, - "name": null - }, - { - "clock_position": null, - "time": "24:31", - "killer": 3, - "frame": 23538, - "name": null - }, - { - "clock_position": null, - "time": "24:33", - "killer": 3, - "frame": 23572, - "name": null - }, - { - "clock_position": null, - "time": "24:37", - "killer": 3, - "frame": 23644, - "name": null - }, - { - "clock_position": null, - "time": "24:38", - "killer": 3, - "frame": 23654, - "name": null - }, - { - "clock_position": null, - "time": "24:40", - "killer": 3, - "frame": 23691, - "name": null - }, - { - "clock_position": null, - "time": "24:41", - "killer": 3, - "frame": 23697, - "name": null - }, - { - "clock_position": null, - "time": "24:41", - "killer": 3, - "frame": 23710, - "name": null - }, - { - "clock_position": null, - "time": "24:42", - "killer": 3, - "frame": 23725, - "name": null - }, - { - "clock_position": null, - "time": "24:43", - "killer": 3, - "frame": 23735, - "name": null - }, - { - "clock_position": null, - "time": "24:43", - "killer": 3, - "frame": 23739, - "name": null - }, - { - "clock_position": null, - "time": "24:44", - "killer": 3, - "frame": 23753, - "name": null - }, - { - "clock_position": null, - "time": "24:45", - "killer": 3, - "frame": 23775, - "name": null - }, - { - "clock_position": null, - "time": "24:47", - "killer": 3, - "frame": 23798, - "name": null - }, - { - "clock_position": null, - "time": "24:50", - "killer": 3, - "frame": 23853, - "name": null + "frame": 5866, + "killer": 2, + "name": null, + "clock_position": null, + "time": "6:06" + }, + { + "frame": 5897, + "killer": 2, + "name": null, + "clock_position": null, + "time": "6:08" + }, + { + "frame": 5905, + "killer": 2, + "name": null, + "clock_position": null, + "time": "6:09" + }, + { + "frame": 5914, + "killer": 2, + "name": null, + "clock_position": null, + "time": "6:09" + }, + { + "frame": 5960, + "killer": 2, + "name": null, + "clock_position": null, + "time": "6:12" + }, + { + "frame": 5968, + "killer": 2, + "name": null, + "clock_position": null, + "time": "6:13" + }, + { + "frame": 5976, + "killer": 2, + "name": null, + "clock_position": null, + "time": "6:13" + }, + { + "frame": 5992, + "killer": 2, + "name": null, + "clock_position": null, + "time": "6:14" + }, + { + "frame": 6015, + "killer": 2, + "name": null, + "clock_position": null, + "time": "6:15" + }, + { + "frame": 6053, + "killer": 2, + "name": null, + "clock_position": null, + "time": "6:18" + }, + { + "frame": 6070, + "killer": 2, + "name": null, + "clock_position": null, + "time": "6:19" + }, + { + "frame": 7018, + "killer": 4, + "name": null, + "clock_position": null, + "time": "7:18" + }, + { + "frame": 7024, + "killer": 4, + "name": null, + "clock_position": null, + "time": "7:19" + }, + { + "frame": 7145, + "killer": 4, + "name": null, + "clock_position": null, + "time": "7:26" + }, + { + "frame": 7177, + "killer": 3, + "name": null, + "clock_position": null, + "time": "7:28" + }, + { + "frame": 8281, + "killer": 4, + "name": null, + "clock_position": null, + "time": "8:37" + }, + { + "frame": 8368, + "killer": 3, + "name": null, + "clock_position": null, + "time": "8:43" + }, + { + "frame": 8424, + "killer": 4, + "name": null, + "clock_position": null, + "time": "8:46" + }, + { + "frame": 8491, + "killer": 4, + "name": null, + "clock_position": null, + "time": "8:50" + }, + { + "frame": 8508, + "killer": 3, + "name": null, + "clock_position": null, + "time": "8:51" + }, + { + "frame": 8514, + "killer": 4, + "name": null, + "clock_position": null, + "time": "8:52" + }, + { + "frame": 8517, + "killer": 2, + "name": null, + "clock_position": null, + "time": "8:52" + }, + { + "frame": 8644, + "killer": 2, + "name": null, + "clock_position": null, + "time": "9:00" + }, + { + "frame": 8666, + "killer": 4, + "name": null, + "clock_position": null, + "time": "9:01" + }, + { + "frame": 8701, + "killer": 2, + "name": null, + "clock_position": null, + "time": "9:03" + }, + { + "frame": 8744, + "killer": 2, + "name": null, + "clock_position": null, + "time": "9:06" + }, + { + "frame": 8770, + "killer": 2, + "name": null, + "clock_position": null, + "time": "9:08" + }, + { + "frame": 8923, + "killer": 2, + "name": null, + "clock_position": null, + "time": "9:17" + }, + { + "frame": 8928, + "killer": 2, + "name": null, + "clock_position": null, + "time": "9:18" + }, + { + "frame": 8931, + "killer": 2, + "name": null, + "clock_position": null, + "time": "9:18" + }, + { + "frame": 8932, + "killer": 2, + "name": null, + "clock_position": null, + "time": "9:18" + }, + { + "frame": 8958, + "killer": 2, + "name": null, + "clock_position": null, + "time": "9:19" + }, + { + "frame": 8959, + "killer": 2, + "name": null, + "clock_position": null, + "time": "9:19" + }, + { + "frame": 9958, + "killer": 4, + "name": null, + "clock_position": null, + "time": "10:22" + }, + { + "frame": 10006, + "killer": 3, + "name": null, + "clock_position": null, + "time": "10:25" + }, + { + "frame": 10060, + "killer": 3, + "name": null, + "clock_position": null, + "time": "10:28" + }, + { + "frame": 10084, + "killer": 3, + "name": null, + "clock_position": null, + "time": "10:30" + }, + { + "frame": 10125, + "killer": 3, + "name": null, + "clock_position": null, + "time": "10:32" + }, + { + "frame": 10130, + "killer": 3, + "name": null, + "clock_position": null, + "time": "10:33" + }, + { + "frame": 11135, + "killer": 2, + "name": null, + "clock_position": null, + "time": "11:35" + }, + { + "frame": 11141, + "killer": 2, + "name": null, + "clock_position": null, + "time": "11:36" + }, + { + "frame": 11142, + "killer": 3, + "name": null, + "clock_position": null, + "time": "11:36" + }, + { + "frame": 11166, + "killer": 2, + "name": null, + "clock_position": null, + "time": "11:37" + }, + { + "frame": 11170, + "killer": 2, + "name": null, + "clock_position": null, + "time": "11:38" + }, + { + "frame": 11171, + "killer": 2, + "name": null, + "clock_position": null, + "time": "11:38" + }, + { + "frame": 11173, + "killer": 2, + "name": null, + "clock_position": null, + "time": "11:38" + }, + { + "frame": 11186, + "killer": 2, + "name": null, + "clock_position": null, + "time": "11:39" + }, + { + "frame": 11201, + "killer": 2, + "name": null, + "clock_position": null, + "time": "11:40" + }, + { + "frame": 11221, + "killer": 2, + "name": null, + "clock_position": null, + "time": "11:41" + }, + { + "frame": 11228, + "killer": 2, + "name": null, + "clock_position": null, + "time": "11:41" + }, + { + "frame": 11230, + "killer": 2, + "name": null, + "clock_position": null, + "time": "11:41" + }, + { + "frame": 11235, + "killer": 2, + "name": null, + "clock_position": null, + "time": "11:42" + }, + { + "frame": 11239, + "killer": 2, + "name": null, + "clock_position": null, + "time": "11:42" + }, + { + "frame": 11309, + "killer": 2, + "name": null, + "clock_position": null, + "time": "11:46" + }, + { + "frame": 11333, + "killer": 2, + "name": null, + "clock_position": null, + "time": "11:48" + }, + { + "frame": 11364, + "killer": 2, + "name": null, + "clock_position": null, + "time": "11:50" + }, + { + "frame": 11692, + "killer": 2, + "name": null, + "clock_position": null, + "time": "12:10" + }, + { + "frame": 11732, + "killer": 2, + "name": null, + "clock_position": null, + "time": "12:13" + }, + { + "frame": 11744, + "killer": 2, + "name": null, + "clock_position": null, + "time": "12:14" + }, + { + "frame": 11796, + "killer": 2, + "name": null, + "clock_position": null, + "time": "12:17" + }, + { + "frame": 12017, + "killer": 3, + "name": null, + "clock_position": null, + "time": "12:31" + }, + { + "frame": 12068, + "killer": 2, + "name": null, + "clock_position": null, + "time": "12:34" + }, + { + "frame": 12088, + "killer": 3, + "name": null, + "clock_position": null, + "time": "12:35" + }, + { + "frame": 12139, + "killer": 3, + "name": null, + "clock_position": null, + "time": "12:38" + }, + { + "frame": 12330, + "killer": 4, + "name": null, + "clock_position": null, + "time": "12:50" + }, + { + "frame": 12428, + "killer": 4, + "name": null, + "clock_position": null, + "time": "12:56" + }, + { + "frame": 12851, + "killer": 4, + "name": null, + "clock_position": null, + "time": "13:23" + }, + { + "frame": 12859, + "killer": 3, + "name": null, + "clock_position": null, + "time": "13:23" + }, + { + "frame": 12876, + "killer": 4, + "name": null, + "clock_position": null, + "time": "13:24" + }, + { + "frame": 12881, + "killer": 3, + "name": null, + "clock_position": null, + "time": "13:25" + }, + { + "frame": 12894, + "killer": 3, + "name": null, + "clock_position": null, + "time": "13:25" + }, + { + "frame": 12990, + "killer": 3, + "name": null, + "clock_position": null, + "time": "13:31" + }, + { + "frame": 13011, + "killer": 3, + "name": null, + "clock_position": null, + "time": "13:33" + }, + { + "frame": 13016, + "killer": 4, + "name": null, + "clock_position": null, + "time": "13:33" + }, + { + "frame": 13020, + "killer": 4, + "name": null, + "clock_position": null, + "time": "13:33" + }, + { + "frame": 13029, + "killer": 4, + "name": null, + "clock_position": null, + "time": "13:34" + }, + { + "frame": 13043, + "killer": 3, + "name": null, + "clock_position": null, + "time": "13:35" + }, + { + "frame": 13050, + "killer": 3, + "name": null, + "clock_position": null, + "time": "13:35" + }, + { + "frame": 13055, + "killer": 3, + "name": null, + "clock_position": null, + "time": "13:35" + }, + { + "frame": 13072, + "killer": 4, + "name": null, + "clock_position": null, + "time": "13:37" + }, + { + "frame": 13077, + "killer": 3, + "name": null, + "clock_position": null, + "time": "13:37" + }, + { + "frame": 13093, + "killer": 4, + "name": null, + "clock_position": null, + "time": "13:38" + }, + { + "frame": 13119, + "killer": 3, + "name": null, + "clock_position": null, + "time": "13:39" + }, + { + "frame": 13147, + "killer": 3, + "name": null, + "clock_position": null, + "time": "13:41" + }, + { + "frame": 13147, + "killer": 3, + "name": null, + "clock_position": null, + "time": "13:41" + }, + { + "frame": 13187, + "killer": 3, + "name": null, + "clock_position": null, + "time": "13:44" + }, + { + "frame": 13187, + "killer": 3, + "name": null, + "clock_position": null, + "time": "13:44" + }, + { + "frame": 13201, + "killer": 3, + "name": null, + "clock_position": null, + "time": "13:45" + }, + { + "frame": 13278, + "killer": 4, + "name": null, + "clock_position": null, + "time": "13:49" + }, + { + "frame": 13291, + "killer": 4, + "name": null, + "clock_position": null, + "time": "13:50" + }, + { + "frame": 13337, + "killer": 4, + "name": null, + "clock_position": null, + "time": "13:53" + }, + { + "frame": 14306, + "killer": null, + "name": "HighTemplar", + "clock_position": null, + "time": "14:54" + }, + { + "frame": 14306, + "killer": null, + "name": "HighTemplar", + "clock_position": null, + "time": "14:54" + }, + { + "frame": 14308, + "killer": null, + "name": "HighTemplar", + "clock_position": null, + "time": "14:54" + }, + { + "frame": 14308, + "killer": null, + "name": "HighTemplar", + "clock_position": null, + "time": "14:54" + }, + { + "frame": 14316, + "killer": null, + "name": "HighTemplar", + "clock_position": null, + "time": "14:54" + }, + { + "frame": 14316, + "killer": null, + "name": "HighTemplar", + "clock_position": null, + "time": "14:54" + }, + { + "frame": 14330, + "killer": null, + "name": "HighTemplar", + "clock_position": null, + "time": "14:55" + }, + { + "frame": 14330, + "killer": null, + "name": "HighTemplar", + "clock_position": null, + "time": "14:55" + }, + { + "frame": 14343, + "killer": 2, + "name": null, + "clock_position": null, + "time": "14:56" + }, + { + "frame": 14349, + "killer": 2, + "name": null, + "clock_position": null, + "time": "14:56" + }, + { + "frame": 14350, + "killer": 2, + "name": null, + "clock_position": null, + "time": "14:56" + }, + { + "frame": 14352, + "killer": 2, + "name": null, + "clock_position": null, + "time": "14:57" + }, + { + "frame": 14366, + "killer": 2, + "name": null, + "clock_position": null, + "time": "14:57" + }, + { + "frame": 14389, + "killer": 2, + "name": null, + "clock_position": null, + "time": "14:59" + }, + { + "frame": 14420, + "killer": 2, + "name": null, + "clock_position": null, + "time": "15:01" + }, + { + "frame": 14447, + "killer": 2, + "name": null, + "clock_position": null, + "time": "15:02" + }, + { + "frame": 14455, + "killer": 2, + "name": null, + "clock_position": null, + "time": "15:03" + }, + { + "frame": 14459, + "killer": 2, + "name": null, + "clock_position": null, + "time": "15:03" + }, + { + "frame": 14479, + "killer": 2, + "name": null, + "clock_position": null, + "time": "15:04" + }, + { + "frame": 14479, + "killer": 2, + "name": null, + "clock_position": null, + "time": "15:04" + }, + { + "frame": 14489, + "killer": 2, + "name": null, + "clock_position": null, + "time": "15:05" + }, + { + "frame": 14517, + "killer": 2, + "name": null, + "clock_position": null, + "time": "15:07" + }, + { + "frame": 14518, + "killer": 2, + "name": null, + "clock_position": null, + "time": "15:07" + }, + { + "frame": 14523, + "killer": 2, + "name": null, + "clock_position": null, + "time": "15:07" + }, + { + "frame": 14536, + "killer": 2, + "name": null, + "clock_position": null, + "time": "15:08" + }, + { + "frame": 16398, + "killer": 3, + "name": null, + "clock_position": null, + "time": "17:04" + }, + { + "frame": 16503, + "killer": 3, + "name": null, + "clock_position": null, + "time": "17:11" + }, + { + "frame": 16511, + "killer": 3, + "name": null, + "clock_position": null, + "time": "17:11" + }, + { + "frame": 16519, + "killer": 3, + "name": null, + "clock_position": null, + "time": "17:12" + }, + { + "frame": 16551, + "killer": 3, + "name": null, + "clock_position": null, + "time": "17:14" + }, + { + "frame": 16623, + "killer": 3, + "name": null, + "clock_position": null, + "time": "17:18" + }, + { + "frame": 16646, + "killer": 4, + "name": null, + "clock_position": null, + "time": "17:20" + }, + { + "frame": 16650, + "killer": 4, + "name": null, + "clock_position": null, + "time": "17:20" + }, + { + "frame": 16682, + "killer": 4, + "name": null, + "clock_position": null, + "time": "17:22" + }, + { + "frame": 16701, + "killer": 3, + "name": null, + "clock_position": null, + "time": "17:23" + }, + { + "frame": 16774, + "killer": 4, + "name": null, + "clock_position": null, + "time": "17:28" + }, + { + "frame": 16778, + "killer": 3, + "name": null, + "clock_position": null, + "time": "17:28" + }, + { + "frame": 16780, + "killer": 4, + "name": null, + "clock_position": null, + "time": "17:28" + }, + { + "frame": 16792, + "killer": 4, + "name": null, + "clock_position": null, + "time": "17:29" + }, + { + "frame": 16821, + "killer": 4, + "name": null, + "clock_position": null, + "time": "17:31" + }, + { + "frame": 16859, + "killer": 3, + "name": null, + "clock_position": null, + "time": "17:33" + }, + { + "frame": 16872, + "killer": 4, + "name": "Archon", + "clock_position": null, + "time": "17:34" + }, + { + "frame": 16978, + "killer": 3, + "name": null, + "clock_position": null, + "time": "17:41" + }, + { + "frame": 17035, + "killer": 3, + "name": null, + "clock_position": null, + "time": "17:44" + }, + { + "frame": 17046, + "killer": 4, + "name": "Archon", + "clock_position": null, + "time": "17:45" + }, + { + "frame": 17174, + "killer": 3, + "name": "Archon", + "clock_position": null, + "time": "17:53" + }, + { + "frame": 17209, + "killer": 3, + "name": null, + "clock_position": null, + "time": "17:55" + }, + { + "frame": 17246, + "killer": 4, + "name": null, + "clock_position": null, + "time": "17:57" + }, + { + "frame": 17262, + "killer": 4, + "name": null, + "clock_position": null, + "time": "17:58" + }, + { + "frame": 17286, + "killer": 4, + "name": null, + "clock_position": null, + "time": "18:00" + }, + { + "frame": 17322, + "killer": 4, + "name": "Archon", + "clock_position": null, + "time": "18:02" + }, + { + "frame": 17346, + "killer": 4, + "name": null, + "clock_position": null, + "time": "18:04" + }, + { + "frame": 17352, + "killer": 3, + "name": null, + "clock_position": null, + "time": "18:04" + }, + { + "frame": 17369, + "killer": 4, + "name": null, + "clock_position": null, + "time": "18:05" + }, + { + "frame": 17386, + "killer": 4, + "name": null, + "clock_position": null, + "time": "18:06" + }, + { + "frame": 17386, + "killer": 4, + "name": "Probe", + "clock_position": null, + "time": "18:06" + }, + { + "frame": 17393, + "killer": 4, + "name": null, + "clock_position": null, + "time": "18:07" + }, + { + "frame": 17402, + "killer": 4, + "name": "Probe", + "clock_position": null, + "time": "18:07" + }, + { + "frame": 17407, + "killer": 4, + "name": null, + "clock_position": null, + "time": "18:07" + }, + { + "frame": 17456, + "killer": 4, + "name": null, + "clock_position": null, + "time": "18:11" + }, + { + "frame": 17491, + "killer": 4, + "name": null, + "clock_position": null, + "time": "18:13" + }, + { + "frame": 17534, + "killer": 4, + "name": null, + "clock_position": null, + "time": "18:15" + }, + { + "frame": 17576, + "killer": 4, + "name": null, + "clock_position": null, + "time": "18:18" + }, + { + "frame": 17611, + "killer": 4, + "name": null, + "clock_position": null, + "time": "18:20" + }, + { + "frame": 17659, + "killer": 4, + "name": null, + "clock_position": null, + "time": "18:23" + }, + { + "frame": 17680, + "killer": 4, + "name": null, + "clock_position": null, + "time": "18:25" + }, + { + "frame": 17688, + "killer": 4, + "name": null, + "clock_position": null, + "time": "18:25" + }, + { + "frame": 17724, + "killer": 4, + "name": null, + "clock_position": null, + "time": "18:27" + }, + { + "frame": 17848, + "killer": 4, + "name": null, + "clock_position": null, + "time": "18:35" + }, + { + "frame": 19145, + "killer": 4, + "name": null, + "clock_position": null, + "time": "19:56" + }, + { + "frame": 19152, + "killer": 4, + "name": null, + "clock_position": null, + "time": "19:57" + }, + { + "frame": 19188, + "killer": 4, + "name": null, + "clock_position": null, + "time": "19:59" + }, + { + "frame": 19263, + "killer": 4, + "name": null, + "clock_position": null, + "time": "20:03" + }, + { + "frame": 20192, + "killer": 2, + "name": null, + "clock_position": null, + "time": "21:02" + }, + { + "frame": 20852, + "killer": 3, + "name": null, + "clock_position": null, + "time": "21:43" + }, + { + "frame": 20869, + "killer": 3, + "name": null, + "clock_position": null, + "time": "21:44" + }, + { + "frame": 21223, + "killer": 2, + "name": null, + "clock_position": null, + "time": "22:06" + }, + { + "frame": 21234, + "killer": 2, + "name": null, + "clock_position": null, + "time": "22:07" + }, + { + "frame": 21243, + "killer": 2, + "name": null, + "clock_position": null, + "time": "22:07" + }, + { + "frame": 21252, + "killer": 2, + "name": null, + "clock_position": null, + "time": "22:08" + }, + { + "frame": 21275, + "killer": 2, + "name": null, + "clock_position": null, + "time": "22:09" + }, + { + "frame": 21280, + "killer": 2, + "name": null, + "clock_position": null, + "time": "22:10" + }, + { + "frame": 21287, + "killer": 2, + "name": null, + "clock_position": null, + "time": "22:10" + }, + { + "frame": 21299, + "killer": 2, + "name": null, + "clock_position": null, + "time": "22:11" + }, + { + "frame": 21308, + "killer": 4, + "name": null, + "clock_position": null, + "time": "22:11" + }, + { + "frame": 21309, + "killer": 4, + "name": null, + "clock_position": null, + "time": "22:11" + }, + { + "frame": 21311, + "killer": 4, + "name": null, + "clock_position": null, + "time": "22:11" + }, + { + "frame": 21323, + "killer": 4, + "name": null, + "clock_position": null, + "time": "22:12" + }, + { + "frame": 21327, + "killer": 2, + "name": null, + "clock_position": null, + "time": "22:12" + }, + { + "frame": 21365, + "killer": 2, + "name": null, + "clock_position": null, + "time": "22:15" + }, + { + "frame": 21368, + "killer": 2, + "name": null, + "clock_position": null, + "time": "22:15" + }, + { + "frame": 21396, + "killer": 2, + "name": null, + "clock_position": null, + "time": "22:17" + }, + { + "frame": 21397, + "killer": 2, + "name": null, + "clock_position": null, + "time": "22:17" + }, + { + "frame": 21400, + "killer": 2, + "name": null, + "clock_position": null, + "time": "22:17" + }, + { + "frame": 21943, + "killer": 4, + "name": null, + "clock_position": null, + "time": "22:51" + }, + { + "frame": 22659, + "killer": 2, + "name": null, + "clock_position": null, + "time": "23:36" + }, + { + "frame": 22685, + "killer": 4, + "name": null, + "clock_position": null, + "time": "23:37" + }, + { + "frame": 22691, + "killer": 4, + "name": null, + "clock_position": null, + "time": "23:38" + }, + { + "frame": 22730, + "killer": 4, + "name": null, + "clock_position": null, + "time": "23:40" + }, + { + "frame": 22761, + "killer": 4, + "name": null, + "clock_position": null, + "time": "23:42" + }, + { + "frame": 22771, + "killer": 4, + "name": null, + "clock_position": null, + "time": "23:43" + }, + { + "frame": 23190, + "killer": 2, + "name": null, + "clock_position": null, + "time": "24:09" + }, + { + "frame": 23538, + "killer": 3, + "name": null, + "clock_position": null, + "time": "24:31" + }, + { + "frame": 23572, + "killer": 3, + "name": null, + "clock_position": null, + "time": "24:33" + }, + { + "frame": 23644, + "killer": 3, + "name": null, + "clock_position": null, + "time": "24:37" + }, + { + "frame": 23654, + "killer": 3, + "name": null, + "clock_position": null, + "time": "24:38" + }, + { + "frame": 23691, + "killer": 3, + "name": null, + "clock_position": null, + "time": "24:40" + }, + { + "frame": 23697, + "killer": 3, + "name": null, + "clock_position": null, + "time": "24:41" + }, + { + "frame": 23710, + "killer": 3, + "name": null, + "clock_position": null, + "time": "24:41" + }, + { + "frame": 23725, + "killer": 3, + "name": null, + "clock_position": null, + "time": "24:42" + }, + { + "frame": 23735, + "killer": 3, + "name": null, + "clock_position": null, + "time": "24:43" + }, + { + "frame": 23739, + "killer": 3, + "name": null, + "clock_position": null, + "time": "24:43" + }, + { + "frame": 23753, + "killer": 3, + "name": null, + "clock_position": null, + "time": "24:44" + }, + { + "frame": 23775, + "killer": 3, + "name": null, + "clock_position": null, + "time": "24:45" + }, + { + "frame": 23798, + "killer": 3, + "name": null, + "clock_position": null, + "time": "24:47" + }, + { + "frame": 23853, + "killer": 3, + "name": null, + "clock_position": null, + "time": "24:50" } - ], - "abilities": [], - "region": "us", - "race": "Protoss", - "clock_position": null, - "name": "maemar", - "is_winner": false - }, + ], + "race": "Protoss", + "result": "Unknown", + "team": 2, + "uid": 1423109 + }, "3": { "supply": [ [ - 0, + 0, 6 ] - ], - "result": "Unknown", - "uid": 0, - "color": "B4141E", - "is_human": false, - "team": 1, - "level": null, - "pick_race": "Zerg", + ], + "league": null, "buildOrder": [ { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "TerranInfantryWeaponsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "TerranInfantryArmorsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "TerranShipArmorsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "TerranShipWeaponsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "TerranVehicleArmorsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "TerranVehicleWeaponsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ProtossShieldsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ProtossGroundArmorsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ProtossGroundWeaponsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ProtossAirArmorsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ProtossAirWeaponsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ZergMeleeWeaponsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ZergMissileWeaponsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ZergGroundArmorsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ZergFlyerArmorsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ZergFlyerWeaponsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 24, - "is_worker": false, - "time": "0:01", - "is_chronoboosted": false, - "name": "CausticSpray (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 24, - "is_worker": false, - "time": "0:01", - "is_chronoboosted": false, - "name": "CoopAIReaperCost (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 24, - "is_worker": false, - "time": "0:01", - "is_chronoboosted": false, - "name": "CoopAIMutaliskCost (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 30, - "is_worker": false, - "time": "0:01", - "is_chronoboosted": false, - "name": "CreepTumorVisible (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 30, - "is_worker": false, - "time": "0:01", - "is_chronoboosted": false, - "name": "ScienceVesselResearchDefensiveMatrix (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 5854, - "is_worker": false, - "time": "6:05", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 5856, - "is_worker": false, - "time": "6:06", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6507, - "is_worker": false, - "time": "6:46", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6577, - "is_worker": false, - "time": "6:51", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6650, - "is_worker": false, - "time": "6:55", - "is_chronoboosted": false, - "name": "TerranInfantryWeaponsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6650, - "is_worker": false, - "time": "6:55", - "is_chronoboosted": false, - "name": "TerranShipWeaponsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6650, - "is_worker": false, - "time": "6:55", - "is_chronoboosted": false, - "name": "TerranVehicleWeaponsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6650, - "is_worker": false, - "time": "6:55", - "is_chronoboosted": false, - "name": "ProtossGroundWeaponsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6650, - "is_worker": false, - "time": "6:55", - "is_chronoboosted": false, - "name": "ProtossAirWeaponsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6650, - "is_worker": false, - "time": "6:55", - "is_chronoboosted": false, - "name": "ZergMeleeWeaponsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6650, - "is_worker": false, - "time": "6:55", - "is_chronoboosted": false, - "name": "ZergMissileWeaponsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6650, - "is_worker": false, - "time": "6:55", - "is_chronoboosted": false, - "name": "ZergFlyerWeaponsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6798, - "is_worker": false, - "time": "7:04", - "is_chronoboosted": false, - "name": "Blink", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6890, - "is_worker": false, - "time": "7:10", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7059, - "is_worker": false, - "time": "7:21", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7098, - "is_worker": false, - "time": "7:23", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7098, - "is_worker": false, - "time": "7:23", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7098, - "is_worker": false, - "time": "7:23", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7098, - "is_worker": false, - "time": "7:23", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7098, - "is_worker": false, - "time": "7:23", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7098, - "is_worker": false, - "time": "7:23", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7098, - "is_worker": false, - "time": "7:23", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7162, - "is_worker": false, - "time": "7:27", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7162, - "is_worker": false, - "time": "7:27", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7162, - "is_worker": false, - "time": "7:27", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7162, - "is_worker": false, - "time": "7:27", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7162, - "is_worker": false, - "time": "7:27", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7162, - "is_worker": false, - "time": "7:27", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7162, - "is_worker": false, - "time": "7:27", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7162, - "is_worker": false, - "time": "7:27", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7162, - "is_worker": false, - "time": "7:27", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7162, - "is_worker": false, - "time": "7:27", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7162, - "is_worker": false, - "time": "7:27", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7162, - "is_worker": false, - "time": "7:27", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7221, - "is_worker": false, - "time": "7:31", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7326, - "is_worker": false, - "time": "7:37", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7703, - "is_worker": false, - "time": "8:01", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7760, - "is_worker": false, - "time": "8:05", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7930, - "is_worker": false, - "time": "8:15", - "is_chronoboosted": false, - "name": "PsiStormTech", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7930, - "is_worker": false, - "time": "8:15", - "is_chronoboosted": false, - "name": "CentrificalHooks", - "supply": 6 - }, - { - "clock_position": null, - "frame": 8242, - "is_worker": false, - "time": "8:35", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 8245, - "is_worker": false, - "time": "8:35", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 8738, - "is_worker": false, - "time": "9:06", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 8740, - "is_worker": false, - "time": "9:06", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 9223, - "is_worker": false, - "time": "9:36", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 9230, - "is_worker": false, - "time": "9:36", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 9679, - "is_worker": false, - "time": "10:04", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 9685, - "is_worker": false, - "time": "10:05", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 9690, - "is_worker": false, - "time": "10:05", - "is_chronoboosted": false, - "name": "OrbitalRelay (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 9690, - "is_worker": false, - "time": "10:05", - "is_chronoboosted": false, - "name": "CycloneLockOnDamageUpgrade (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 9837, - "is_worker": false, - "time": "10:14", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 9862, - "is_worker": false, - "time": "10:16", - "is_chronoboosted": false, - "name": "BansheeCloak", - "supply": 6 - }, - { - "clock_position": null, - "frame": 9862, - "is_worker": false, - "time": "10:16", - "is_chronoboosted": false, - "name": "TunnelingClaws", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10045, - "is_worker": false, - "time": "10:27", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10045, - "is_worker": false, - "time": "10:27", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10045, - "is_worker": false, - "time": "10:27", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10045, - "is_worker": false, - "time": "10:27", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10045, - "is_worker": false, - "time": "10:27", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10045, - "is_worker": false, - "time": "10:27", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10045, - "is_worker": false, - "time": "10:27", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10109, - "is_worker": false, - "time": "10:31", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10109, - "is_worker": false, - "time": "10:31", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10109, - "is_worker": false, - "time": "10:31", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10109, - "is_worker": false, - "time": "10:31", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10109, - "is_worker": false, - "time": "10:31", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10109, - "is_worker": false, - "time": "10:31", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10109, - "is_worker": false, - "time": "10:31", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10109, - "is_worker": false, - "time": "10:31", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10109, - "is_worker": false, - "time": "10:31", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10109, - "is_worker": false, - "time": "10:31", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10109, - "is_worker": false, - "time": "10:31", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10109, - "is_worker": false, - "time": "10:31", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10273, - "is_worker": false, - "time": "10:42", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11438, - "is_worker": false, - "time": "11:54", - "is_chronoboosted": false, - "name": "TerranInfantryArmorsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11438, - "is_worker": false, - "time": "11:54", - "is_chronoboosted": false, - "name": "TerranShipArmorsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11438, - "is_worker": false, - "time": "11:54", - "is_chronoboosted": false, - "name": "TerranVehicleArmorsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11438, - "is_worker": false, - "time": "11:54", - "is_chronoboosted": false, - "name": "ProtossShieldsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11438, - "is_worker": false, - "time": "11:54", - "is_chronoboosted": false, - "name": "ProtossGroundArmorsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11438, - "is_worker": false, - "time": "11:54", - "is_chronoboosted": false, - "name": "ProtossAirArmorsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11438, - "is_worker": false, - "time": "11:54", - "is_chronoboosted": false, - "name": "ZergGroundArmorsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11438, - "is_worker": false, - "time": "11:54", - "is_chronoboosted": false, - "name": "ZergFlyerArmorsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11622, - "is_worker": false, - "time": "12:06", - "is_chronoboosted": false, - "name": "CorsairDisruptionWeb (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12104, - "is_worker": false, - "time": "12:36", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12106, - "is_worker": false, - "time": "12:36", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12558, - "is_worker": false, - "time": "13:04", - "is_chronoboosted": false, - "name": "PersonalCloaking", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12590, - "is_worker": false, - "time": "13:06", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12622, - "is_worker": false, - "time": "13:08", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12784, - "is_worker": false, - "time": "13:19", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12784, - "is_worker": false, - "time": "13:19", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12784, - "is_worker": false, - "time": "13:19", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12784, - "is_worker": false, - "time": "13:19", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12784, - "is_worker": false, - "time": "13:19", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12784, - "is_worker": false, - "time": "13:19", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12784, - "is_worker": false, - "time": "13:19", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12784, - "is_worker": false, - "time": "13:19", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12992, - "is_worker": false, - "time": "13:32", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12992, - "is_worker": false, - "time": "13:32", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12992, - "is_worker": false, - "time": "13:32", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12992, - "is_worker": false, - "time": "13:32", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12992, - "is_worker": false, - "time": "13:32", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12992, - "is_worker": false, - "time": "13:32", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12992, - "is_worker": false, - "time": "13:32", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12992, - "is_worker": false, - "time": "13:32", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 13220, - "is_worker": false, - "time": "13:46", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 14478, - "is_worker": false, - "time": "15:04", - "is_chronoboosted": false, - "name": "WraithCloak (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 14478, - "is_worker": false, - "time": "15:04", - "is_chronoboosted": false, - "name": "UltraliskBurrowChargeUpgrade (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 14759, - "is_worker": false, - "time": "15:22", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15731, - "is_worker": false, - "time": "16:23", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15731, - "is_worker": false, - "time": "16:23", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15731, - "is_worker": false, - "time": "16:23", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15746, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "TerranInfantryWeaponsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15746, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "TerranShipArmorsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15746, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "TerranShipWeaponsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15746, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "TerranVehicleArmorsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15746, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "TerranVehicleWeaponsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15746, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ProtossShieldsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15746, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ProtossGroundArmorsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15746, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ProtossGroundWeaponsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15746, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ProtossAirArmorsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15746, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ProtossAirWeaponsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15746, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ZergMeleeWeaponsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15746, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ZergMissileWeaponsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15746, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ZergGroundArmorsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15746, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ZergFlyerArmorsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15746, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ZergFlyerWeaponsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15939, - "is_worker": false, - "time": "16:36", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15939, - "is_worker": false, - "time": "16:36", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15939, - "is_worker": false, - "time": "16:36", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15939, - "is_worker": false, - "time": "16:36", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15939, - "is_worker": false, - "time": "16:36", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16003, - "is_worker": false, - "time": "16:40", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16003, - "is_worker": false, - "time": "16:40", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16003, - "is_worker": false, - "time": "16:40", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16003, - "is_worker": false, - "time": "16:40", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16003, - "is_worker": false, - "time": "16:40", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16003, - "is_worker": false, - "time": "16:40", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16003, - "is_worker": false, - "time": "16:40", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16003, - "is_worker": false, - "time": "16:40", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16167, - "is_worker": false, - "time": "16:50", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16337, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16339, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16341, - "is_worker": false, - "time": "17:01", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16419, - "is_worker": false, - "time": "17:06", - "is_chronoboosted": false, - "name": "Archon", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16419, - "is_worker": false, - "time": "17:06", - "is_chronoboosted": false, - "name": "Archon", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16419, - "is_worker": false, - "time": "17:06", - "is_chronoboosted": false, - "name": "Archon", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16984, - "is_worker": false, - "time": "17:41", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17398, - "is_worker": false, - "time": "18:07", - "is_chronoboosted": false, - "name": "Colossus", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17398, - "is_worker": false, - "time": "18:07", - "is_chronoboosted": false, - "name": "Colossus", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17398, - "is_worker": false, - "time": "18:07", - "is_chronoboosted": false, - "name": "Colossus", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17926, - "is_worker": false, - "time": "18:40", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17926, - "is_worker": false, - "time": "18:40", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17926, - "is_worker": false, - "time": "18:40", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17926, - "is_worker": false, - "time": "18:40", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17926, - "is_worker": false, - "time": "18:40", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17990, - "is_worker": false, - "time": "18:44", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17990, - "is_worker": false, - "time": "18:44", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17990, - "is_worker": false, - "time": "18:44", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17990, - "is_worker": false, - "time": "18:44", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17990, - "is_worker": false, - "time": "18:44", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17990, - "is_worker": false, - "time": "18:44", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17990, - "is_worker": false, - "time": "18:44", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17990, - "is_worker": false, - "time": "18:44", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 18154, - "is_worker": false, - "time": "18:54", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 18406, - "is_worker": false, - "time": "19:10", - "is_chronoboosted": false, - "name": "Archon", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19418, - "is_worker": false, - "time": "20:13", - "is_chronoboosted": false, - "name": "Archon", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19705, - "is_worker": false, - "time": "20:31", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19705, - "is_worker": false, - "time": "20:31", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19705, - "is_worker": false, - "time": "20:31", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19705, - "is_worker": false, - "time": "20:31", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19705, - "is_worker": false, - "time": "20:31", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19705, - "is_worker": false, - "time": "20:31", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19705, - "is_worker": false, - "time": "20:31", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19705, - "is_worker": false, - "time": "20:31", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19913, - "is_worker": false, - "time": "20:44", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19913, - "is_worker": false, - "time": "20:44", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19913, - "is_worker": false, - "time": "20:44", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19913, - "is_worker": false, - "time": "20:44", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19913, - "is_worker": false, - "time": "20:44", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19913, - "is_worker": false, - "time": "20:44", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19913, - "is_worker": false, - "time": "20:44", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19913, - "is_worker": false, - "time": "20:44", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 20141, - "is_worker": false, - "time": "20:58", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21372, - "is_worker": false, - "time": "22:15", - "is_chronoboosted": false, - "name": "Colossus", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21372, - "is_worker": false, - "time": "22:15", - "is_chronoboosted": false, - "name": "Colossus", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21372, - "is_worker": false, - "time": "22:15", - "is_chronoboosted": false, - "name": "Colossus", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21372, - "is_worker": false, - "time": "22:15", - "is_chronoboosted": false, - "name": "Colossus", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21692, - "is_worker": false, - "time": "22:35", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21692, - "is_worker": false, - "time": "22:35", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21692, - "is_worker": false, - "time": "22:35", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21692, - "is_worker": false, - "time": "22:35", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21900, - "is_worker": false, - "time": "22:48", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21900, - "is_worker": false, - "time": "22:48", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21900, - "is_worker": false, - "time": "22:48", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21964, - "is_worker": false, - "time": "22:52", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21964, - "is_worker": false, - "time": "22:52", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 22128, - "is_worker": false, - "time": "23:03", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 22128, - "is_worker": false, - "time": "23:03", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 23622, - "is_worker": false, - "time": "24:36", - "is_chronoboosted": false, - "name": "Archon", - "supply": 6 + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "TerranInfantryWeaponsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "TerranInfantryArmorsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "TerranShipArmorsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "TerranShipWeaponsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "TerranVehicleArmorsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "TerranVehicleWeaponsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ProtossShieldsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ProtossGroundArmorsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ProtossGroundWeaponsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ProtossAirArmorsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ProtossAirWeaponsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ZergMeleeWeaponsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ZergMissileWeaponsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ZergGroundArmorsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ZergFlyerArmorsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ZergFlyerWeaponsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "CausticSpray (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 24, + "is_chronoboosted": false, + "time": "0:01" + }, + { + "is_worker": false, + "name": "CoopAIReaperCost (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 24, + "is_chronoboosted": false, + "time": "0:01" + }, + { + "is_worker": false, + "name": "CoopAIMutaliskCost (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 24, + "is_chronoboosted": false, + "time": "0:01" + }, + { + "is_worker": false, + "name": "CreepTumorVisible (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 30, + "is_chronoboosted": false, + "time": "0:01" + }, + { + "is_worker": false, + "name": "ScienceVesselResearchDefensiveMatrix (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 30, + "is_chronoboosted": false, + "time": "0:01" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 5854, + "is_chronoboosted": false, + "time": "6:05" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 5856, + "is_chronoboosted": false, + "time": "6:06" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 6507, + "is_chronoboosted": false, + "time": "6:46" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 6577, + "is_chronoboosted": false, + "time": "6:51" + }, + { + "is_worker": false, + "name": "TerranInfantryWeaponsLevel2", + "clock_position": null, + "supply": 6, + "frame": 6650, + "is_chronoboosted": false, + "time": "6:55" + }, + { + "is_worker": false, + "name": "TerranShipWeaponsLevel2", + "clock_position": null, + "supply": 6, + "frame": 6650, + "is_chronoboosted": false, + "time": "6:55" + }, + { + "is_worker": false, + "name": "TerranVehicleWeaponsLevel2", + "clock_position": null, + "supply": 6, + "frame": 6650, + "is_chronoboosted": false, + "time": "6:55" + }, + { + "is_worker": false, + "name": "ProtossGroundWeaponsLevel2", + "clock_position": null, + "supply": 6, + "frame": 6650, + "is_chronoboosted": false, + "time": "6:55" + }, + { + "is_worker": false, + "name": "ProtossAirWeaponsLevel2", + "clock_position": null, + "supply": 6, + "frame": 6650, + "is_chronoboosted": false, + "time": "6:55" + }, + { + "is_worker": false, + "name": "ZergMeleeWeaponsLevel2", + "clock_position": null, + "supply": 6, + "frame": 6650, + "is_chronoboosted": false, + "time": "6:55" + }, + { + "is_worker": false, + "name": "ZergMissileWeaponsLevel2", + "clock_position": null, + "supply": 6, + "frame": 6650, + "is_chronoboosted": false, + "time": "6:55" + }, + { + "is_worker": false, + "name": "ZergFlyerWeaponsLevel2", + "clock_position": null, + "supply": 6, + "frame": 6650, + "is_chronoboosted": false, + "time": "6:55" + }, + { + "is_worker": false, + "name": "Blink", + "clock_position": null, + "supply": 6, + "frame": 6798, + "is_chronoboosted": false, + "time": "7:04" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 6890, + "is_chronoboosted": false, + "time": "7:10" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7059, + "is_chronoboosted": false, + "time": "7:21" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7098, + "is_chronoboosted": false, + "time": "7:23" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7098, + "is_chronoboosted": false, + "time": "7:23" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7098, + "is_chronoboosted": false, + "time": "7:23" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7098, + "is_chronoboosted": false, + "time": "7:23" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7098, + "is_chronoboosted": false, + "time": "7:23" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7098, + "is_chronoboosted": false, + "time": "7:23" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7098, + "is_chronoboosted": false, + "time": "7:23" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7162, + "is_chronoboosted": false, + "time": "7:27" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7162, + "is_chronoboosted": false, + "time": "7:27" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7162, + "is_chronoboosted": false, + "time": "7:27" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7162, + "is_chronoboosted": false, + "time": "7:27" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7162, + "is_chronoboosted": false, + "time": "7:27" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7162, + "is_chronoboosted": false, + "time": "7:27" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7162, + "is_chronoboosted": false, + "time": "7:27" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7162, + "is_chronoboosted": false, + "time": "7:27" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7162, + "is_chronoboosted": false, + "time": "7:27" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7162, + "is_chronoboosted": false, + "time": "7:27" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7162, + "is_chronoboosted": false, + "time": "7:27" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7162, + "is_chronoboosted": false, + "time": "7:27" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7221, + "is_chronoboosted": false, + "time": "7:31" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 7326, + "is_chronoboosted": false, + "time": "7:37" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7703, + "is_chronoboosted": false, + "time": "8:01" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7760, + "is_chronoboosted": false, + "time": "8:05" + }, + { + "is_worker": false, + "name": "PsiStormTech", + "clock_position": null, + "supply": 6, + "frame": 7930, + "is_chronoboosted": false, + "time": "8:15" + }, + { + "is_worker": false, + "name": "CentrificalHooks", + "clock_position": null, + "supply": 6, + "frame": 7930, + "is_chronoboosted": false, + "time": "8:15" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 8242, + "is_chronoboosted": false, + "time": "8:35" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 8245, + "is_chronoboosted": false, + "time": "8:35" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 8738, + "is_chronoboosted": false, + "time": "9:06" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 8740, + "is_chronoboosted": false, + "time": "9:06" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 9223, + "is_chronoboosted": false, + "time": "9:36" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 9230, + "is_chronoboosted": false, + "time": "9:36" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 9679, + "is_chronoboosted": false, + "time": "10:04" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 9685, + "is_chronoboosted": false, + "time": "10:05" + }, + { + "is_worker": false, + "name": "OrbitalRelay (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 9690, + "is_chronoboosted": false, + "time": "10:05" + }, + { + "is_worker": false, + "name": "CycloneLockOnDamageUpgrade (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 9690, + "is_chronoboosted": false, + "time": "10:05" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 9837, + "is_chronoboosted": false, + "time": "10:14" + }, + { + "is_worker": false, + "name": "BansheeCloak", + "clock_position": null, + "supply": 6, + "frame": 9862, + "is_chronoboosted": false, + "time": "10:16" + }, + { + "is_worker": false, + "name": "TunnelingClaws", + "clock_position": null, + "supply": 6, + "frame": 9862, + "is_chronoboosted": false, + "time": "10:16" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 10045, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 10045, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 10045, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 10045, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 10045, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 10045, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 10045, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10109, + "is_chronoboosted": false, + "time": "10:31" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10109, + "is_chronoboosted": false, + "time": "10:31" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10109, + "is_chronoboosted": false, + "time": "10:31" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10109, + "is_chronoboosted": false, + "time": "10:31" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10109, + "is_chronoboosted": false, + "time": "10:31" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10109, + "is_chronoboosted": false, + "time": "10:31" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10109, + "is_chronoboosted": false, + "time": "10:31" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10109, + "is_chronoboosted": false, + "time": "10:31" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10109, + "is_chronoboosted": false, + "time": "10:31" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10109, + "is_chronoboosted": false, + "time": "10:31" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10109, + "is_chronoboosted": false, + "time": "10:31" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10109, + "is_chronoboosted": false, + "time": "10:31" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 10273, + "is_chronoboosted": false, + "time": "10:42" + }, + { + "is_worker": false, + "name": "TerranInfantryArmorsLevel2", + "clock_position": null, + "supply": 6, + "frame": 11438, + "is_chronoboosted": false, + "time": "11:54" + }, + { + "is_worker": false, + "name": "TerranShipArmorsLevel2", + "clock_position": null, + "supply": 6, + "frame": 11438, + "is_chronoboosted": false, + "time": "11:54" + }, + { + "is_worker": false, + "name": "TerranVehicleArmorsLevel2", + "clock_position": null, + "supply": 6, + "frame": 11438, + "is_chronoboosted": false, + "time": "11:54" + }, + { + "is_worker": false, + "name": "ProtossShieldsLevel2", + "clock_position": null, + "supply": 6, + "frame": 11438, + "is_chronoboosted": false, + "time": "11:54" + }, + { + "is_worker": false, + "name": "ProtossGroundArmorsLevel2", + "clock_position": null, + "supply": 6, + "frame": 11438, + "is_chronoboosted": false, + "time": "11:54" + }, + { + "is_worker": false, + "name": "ProtossAirArmorsLevel2", + "clock_position": null, + "supply": 6, + "frame": 11438, + "is_chronoboosted": false, + "time": "11:54" + }, + { + "is_worker": false, + "name": "ZergGroundArmorsLevel2", + "clock_position": null, + "supply": 6, + "frame": 11438, + "is_chronoboosted": false, + "time": "11:54" + }, + { + "is_worker": false, + "name": "ZergFlyerArmorsLevel2", + "clock_position": null, + "supply": 6, + "frame": 11438, + "is_chronoboosted": false, + "time": "11:54" + }, + { + "is_worker": false, + "name": "CorsairDisruptionWeb (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 11622, + "is_chronoboosted": false, + "time": "12:06" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 12104, + "is_chronoboosted": false, + "time": "12:36" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 12106, + "is_chronoboosted": false, + "time": "12:36" + }, + { + "is_worker": false, + "name": "PersonalCloaking", + "clock_position": null, + "supply": 6, + "frame": 12558, + "is_chronoboosted": false, + "time": "13:04" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 12590, + "is_chronoboosted": false, + "time": "13:06" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 12622, + "is_chronoboosted": false, + "time": "13:08" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 12784, + "is_chronoboosted": false, + "time": "13:19" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 12784, + "is_chronoboosted": false, + "time": "13:19" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 12784, + "is_chronoboosted": false, + "time": "13:19" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 12784, + "is_chronoboosted": false, + "time": "13:19" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 12784, + "is_chronoboosted": false, + "time": "13:19" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 12784, + "is_chronoboosted": false, + "time": "13:19" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 12784, + "is_chronoboosted": false, + "time": "13:19" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 12784, + "is_chronoboosted": false, + "time": "13:19" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 12992, + "is_chronoboosted": false, + "time": "13:32" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 12992, + "is_chronoboosted": false, + "time": "13:32" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 12992, + "is_chronoboosted": false, + "time": "13:32" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 12992, + "is_chronoboosted": false, + "time": "13:32" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 12992, + "is_chronoboosted": false, + "time": "13:32" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 12992, + "is_chronoboosted": false, + "time": "13:32" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 12992, + "is_chronoboosted": false, + "time": "13:32" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 12992, + "is_chronoboosted": false, + "time": "13:32" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 13220, + "is_chronoboosted": false, + "time": "13:46" + }, + { + "is_worker": false, + "name": "WraithCloak (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 14478, + "is_chronoboosted": false, + "time": "15:04" + }, + { + "is_worker": false, + "name": "UltraliskBurrowChargeUpgrade (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 14478, + "is_chronoboosted": false, + "time": "15:04" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 14759, + "is_chronoboosted": false, + "time": "15:22" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 15731, + "is_chronoboosted": false, + "time": "16:23" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 15731, + "is_chronoboosted": false, + "time": "16:23" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 15731, + "is_chronoboosted": false, + "time": "16:23" + }, + { + "is_worker": false, + "name": "TerranInfantryWeaponsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15746, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "TerranShipArmorsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15746, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "TerranShipWeaponsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15746, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "TerranVehicleArmorsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15746, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "TerranVehicleWeaponsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15746, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ProtossShieldsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15746, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ProtossGroundArmorsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15746, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ProtossGroundWeaponsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15746, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ProtossAirArmorsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15746, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ProtossAirWeaponsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15746, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ZergMeleeWeaponsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15746, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ZergMissileWeaponsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15746, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ZergGroundArmorsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15746, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ZergFlyerArmorsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15746, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ZergFlyerWeaponsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15746, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 15939, + "is_chronoboosted": false, + "time": "16:36" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 15939, + "is_chronoboosted": false, + "time": "16:36" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 15939, + "is_chronoboosted": false, + "time": "16:36" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 15939, + "is_chronoboosted": false, + "time": "16:36" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 15939, + "is_chronoboosted": false, + "time": "16:36" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16003, + "is_chronoboosted": false, + "time": "16:40" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16003, + "is_chronoboosted": false, + "time": "16:40" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16003, + "is_chronoboosted": false, + "time": "16:40" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16003, + "is_chronoboosted": false, + "time": "16:40" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16003, + "is_chronoboosted": false, + "time": "16:40" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16003, + "is_chronoboosted": false, + "time": "16:40" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16003, + "is_chronoboosted": false, + "time": "16:40" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16003, + "is_chronoboosted": false, + "time": "16:40" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 16167, + "is_chronoboosted": false, + "time": "16:50" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 16337, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 16339, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 16341, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Archon", + "clock_position": null, + "supply": 6, + "frame": 16419, + "is_chronoboosted": false, + "time": "17:06" + }, + { + "is_worker": false, + "name": "Archon", + "clock_position": null, + "supply": 6, + "frame": 16419, + "is_chronoboosted": false, + "time": "17:06" + }, + { + "is_worker": false, + "name": "Archon", + "clock_position": null, + "supply": 6, + "frame": 16419, + "is_chronoboosted": false, + "time": "17:06" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 16984, + "is_chronoboosted": false, + "time": "17:41" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 6, + "frame": 17398, + "is_chronoboosted": false, + "time": "18:07" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 6, + "frame": 17398, + "is_chronoboosted": false, + "time": "18:07" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 6, + "frame": 17398, + "is_chronoboosted": false, + "time": "18:07" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 17926, + "is_chronoboosted": false, + "time": "18:40" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 17926, + "is_chronoboosted": false, + "time": "18:40" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 17926, + "is_chronoboosted": false, + "time": "18:40" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 17926, + "is_chronoboosted": false, + "time": "18:40" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 17926, + "is_chronoboosted": false, + "time": "18:40" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 17990, + "is_chronoboosted": false, + "time": "18:44" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 17990, + "is_chronoboosted": false, + "time": "18:44" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 17990, + "is_chronoboosted": false, + "time": "18:44" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 17990, + "is_chronoboosted": false, + "time": "18:44" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 17990, + "is_chronoboosted": false, + "time": "18:44" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 17990, + "is_chronoboosted": false, + "time": "18:44" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 17990, + "is_chronoboosted": false, + "time": "18:44" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 17990, + "is_chronoboosted": false, + "time": "18:44" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 18154, + "is_chronoboosted": false, + "time": "18:54" + }, + { + "is_worker": false, + "name": "Archon", + "clock_position": null, + "supply": 6, + "frame": 18406, + "is_chronoboosted": false, + "time": "19:10" + }, + { + "is_worker": false, + "name": "Archon", + "clock_position": null, + "supply": 6, + "frame": 19418, + "is_chronoboosted": false, + "time": "20:13" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 19705, + "is_chronoboosted": false, + "time": "20:31" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 19705, + "is_chronoboosted": false, + "time": "20:31" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 19705, + "is_chronoboosted": false, + "time": "20:31" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 19705, + "is_chronoboosted": false, + "time": "20:31" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 19705, + "is_chronoboosted": false, + "time": "20:31" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 19705, + "is_chronoboosted": false, + "time": "20:31" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 19705, + "is_chronoboosted": false, + "time": "20:31" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 19705, + "is_chronoboosted": false, + "time": "20:31" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19913, + "is_chronoboosted": false, + "time": "20:44" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19913, + "is_chronoboosted": false, + "time": "20:44" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19913, + "is_chronoboosted": false, + "time": "20:44" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19913, + "is_chronoboosted": false, + "time": "20:44" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19913, + "is_chronoboosted": false, + "time": "20:44" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19913, + "is_chronoboosted": false, + "time": "20:44" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19913, + "is_chronoboosted": false, + "time": "20:44" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19913, + "is_chronoboosted": false, + "time": "20:44" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 20141, + "is_chronoboosted": false, + "time": "20:58" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 6, + "frame": 21372, + "is_chronoboosted": false, + "time": "22:15" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 6, + "frame": 21372, + "is_chronoboosted": false, + "time": "22:15" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 6, + "frame": 21372, + "is_chronoboosted": false, + "time": "22:15" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 6, + "frame": 21372, + "is_chronoboosted": false, + "time": "22:15" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 21692, + "is_chronoboosted": false, + "time": "22:35" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 21692, + "is_chronoboosted": false, + "time": "22:35" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 21692, + "is_chronoboosted": false, + "time": "22:35" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 21692, + "is_chronoboosted": false, + "time": "22:35" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 21900, + "is_chronoboosted": false, + "time": "22:48" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 21900, + "is_chronoboosted": false, + "time": "22:48" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 21900, + "is_chronoboosted": false, + "time": "22:48" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 21964, + "is_chronoboosted": false, + "time": "22:52" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 21964, + "is_chronoboosted": false, + "time": "22:52" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 22128, + "is_chronoboosted": false, + "time": "23:03" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 22128, + "is_chronoboosted": false, + "time": "23:03" + }, + { + "is_worker": false, + "name": "Archon", + "clock_position": null, + "supply": 6, + "frame": 23622, + "is_chronoboosted": false, + "time": "24:36" } - ], - "league": null, - "commander": "", - "handicap": 100, + ], + "abilities": [], + "name": "Amon's Forces", + "is_human": false, + "level": null, + "handicap": 100, + "region": "us", + "is_winner": false, + "pick_race": "Zerg", + "clock_position": null, + "commander": "", + "color": "B4141E", "unitsLost": [ { - "clock_position": null, - "time": "6:06", - "killer": 1, - "frame": 5858, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "6:08", - "killer": 2, - "frame": 5888, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "6:08", - "killer": 2, - "frame": 5900, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "6:09", - "killer": 2, - "frame": 5909, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "6:12", - "killer": 1, - "frame": 5956, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "6:12", - "killer": 2, - "frame": 5965, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "6:13", - "killer": 2, - "frame": 5968, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "6:14", - "killer": 2, - "frame": 5988, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "6:15", - "killer": 2, - "frame": 6013, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "6:17", - "killer": 2, - "frame": 6047, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "6:18", - "killer": 2, - "frame": 6061, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "7:14", - "killer": 2, - "frame": 6944, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "7:22", - "killer": 1, - "frame": 7072, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "7:25", - "killer": 1, - "frame": 7128, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "7:26", - "killer": 1, - "frame": 7136, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "7:26", - "killer": 1, - "frame": 7140, - "name": "Sentry" - }, - { - "clock_position": null, - "time": "7:28", - "killer": 2, - "frame": 7170, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "7:29", - "killer": 1, - "frame": 7196, - "name": "Sentry" - }, - { - "clock_position": null, - "time": "7:49", - "killer": 1, - "frame": 7517, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "7:57", - "killer": 1, - "frame": 7634, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "8:29", - "killer": 1, - "frame": 8150, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "10:15", - "killer": 2, - "frame": 9841, - "name": "Archon" - }, - { - "clock_position": null, - "time": "10:17", - "killer": 1, - "frame": 9873, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "10:30", - "killer": 2, - "frame": 10082, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "10:33", - "killer": 1, - "frame": 10137, - "name": null - }, - { - "clock_position": null, - "time": "10:38", - "killer": 2, - "frame": 10209, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "11:06", - "killer": 2, - "frame": 10668, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "11:35", - "killer": 2, - "frame": 11122, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "11:35", - "killer": 1, - "frame": 11130, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "11:35", - "killer": 2, - "frame": 11131, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "11:35", - "killer": 1, - "frame": 11134, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "11:36", - "killer": 1, - "frame": 11142, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "11:36", - "killer": 1, - "frame": 11144, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "11:37", - "killer": 1, - "frame": 11161, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "11:38", - "killer": 1, - "frame": 11171, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "11:38", - "killer": 1, - "frame": 11173, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "11:39", - "killer": 1, - "frame": 11184, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "11:39", - "killer": 1, - "frame": 11198, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "11:40", - "killer": 2, - "frame": 11206, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "11:40", - "killer": 1, - "frame": 11212, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "11:41", - "killer": 2, - "frame": 11222, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "11:41", - "killer": 1, - "frame": 11227, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "11:41", - "killer": 1, - "frame": 11227, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "11:42", - "killer": 1, - "frame": 11237, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "11:44", - "killer": 1, - "frame": 11272, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "11:45", - "killer": 1, - "frame": 11284, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "11:45", - "killer": 2, - "frame": 11292, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "12:23", - "killer": 1, - "frame": 11902, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:37", - "killer": 2, - "frame": 12115, - "name": "Archon" - }, - { - "clock_position": null, - "time": "12:39", - "killer": 2, - "frame": 12148, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:40", - "killer": 2, - "frame": 12161, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:43", - "killer": 2, - "frame": 12218, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "12:47", - "killer": 2, - "frame": 12272, - "name": "Colossus" - }, - { - "clock_position": null, - "time": "12:48", - "killer": 2, - "frame": 12290, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "12:51", - "killer": 2, - "frame": 12348, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "12:59", - "killer": 1, - "frame": 12466, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "13:19", - "killer": 1, - "frame": 12794, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "13:20", - "killer": 1, - "frame": 12810, - "name": "DarkTemplar" - }, - { - "clock_position": null, - "time": "13:21", - "killer": 1, - "frame": 12825, - "name": "Sentry" - }, - { - "clock_position": null, - "time": "13:27", - "killer": 2, - "frame": 12913, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "13:33", - "killer": 2, - "frame": 13010, - "name": null - }, - { - "clock_position": null, - "time": "13:36", - "killer": 2, - "frame": 13057, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "13:37", - "killer": 2, - "frame": 13077, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "13:37", - "killer": 2, - "frame": 13086, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "13:40", - "killer": 1, - "frame": 13123, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "15:48", - "killer": 1, - "frame": 15183, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "15:54", - "killer": 1, - "frame": 15271, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "15:54", - "killer": 1, - "frame": 15275, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "15:55", - "killer": 2, - "frame": 15295, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "15:55", - "killer": 2, - "frame": 15295, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "15:56", - "killer": 1, - "frame": 15304, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "15:56", - "killer": 2, - "frame": 15306, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "15:57", - "killer": 2, - "frame": 15314, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "15:58", - "killer": 2, - "frame": 15329, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "15:58", - "killer": 1, - "frame": 15329, - "name": "Observer" - }, - { - "clock_position": null, - "time": "15:58", - "killer": 1, - "frame": 15339, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "15:59", - "killer": 1, - "frame": 15349, - "name": "Observer" - }, - { - "clock_position": null, - "time": "15:59", - "killer": 1, - "frame": 15353, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "16:00", - "killer": 1, - "frame": 15365, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "16:00", - "killer": 2, - "frame": 15372, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "16:01", - "killer": 1, - "frame": 15376, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "16:01", - "killer": 1, - "frame": 15380, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "16:02", - "killer": 2, - "frame": 15398, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "16:04", - "killer": 2, - "frame": 15428, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "16:04", - "killer": 2, - "frame": 15435, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "16:04", - "killer": 1, - "frame": 15436, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "16:05", - "killer": 1, - "frame": 15450, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "16:07", - "killer": 2, - "frame": 15473, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:09", - "killer": 2, - "frame": 16473, - "name": null - }, - { - "clock_position": null, - "time": "17:12", - "killer": 2, - "frame": 16515, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:14", - "killer": 2, - "frame": 16545, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:15", - "killer": 2, - "frame": 16573, - "name": "VoidRay" - }, - { - "clock_position": null, - "time": "17:19", - "killer": 2, - "frame": 16633, - "name": null - }, - { - "clock_position": null, - "time": "17:21", - "killer": 1, - "frame": 16657, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:22", - "killer": 1, - "frame": 16673, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:23", - "killer": 2, - "frame": 16700, - "name": "VoidRay" - }, - { - "clock_position": null, - "time": "17:27", - "killer": 1, - "frame": 16760, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:29", - "killer": 1, - "frame": 16786, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:32", - "killer": 1, - "frame": 16832, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:33", - "killer": 1, - "frame": 16853, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:33", - "killer": 1, - "frame": 16862, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "17:34", - "killer": 1, - "frame": 16871, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "17:34", - "killer": 1, - "frame": 16871, - "name": "Observer" - }, - { - "clock_position": null, - "time": "17:34", - "killer": 1, - "frame": 16871, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "17:34", - "killer": 1, - "frame": 16872, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:34", - "killer": 1, - "frame": 16873, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:34", - "killer": 1, - "frame": 16873, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:34", - "killer": 1, - "frame": 16873, - "name": "Sentry" - }, - { - "clock_position": null, - "time": "17:34", - "killer": 1, - "frame": 16874, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:35", - "killer": 1, - "frame": 16881, - "name": "DarkTemplar" - }, - { - "clock_position": null, - "time": "17:35", - "killer": 1, - "frame": 16894, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "17:37", - "killer": 1, - "frame": 16920, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "17:38", - "killer": 1, - "frame": 16928, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "17:38", - "killer": 1, - "frame": 16940, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "17:39", - "killer": 1, - "frame": 16949, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "17:39", - "killer": 1, - "frame": 16955, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "17:40", - "killer": 1, - "frame": 16964, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:40", - "killer": 1, - "frame": 16964, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:41", - "killer": 1, - "frame": 16979, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:43", - "killer": 1, - "frame": 17008, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "17:45", - "killer": 1, - "frame": 17047, - "name": "DarkTemplar" - }, - { - "clock_position": null, - "time": "17:46", - "killer": 1, - "frame": 17063, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "17:48", - "killer": 1, - "frame": 17088, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "17:49", - "killer": 1, - "frame": 17107, - "name": "Colossus" - }, - { - "clock_position": null, - "time": "17:50", - "killer": 1, - "frame": 17135, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "17:53", - "killer": 2, - "frame": 17168, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "17:54", - "killer": 1, - "frame": 17199, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "17:55", - "killer": 1, - "frame": 17200, - "name": "WarpGate" - }, - { - "clock_position": null, - "time": "17:55", - "killer": 2, - "frame": 17201, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:56", - "killer": 1, - "frame": 17217, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "17:56", - "killer": 1, - "frame": 17218, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "17:57", - "killer": 1, - "frame": 17233, - "name": "WarpGate" - }, - { - "clock_position": null, - "time": "18:01", - "killer": 2, - "frame": 17297, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "18:06", - "killer": 2, - "frame": 17389, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "18:59", - "killer": 1, - "frame": 18232, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "19:00", - "killer": 1, - "frame": 18255, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "19:02", - "killer": 1, - "frame": 18277, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "19:02", - "killer": 1, - "frame": 18277, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "19:07", - "killer": 1, - "frame": 18358, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "19:09", - "killer": 1, - "frame": 18388, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "19:10", - "killer": 1, - "frame": 18400, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "19:10", - "killer": 1, - "frame": 18401, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "19:12", - "killer": 1, - "frame": 18438, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "19:14", - "killer": 1, - "frame": 18465, - "name": "Carrier" - }, - { - "clock_position": null, - "time": "19:14", - "killer": 1, - "frame": 18473, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "19:42", - "killer": 1, - "frame": 18918, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "19:44", - "killer": 1, - "frame": 18954, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "19:55", - "killer": 1, - "frame": 19123, - "name": "Observer" - }, - { - "clock_position": null, - "time": "20:13", - "killer": 2, - "frame": 19409, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "20:13", - "killer": 1, - "frame": 19416, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "20:13", - "killer": 2, - "frame": 19423, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "20:14", - "killer": 1, - "frame": 19428, - "name": "Archon" - }, - { - "clock_position": null, - "time": "20:14", - "killer": 1, - "frame": 19438, - "name": "Archon" - }, - { - "clock_position": null, - "time": "20:15", - "killer": 2, - "frame": 19442, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "20:15", - "killer": 1, - "frame": 19455, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "20:15", - "killer": 1, - "frame": 19455, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "20:16", - "killer": 1, - "frame": 19458, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "20:16", - "killer": 1, - "frame": 19466, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "20:16", - "killer": 1, - "frame": 19469, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "20:17", - "killer": 1, - "frame": 19472, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "20:17", - "killer": 1, - "frame": 19478, - "name": "Archon" - }, - { - "clock_position": null, - "time": "20:18", - "killer": 1, - "frame": 19492, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "20:18", - "killer": 2, - "frame": 19499, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "20:19", - "killer": 1, - "frame": 19514, - "name": "Archon" - }, - { - "clock_position": null, - "time": "20:19", - "killer": null, - "frame": 19514, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "20:19", - "killer": null, - "frame": 19514, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "21:38", - "killer": 2, - "frame": 20769, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "21:38", - "killer": 1, - "frame": 20772, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "21:39", - "killer": 1, - "frame": 20785, - "name": "Colossus" - }, - { - "clock_position": null, - "time": "21:39", - "killer": 1, - "frame": 20792, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "21:39", - "killer": 1, - "frame": 20793, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "21:40", - "killer": 1, - "frame": 20805, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "21:40", - "killer": 2, - "frame": 20805, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "21:42", - "killer": 2, - "frame": 20836, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "21:42", - "killer": 2, - "frame": 20836, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "21:43", - "killer": 1, - "frame": 20849, - "name": "Archon" - }, - { - "clock_position": null, - "time": "21:43", - "killer": 1, - "frame": 20862, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "21:44", - "killer": 1, - "frame": 20869, - "name": "Colossus" - }, - { - "clock_position": null, - "time": "21:44", - "killer": 2, - "frame": 20876, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "21:47", - "killer": 2, - "frame": 20912, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "21:47", - "killer": 2, - "frame": 20914, - "name": "Colossus" - }, - { - "clock_position": null, - "time": "21:49", - "killer": 2, - "frame": 20947, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "21:50", - "killer": 2, - "frame": 20968, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "22:41", - "killer": 1, - "frame": 21785, - "name": "Sentry" - }, - { - "clock_position": null, - "time": "22:41", - "killer": 1, - "frame": 21787, - "name": "Sentry" - }, - { - "clock_position": null, - "time": "22:52", - "killer": 1, - "frame": 21960, - "name": "Carrier" - }, - { - "clock_position": null, - "time": "22:53", - "killer": 1, - "frame": 21978, - "name": "Colossus" - }, - { - "clock_position": null, - "time": "22:54", - "killer": 1, - "frame": 21987, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:55", - "killer": 1, - "frame": 22007, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:56", - "killer": 1, - "frame": 22019, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:57", - "killer": 2, - "frame": 22036, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:57", - "killer": 2, - "frame": 22039, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "22:57", - "killer": 2, - "frame": 22046, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:59", - "killer": 1, - "frame": 22064, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "23:01", - "killer": 1, - "frame": 22098, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "23:01", - "killer": 1, - "frame": 22108, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "23:02", - "killer": 2, - "frame": 22122, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "23:03", - "killer": 1, - "frame": 22139, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "23:04", - "killer": 1, - "frame": 22158, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "23:04", - "killer": 1, - "frame": 22159, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "23:06", - "killer": 1, - "frame": 22191, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "23:08", - "killer": 1, - "frame": 22221, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "23:10", - "killer": 1, - "frame": 22254, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "23:11", - "killer": 1, - "frame": 22265, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "23:12", - "killer": 1, - "frame": 22280, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "23:17", - "killer": 1, - "frame": 22358, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "23:17", - "killer": 2, - "frame": 22365, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "23:20", - "killer": 1, - "frame": 22404, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "24:20", - "killer": 1, - "frame": 23367, - "name": "DarkTemplar" - }, - { - "clock_position": null, - "time": "24:22", - "killer": 1, - "frame": 23405, - "name": "DarkTemplar" - }, - { - "clock_position": null, - "time": "24:23", - "killer": 1, - "frame": 23414, - "name": "WarpGate" - }, - { - "clock_position": null, - "time": "24:23", - "killer": 1, - "frame": 23415, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "24:24", - "killer": 2, - "frame": 23438, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "24:30", - "killer": 2, - "frame": 23533, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "24:31", - "killer": 2, - "frame": 23538, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "24:33", - "killer": 2, - "frame": 23571, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "24:34", - "killer": 2, - "frame": 23588, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "24:35", - "killer": 1, - "frame": 23602, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "24:35", - "killer": 2, - "frame": 23610, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "24:36", - "killer": 2, - "frame": 23628, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "24:39", - "killer": 2, - "frame": 23670, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "24:39", - "killer": 2, - "frame": 23670, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "24:43", - "killer": 2, - "frame": 23740, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "24:46", - "killer": 2, - "frame": 23778, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "24:47", - "killer": 2, - "frame": 23800, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "24:48", - "killer": null, - "frame": 23814, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "24:48", - "killer": null, - "frame": 23814, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "24:49", - "killer": 2, - "frame": 23830, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "24:50", - "killer": 2, - "frame": 23849, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "24:50", - "killer": 2, - "frame": 23854, - "name": "Archon" - }, - { - "clock_position": null, - "time": "24:59", - "killer": 2, - "frame": 23984, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "25:00", - "killer": 2, - "frame": 24009, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "25:00", - "killer": 2, - "frame": 24011, - "name": "Observer" + "frame": 5858, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "6:06" + }, + { + "frame": 5888, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "6:08" + }, + { + "frame": 5900, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "6:08" + }, + { + "frame": 5909, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "6:09" + }, + { + "frame": 5956, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "6:12" + }, + { + "frame": 5965, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "6:12" + }, + { + "frame": 5968, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "6:13" + }, + { + "frame": 5988, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "6:14" + }, + { + "frame": 6013, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "6:15" + }, + { + "frame": 6047, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "6:17" + }, + { + "frame": 6061, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "6:18" + }, + { + "frame": 6944, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "7:14" + }, + { + "frame": 7072, + "killer": 1, + "name": "Immortal", + "clock_position": null, + "time": "7:22" + }, + { + "frame": 7128, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "7:25" + }, + { + "frame": 7136, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "7:26" + }, + { + "frame": 7140, + "killer": 1, + "name": "Sentry", + "clock_position": null, + "time": "7:26" + }, + { + "frame": 7170, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "7:28" + }, + { + "frame": 7196, + "killer": 1, + "name": "Sentry", + "clock_position": null, + "time": "7:29" + }, + { + "frame": 7517, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "7:49" + }, + { + "frame": 7634, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "7:57" + }, + { + "frame": 8150, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "8:29" + }, + { + "frame": 9841, + "killer": 2, + "name": "Archon", + "clock_position": null, + "time": "10:15" + }, + { + "frame": 9873, + "killer": 1, + "name": "Immortal", + "clock_position": null, + "time": "10:17" + }, + { + "frame": 10082, + "killer": 2, + "name": "HighTemplar", + "clock_position": null, + "time": "10:30" + }, + { + "frame": 10137, + "killer": 1, + "name": null, + "clock_position": null, + "time": "10:33" + }, + { + "frame": 10209, + "killer": 2, + "name": "Immortal", + "clock_position": null, + "time": "10:38" + }, + { + "frame": 10668, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "11:06" + }, + { + "frame": 11122, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "11:35" + }, + { + "frame": 11130, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "11:35" + }, + { + "frame": 11131, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "11:35" + }, + { + "frame": 11134, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "11:35" + }, + { + "frame": 11142, + "killer": 1, + "name": "HighTemplar", + "clock_position": null, + "time": "11:36" + }, + { + "frame": 11144, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "11:36" + }, + { + "frame": 11161, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "11:37" + }, + { + "frame": 11171, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "11:38" + }, + { + "frame": 11173, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "11:38" + }, + { + "frame": 11184, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "11:39" + }, + { + "frame": 11198, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "11:39" + }, + { + "frame": 11206, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "11:40" + }, + { + "frame": 11212, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "11:40" + }, + { + "frame": 11222, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "11:41" + }, + { + "frame": 11227, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "11:41" + }, + { + "frame": 11227, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "11:41" + }, + { + "frame": 11237, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "11:42" + }, + { + "frame": 11272, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "11:44" + }, + { + "frame": 11284, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "11:45" + }, + { + "frame": 11292, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "11:45" + }, + { + "frame": 11902, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "12:23" + }, + { + "frame": 12115, + "killer": 2, + "name": "Archon", + "clock_position": null, + "time": "12:37" + }, + { + "frame": 12148, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "12:39" + }, + { + "frame": 12161, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "12:40" + }, + { + "frame": 12218, + "killer": 2, + "name": "PhotonCannon", + "clock_position": null, + "time": "12:43" + }, + { + "frame": 12272, + "killer": 2, + "name": "Colossus", + "clock_position": null, + "time": "12:47" + }, + { + "frame": 12290, + "killer": 2, + "name": "PhotonCannon", + "clock_position": null, + "time": "12:48" + }, + { + "frame": 12348, + "killer": 2, + "name": "Pylon", + "clock_position": null, + "time": "12:51" + }, + { + "frame": 12466, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "12:59" + }, + { + "frame": 12794, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "13:19" + }, + { + "frame": 12810, + "killer": 1, + "name": "DarkTemplar", + "clock_position": null, + "time": "13:20" + }, + { + "frame": 12825, + "killer": 1, + "name": "Sentry", + "clock_position": null, + "time": "13:21" + }, + { + "frame": 12913, + "killer": 2, + "name": "PhotonCannon", + "clock_position": null, + "time": "13:27" + }, + { + "frame": 13010, + "killer": 2, + "name": null, + "clock_position": null, + "time": "13:33" + }, + { + "frame": 13057, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "13:36" + }, + { + "frame": 13077, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "13:37" + }, + { + "frame": 13086, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "13:37" + }, + { + "frame": 13123, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "13:40" + }, + { + "frame": 15183, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "15:48" + }, + { + "frame": 15271, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "15:54" + }, + { + "frame": 15275, + "killer": 1, + "name": "HighTemplar", + "clock_position": null, + "time": "15:54" + }, + { + "frame": 15295, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "15:55" + }, + { + "frame": 15295, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "15:55" + }, + { + "frame": 15304, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "15:56" + }, + { + "frame": 15306, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "15:56" + }, + { + "frame": 15314, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "15:57" + }, + { + "frame": 15329, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "15:58" + }, + { + "frame": 15329, + "killer": 1, + "name": "Observer", + "clock_position": null, + "time": "15:58" + }, + { + "frame": 15339, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "15:58" + }, + { + "frame": 15349, + "killer": 1, + "name": "Observer", + "clock_position": null, + "time": "15:59" + }, + { + "frame": 15353, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "15:59" + }, + { + "frame": 15365, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "16:00" + }, + { + "frame": 15372, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "16:00" + }, + { + "frame": 15376, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "16:01" + }, + { + "frame": 15380, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "16:01" + }, + { + "frame": 15398, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "16:02" + }, + { + "frame": 15428, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "16:04" + }, + { + "frame": 15435, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "16:04" + }, + { + "frame": 15436, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "16:04" + }, + { + "frame": 15450, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "16:05" + }, + { + "frame": 15473, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "16:07" + }, + { + "frame": 16473, + "killer": 2, + "name": null, + "clock_position": null, + "time": "17:09" + }, + { + "frame": 16515, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "17:12" + }, + { + "frame": 16545, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "17:14" + }, + { + "frame": 16573, + "killer": 2, + "name": "VoidRay", + "clock_position": null, + "time": "17:15" + }, + { + "frame": 16633, + "killer": 2, + "name": null, + "clock_position": null, + "time": "17:19" + }, + { + "frame": 16657, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:21" + }, + { + "frame": 16673, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:22" + }, + { + "frame": 16700, + "killer": 2, + "name": "VoidRay", + "clock_position": null, + "time": "17:23" + }, + { + "frame": 16760, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:27" + }, + { + "frame": 16786, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:29" + }, + { + "frame": 16832, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:32" + }, + { + "frame": 16853, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:33" + }, + { + "frame": 16862, + "killer": 1, + "name": "HighTemplar", + "clock_position": null, + "time": "17:33" + }, + { + "frame": 16871, + "killer": 1, + "name": "HighTemplar", + "clock_position": null, + "time": "17:34" + }, + { + "frame": 16871, + "killer": 1, + "name": "Observer", + "clock_position": null, + "time": "17:34" + }, + { + "frame": 16871, + "killer": 1, + "name": "HighTemplar", + "clock_position": null, + "time": "17:34" + }, + { + "frame": 16872, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:34" + }, + { + "frame": 16873, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:34" + }, + { + "frame": 16873, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:34" + }, + { + "frame": 16873, + "killer": 1, + "name": "Sentry", + "clock_position": null, + "time": "17:34" + }, + { + "frame": 16874, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:34" + }, + { + "frame": 16881, + "killer": 1, + "name": "DarkTemplar", + "clock_position": null, + "time": "17:35" + }, + { + "frame": 16894, + "killer": 1, + "name": "Immortal", + "clock_position": null, + "time": "17:35" + }, + { + "frame": 16920, + "killer": 1, + "name": "Immortal", + "clock_position": null, + "time": "17:37" + }, + { + "frame": 16928, + "killer": 1, + "name": "Immortal", + "clock_position": null, + "time": "17:38" + }, + { + "frame": 16940, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "17:38" + }, + { + "frame": 16949, + "killer": 1, + "name": "Immortal", + "clock_position": null, + "time": "17:39" + }, + { + "frame": 16955, + "killer": 1, + "name": "Immortal", + "clock_position": null, + "time": "17:39" + }, + { + "frame": 16964, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:40" + }, + { + "frame": 16964, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:40" + }, + { + "frame": 16979, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:41" + }, + { + "frame": 17008, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "17:43" + }, + { + "frame": 17047, + "killer": 1, + "name": "DarkTemplar", + "clock_position": null, + "time": "17:45" + }, + { + "frame": 17063, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "17:46" + }, + { + "frame": 17088, + "killer": 1, + "name": "Pylon", + "clock_position": null, + "time": "17:48" + }, + { + "frame": 17107, + "killer": 1, + "name": "Colossus", + "clock_position": null, + "time": "17:49" + }, + { + "frame": 17135, + "killer": 1, + "name": "Pylon", + "clock_position": null, + "time": "17:50" + }, + { + "frame": 17168, + "killer": 2, + "name": "Pylon", + "clock_position": null, + "time": "17:53" + }, + { + "frame": 17199, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "17:54" + }, + { + "frame": 17200, + "killer": 1, + "name": "WarpGate", + "clock_position": null, + "time": "17:55" + }, + { + "frame": 17201, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "17:55" + }, + { + "frame": 17217, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "17:56" + }, + { + "frame": 17218, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "17:56" + }, + { + "frame": 17233, + "killer": 1, + "name": "WarpGate", + "clock_position": null, + "time": "17:57" + }, + { + "frame": 17297, + "killer": 2, + "name": "Pylon", + "clock_position": null, + "time": "18:01" + }, + { + "frame": 17389, + "killer": 2, + "name": "Pylon", + "clock_position": null, + "time": "18:06" + }, + { + "frame": 18232, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "18:59" + }, + { + "frame": 18255, + "killer": 1, + "name": "HighTemplar", + "clock_position": null, + "time": "19:00" + }, + { + "frame": 18277, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "19:02" + }, + { + "frame": 18277, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "19:02" + }, + { + "frame": 18358, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "19:07" + }, + { + "frame": 18388, + "killer": 1, + "name": "Pylon", + "clock_position": null, + "time": "19:09" + }, + { + "frame": 18400, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "19:10" + }, + { + "frame": 18401, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "19:10" + }, + { + "frame": 18438, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "19:12" + }, + { + "frame": 18465, + "killer": 1, + "name": "Carrier", + "clock_position": null, + "time": "19:14" + }, + { + "frame": 18473, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "19:14" + }, + { + "frame": 18918, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "19:42" + }, + { + "frame": 18954, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "19:44" + }, + { + "frame": 19123, + "killer": 1, + "name": "Observer", + "clock_position": null, + "time": "19:55" + }, + { + "frame": 19409, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "20:13" + }, + { + "frame": 19416, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "20:13" + }, + { + "frame": 19423, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "20:13" + }, + { + "frame": 19428, + "killer": 1, + "name": "Archon", + "clock_position": null, + "time": "20:14" + }, + { + "frame": 19438, + "killer": 1, + "name": "Archon", + "clock_position": null, + "time": "20:14" + }, + { + "frame": 19442, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "20:15" + }, + { + "frame": 19455, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "20:15" + }, + { + "frame": 19455, + "killer": 1, + "name": "HighTemplar", + "clock_position": null, + "time": "20:15" + }, + { + "frame": 19458, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "20:16" + }, + { + "frame": 19466, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "20:16" + }, + { + "frame": 19469, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "20:16" + }, + { + "frame": 19472, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "20:17" + }, + { + "frame": 19478, + "killer": 1, + "name": "Archon", + "clock_position": null, + "time": "20:17" + }, + { + "frame": 19492, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "20:18" + }, + { + "frame": 19499, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "20:18" + }, + { + "frame": 19514, + "killer": 1, + "name": "Archon", + "clock_position": null, + "time": "20:19" + }, + { + "frame": 19514, + "killer": null, + "name": "HighTemplar", + "clock_position": null, + "time": "20:19" + }, + { + "frame": 19514, + "killer": null, + "name": "HighTemplar", + "clock_position": null, + "time": "20:19" + }, + { + "frame": 20769, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "21:38" + }, + { + "frame": 20772, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "21:38" + }, + { + "frame": 20785, + "killer": 1, + "name": "Colossus", + "clock_position": null, + "time": "21:39" + }, + { + "frame": 20792, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "21:39" + }, + { + "frame": 20793, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "21:39" + }, + { + "frame": 20805, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "21:40" + }, + { + "frame": 20805, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "21:40" + }, + { + "frame": 20836, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "21:42" + }, + { + "frame": 20836, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "21:42" + }, + { + "frame": 20849, + "killer": 1, + "name": "Archon", + "clock_position": null, + "time": "21:43" + }, + { + "frame": 20862, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "21:43" + }, + { + "frame": 20869, + "killer": 1, + "name": "Colossus", + "clock_position": null, + "time": "21:44" + }, + { + "frame": 20876, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "21:44" + }, + { + "frame": 20912, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "21:47" + }, + { + "frame": 20914, + "killer": 2, + "name": "Colossus", + "clock_position": null, + "time": "21:47" + }, + { + "frame": 20947, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "21:49" + }, + { + "frame": 20968, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "21:50" + }, + { + "frame": 21785, + "killer": 1, + "name": "Sentry", + "clock_position": null, + "time": "22:41" + }, + { + "frame": 21787, + "killer": 1, + "name": "Sentry", + "clock_position": null, + "time": "22:41" + }, + { + "frame": 21960, + "killer": 1, + "name": "Carrier", + "clock_position": null, + "time": "22:52" + }, + { + "frame": 21978, + "killer": 1, + "name": "Colossus", + "clock_position": null, + "time": "22:53" + }, + { + "frame": 21987, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "22:54" + }, + { + "frame": 22007, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "22:55" + }, + { + "frame": 22019, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "22:56" + }, + { + "frame": 22036, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "22:57" + }, + { + "frame": 22039, + "killer": 2, + "name": "Immortal", + "clock_position": null, + "time": "22:57" + }, + { + "frame": 22046, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "22:57" + }, + { + "frame": 22064, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "22:59" + }, + { + "frame": 22098, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "23:01" + }, + { + "frame": 22108, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "23:01" + }, + { + "frame": 22122, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "23:02" + }, + { + "frame": 22139, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "23:03" + }, + { + "frame": 22158, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "23:04" + }, + { + "frame": 22159, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "23:04" + }, + { + "frame": 22191, + "killer": 1, + "name": "Pylon", + "clock_position": null, + "time": "23:06" + }, + { + "frame": 22221, + "killer": 1, + "name": "Immortal", + "clock_position": null, + "time": "23:08" + }, + { + "frame": 22254, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "23:10" + }, + { + "frame": 22265, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "23:11" + }, + { + "frame": 22280, + "killer": 1, + "name": "Pylon", + "clock_position": null, + "time": "23:12" + }, + { + "frame": 22358, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "23:17" + }, + { + "frame": 22365, + "killer": 2, + "name": "PhotonCannon", + "clock_position": null, + "time": "23:17" + }, + { + "frame": 22404, + "killer": 1, + "name": "Pylon", + "clock_position": null, + "time": "23:20" + }, + { + "frame": 23367, + "killer": 1, + "name": "DarkTemplar", + "clock_position": null, + "time": "24:20" + }, + { + "frame": 23405, + "killer": 1, + "name": "DarkTemplar", + "clock_position": null, + "time": "24:22" + }, + { + "frame": 23414, + "killer": 1, + "name": "WarpGate", + "clock_position": null, + "time": "24:23" + }, + { + "frame": 23415, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "24:23" + }, + { + "frame": 23438, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "24:24" + }, + { + "frame": 23533, + "killer": 2, + "name": "Pylon", + "clock_position": null, + "time": "24:30" + }, + { + "frame": 23538, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "24:31" + }, + { + "frame": 23571, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "24:33" + }, + { + "frame": 23588, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "24:34" + }, + { + "frame": 23602, + "killer": 1, + "name": "Pylon", + "clock_position": null, + "time": "24:35" + }, + { + "frame": 23610, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "24:35" + }, + { + "frame": 23628, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "24:36" + }, + { + "frame": 23670, + "killer": 2, + "name": "HighTemplar", + "clock_position": null, + "time": "24:39" + }, + { + "frame": 23670, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "24:39" + }, + { + "frame": 23740, + "killer": 2, + "name": "Immortal", + "clock_position": null, + "time": "24:43" + }, + { + "frame": 23778, + "killer": 2, + "name": "Immortal", + "clock_position": null, + "time": "24:46" + }, + { + "frame": 23800, + "killer": 2, + "name": "Immortal", + "clock_position": null, + "time": "24:47" + }, + { + "frame": 23814, + "killer": null, + "name": "HighTemplar", + "clock_position": null, + "time": "24:48" + }, + { + "frame": 23814, + "killer": null, + "name": "HighTemplar", + "clock_position": null, + "time": "24:48" + }, + { + "frame": 23830, + "killer": 2, + "name": "Immortal", + "clock_position": null, + "time": "24:49" + }, + { + "frame": 23849, + "killer": 2, + "name": "Immortal", + "clock_position": null, + "time": "24:50" + }, + { + "frame": 23854, + "killer": 2, + "name": "Archon", + "clock_position": null, + "time": "24:50" + }, + { + "frame": 23984, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "24:59" + }, + { + "frame": 24009, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "25:00" + }, + { + "frame": 24011, + "killer": 2, + "name": "Observer", + "clock_position": null, + "time": "25:00" } - ], - "abilities": [], - "region": "us", - "race": "Protoss", - "clock_position": null, - "name": "Amon's Forces", - "is_winner": false - }, + ], + "race": "Protoss", + "result": "Unknown", + "team": 1, + "uid": 0 + }, "4": { "supply": [ [ - 0, + 0, 6 ] - ], - "result": "Unknown", - "uid": 0, - "color": "B4141E", - "is_human": false, - "team": 2, - "level": null, - "pick_race": "Terran", + ], + "league": null, "buildOrder": [ { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "TerranInfantryWeaponsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "TerranInfantryArmorsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "TerranShipArmorsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "TerranShipWeaponsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "TerranVehicleArmorsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "TerranVehicleWeaponsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ProtossShieldsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ProtossGroundArmorsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ProtossGroundWeaponsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ProtossAirArmorsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ProtossAirWeaponsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ZergMeleeWeaponsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ZergMissileWeaponsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ZergGroundArmorsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ZergFlyerArmorsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 1, - "is_worker": false, - "time": "0:00", - "is_chronoboosted": false, - "name": "ZergFlyerWeaponsLevel1", - "supply": 6 - }, - { - "clock_position": null, - "frame": 24, - "is_worker": false, - "time": "0:01", - "is_chronoboosted": false, - "name": "CausticSpray (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 24, - "is_worker": false, - "time": "0:01", - "is_chronoboosted": false, - "name": "CoopAIReaperCost (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 24, - "is_worker": false, - "time": "0:01", - "is_chronoboosted": false, - "name": "CoopAIMutaliskCost (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 37, - "is_worker": false, - "time": "0:02", - "is_chronoboosted": false, - "name": "CreepTumorVisible (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 37, - "is_worker": false, - "time": "0:02", - "is_chronoboosted": false, - "name": "ScienceVesselResearchDefensiveMatrix (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 3223, - "is_worker": false, - "time": "3:21", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 3223, - "is_worker": false, - "time": "3:21", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 3223, - "is_worker": false, - "time": "3:21", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 3223, - "is_worker": false, - "time": "3:21", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 3287, - "is_worker": false, - "time": "3:25", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 3287, - "is_worker": false, - "time": "3:25", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 3287, - "is_worker": false, - "time": "3:25", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 3287, - "is_worker": false, - "time": "3:25", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 3287, - "is_worker": false, - "time": "3:25", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 3287, - "is_worker": false, - "time": "3:25", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 3287, - "is_worker": false, - "time": "3:25", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 3287, - "is_worker": false, - "time": "3:25", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 3287, - "is_worker": false, - "time": "3:25", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 3451, - "is_worker": false, - "time": "3:35", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6657, - "is_worker": false, - "time": "6:56", - "is_chronoboosted": false, - "name": "TerranInfantryWeaponsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6657, - "is_worker": false, - "time": "6:56", - "is_chronoboosted": false, - "name": "TerranShipWeaponsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6657, - "is_worker": false, - "time": "6:56", - "is_chronoboosted": false, - "name": "TerranVehicleWeaponsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6657, - "is_worker": false, - "time": "6:56", - "is_chronoboosted": false, - "name": "ProtossGroundWeaponsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6657, - "is_worker": false, - "time": "6:56", - "is_chronoboosted": false, - "name": "ProtossAirWeaponsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6657, - "is_worker": false, - "time": "6:56", - "is_chronoboosted": false, - "name": "ZergMeleeWeaponsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6657, - "is_worker": false, - "time": "6:56", - "is_chronoboosted": false, - "name": "ZergMissileWeaponsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6657, - "is_worker": false, - "time": "6:56", - "is_chronoboosted": false, - "name": "ZergFlyerWeaponsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6805, - "is_worker": false, - "time": "7:05", - "is_chronoboosted": false, - "name": "Blink", - "supply": 6 - }, - { - "clock_position": null, - "frame": 6926, - "is_worker": false, - "time": "7:12", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7134, - "is_worker": false, - "time": "7:25", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7134, - "is_worker": false, - "time": "7:25", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7134, - "is_worker": false, - "time": "7:25", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7134, - "is_worker": false, - "time": "7:25", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7134, - "is_worker": false, - "time": "7:25", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7134, - "is_worker": false, - "time": "7:25", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7134, - "is_worker": false, - "time": "7:25", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7198, - "is_worker": false, - "time": "7:29", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7198, - "is_worker": false, - "time": "7:29", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7198, - "is_worker": false, - "time": "7:29", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7198, - "is_worker": false, - "time": "7:29", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7198, - "is_worker": false, - "time": "7:29", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7198, - "is_worker": false, - "time": "7:29", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7198, - "is_worker": false, - "time": "7:29", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7198, - "is_worker": false, - "time": "7:29", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7198, - "is_worker": false, - "time": "7:29", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7198, - "is_worker": false, - "time": "7:29", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7198, - "is_worker": false, - "time": "7:29", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7358, - "is_worker": false, - "time": "7:39", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7937, - "is_worker": false, - "time": "8:16", - "is_chronoboosted": false, - "name": "PsiStormTech", - "supply": 6 - }, - { - "clock_position": null, - "frame": 7937, - "is_worker": false, - "time": "8:16", - "is_chronoboosted": false, - "name": "CentrificalHooks", - "supply": 6 - }, - { - "clock_position": null, - "frame": 9697, - "is_worker": false, - "time": "10:06", - "is_chronoboosted": false, - "name": "OrbitalRelay (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 9697, - "is_worker": false, - "time": "10:06", - "is_chronoboosted": false, - "name": "CycloneLockOnDamageUpgrade (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 9785, - "is_worker": false, - "time": "10:11", - "is_chronoboosted": false, - "name": "BansheeCloak", - "supply": 6 - }, - { - "clock_position": null, - "frame": 9785, - "is_worker": false, - "time": "10:11", - "is_chronoboosted": false, - "name": "TunnelingClaws", - "supply": 6 - }, - { - "clock_position": null, - "frame": 9873, - "is_worker": false, - "time": "10:17", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10081, - "is_worker": false, - "time": "10:30", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10081, - "is_worker": false, - "time": "10:30", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10081, - "is_worker": false, - "time": "10:30", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10081, - "is_worker": false, - "time": "10:30", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10081, - "is_worker": false, - "time": "10:30", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10081, - "is_worker": false, - "time": "10:30", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10081, - "is_worker": false, - "time": "10:30", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10081, - "is_worker": false, - "time": "10:30", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10145, - "is_worker": false, - "time": "10:34", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10145, - "is_worker": false, - "time": "10:34", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10145, - "is_worker": false, - "time": "10:34", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10145, - "is_worker": false, - "time": "10:34", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10145, - "is_worker": false, - "time": "10:34", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10145, - "is_worker": false, - "time": "10:34", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10145, - "is_worker": false, - "time": "10:34", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10145, - "is_worker": false, - "time": "10:34", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10145, - "is_worker": false, - "time": "10:34", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10145, - "is_worker": false, - "time": "10:34", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 10305, - "is_worker": false, - "time": "10:44", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11445, - "is_worker": false, - "time": "11:55", - "is_chronoboosted": false, - "name": "TerranInfantryArmorsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11445, - "is_worker": false, - "time": "11:55", - "is_chronoboosted": false, - "name": "TerranShipArmorsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11445, - "is_worker": false, - "time": "11:55", - "is_chronoboosted": false, - "name": "TerranVehicleArmorsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11445, - "is_worker": false, - "time": "11:55", - "is_chronoboosted": false, - "name": "ProtossShieldsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11445, - "is_worker": false, - "time": "11:55", - "is_chronoboosted": false, - "name": "ProtossGroundArmorsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11445, - "is_worker": false, - "time": "11:55", - "is_chronoboosted": false, - "name": "ProtossAirArmorsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11445, - "is_worker": false, - "time": "11:55", - "is_chronoboosted": false, - "name": "ZergGroundArmorsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11445, - "is_worker": false, - "time": "11:55", - "is_chronoboosted": false, - "name": "ZergFlyerArmorsLevel2", - "supply": 6 - }, - { - "clock_position": null, - "frame": 11545, - "is_worker": false, - "time": "12:01", - "is_chronoboosted": false, - "name": "CorsairDisruptionWeb (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12565, - "is_worker": false, - "time": "13:05", - "is_chronoboosted": false, - "name": "PersonalCloaking", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12820, - "is_worker": false, - "time": "13:21", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12820, - "is_worker": false, - "time": "13:21", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12820, - "is_worker": false, - "time": "13:21", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12820, - "is_worker": false, - "time": "13:21", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12820, - "is_worker": false, - "time": "13:21", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12820, - "is_worker": false, - "time": "13:21", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 12944, - "is_worker": false, - "time": "13:29", - "is_chronoboosted": false, - "name": "VoidRay", - "supply": 6 - }, - { - "clock_position": null, - "frame": 13028, - "is_worker": false, - "time": "13:34", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 13028, - "is_worker": false, - "time": "13:34", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 13028, - "is_worker": false, - "time": "13:34", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 13028, - "is_worker": false, - "time": "13:34", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 13028, - "is_worker": false, - "time": "13:34", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 13028, - "is_worker": false, - "time": "13:34", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 13028, - "is_worker": false, - "time": "13:34", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 13028, - "is_worker": false, - "time": "13:34", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 13028, - "is_worker": false, - "time": "13:34", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 13028, - "is_worker": false, - "time": "13:34", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 13028, - "is_worker": false, - "time": "13:34", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 13252, - "is_worker": false, - "time": "13:48", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 13732, - "is_worker": false, - "time": "14:18", - "is_chronoboosted": false, - "name": "Archon", - "supply": 6 - }, - { - "clock_position": null, - "frame": 13903, - "is_worker": false, - "time": "14:28", - "is_chronoboosted": false, - "name": "VoidRay", - "supply": 6 - }, - { - "clock_position": null, - "frame": 14485, - "is_worker": false, - "time": "15:05", - "is_chronoboosted": false, - "name": "WraithCloak (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 14485, - "is_worker": false, - "time": "15:05", - "is_chronoboosted": false, - "name": "UltraliskBurrowChargeUpgrade (upgrade missing)", - "supply": 6 - }, - { - "clock_position": null, - "frame": 14862, - "is_worker": false, - "time": "15:28", - "is_chronoboosted": false, - "name": "VoidRay", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15753, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "TerranInfantryWeaponsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15753, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "TerranShipArmorsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15753, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "TerranShipWeaponsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15753, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "TerranVehicleArmorsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15753, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "TerranVehicleWeaponsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15753, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ProtossShieldsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15753, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ProtossGroundArmorsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15753, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ProtossGroundWeaponsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15753, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ProtossAirArmorsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15753, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ProtossAirWeaponsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15753, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ZergMeleeWeaponsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15753, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ZergMissileWeaponsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15753, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ZergGroundArmorsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15753, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ZergFlyerArmorsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15753, - "is_worker": false, - "time": "16:24", - "is_chronoboosted": false, - "name": "ZergFlyerWeaponsLevel3", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15767, - "is_worker": false, - "time": "16:25", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15767, - "is_worker": false, - "time": "16:25", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15975, - "is_worker": false, - "time": "16:38", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15975, - "is_worker": false, - "time": "16:38", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15975, - "is_worker": false, - "time": "16:38", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 15975, - "is_worker": false, - "time": "16:38", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16039, - "is_worker": false, - "time": "16:42", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16039, - "is_worker": false, - "time": "16:42", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16039, - "is_worker": false, - "time": "16:42", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16039, - "is_worker": false, - "time": "16:42", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16039, - "is_worker": false, - "time": "16:42", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16039, - "is_worker": false, - "time": "16:42", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16039, - "is_worker": false, - "time": "16:42", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16039, - "is_worker": false, - "time": "16:42", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16039, - "is_worker": false, - "time": "16:42", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16039, - "is_worker": false, - "time": "16:42", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16039, - "is_worker": false, - "time": "16:42", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16039, - "is_worker": false, - "time": "16:42", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16039, - "is_worker": false, - "time": "16:42", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16199, - "is_worker": false, - "time": "16:52", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16455, - "is_worker": false, - "time": "17:08", - "is_chronoboosted": false, - "name": "Archon", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16455, - "is_worker": false, - "time": "17:08", - "is_chronoboosted": false, - "name": "Archon", - "supply": 6 - }, - { - "clock_position": null, - "frame": 16455, - "is_worker": false, - "time": "17:08", - "is_chronoboosted": false, - "name": "Archon", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17434, - "is_worker": false, - "time": "18:09", - "is_chronoboosted": false, - "name": "Colossus", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17434, - "is_worker": false, - "time": "18:09", - "is_chronoboosted": false, - "name": "Colossus", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17434, - "is_worker": false, - "time": "18:09", - "is_chronoboosted": false, - "name": "Colossus", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17962, - "is_worker": false, - "time": "18:42", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17962, - "is_worker": false, - "time": "18:42", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17962, - "is_worker": false, - "time": "18:42", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17962, - "is_worker": false, - "time": "18:42", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 17962, - "is_worker": false, - "time": "18:42", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 18026, - "is_worker": false, - "time": "18:46", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 18026, - "is_worker": false, - "time": "18:46", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 18026, - "is_worker": false, - "time": "18:46", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 18026, - "is_worker": false, - "time": "18:46", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 18026, - "is_worker": false, - "time": "18:46", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 18026, - "is_worker": false, - "time": "18:46", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 18026, - "is_worker": false, - "time": "18:46", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 18026, - "is_worker": false, - "time": "18:46", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 18186, - "is_worker": false, - "time": "18:56", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 18442, - "is_worker": false, - "time": "19:12", - "is_chronoboosted": false, - "name": "Archon", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19741, - "is_worker": false, - "time": "20:33", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19741, - "is_worker": false, - "time": "20:33", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19741, - "is_worker": false, - "time": "20:33", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19741, - "is_worker": false, - "time": "20:33", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19741, - "is_worker": false, - "time": "20:33", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19741, - "is_worker": false, - "time": "20:33", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19741, - "is_worker": false, - "time": "20:33", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19741, - "is_worker": false, - "time": "20:33", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19949, - "is_worker": false, - "time": "20:46", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19949, - "is_worker": false, - "time": "20:46", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19949, - "is_worker": false, - "time": "20:46", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19949, - "is_worker": false, - "time": "20:46", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19949, - "is_worker": false, - "time": "20:46", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19949, - "is_worker": false, - "time": "20:46", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19949, - "is_worker": false, - "time": "20:46", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19949, - "is_worker": false, - "time": "20:46", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 19949, - "is_worker": false, - "time": "20:46", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 20173, - "is_worker": false, - "time": "21:00", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21408, - "is_worker": false, - "time": "22:18", - "is_chronoboosted": false, - "name": "Colossus", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21408, - "is_worker": false, - "time": "22:18", - "is_chronoboosted": false, - "name": "Colossus", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21408, - "is_worker": false, - "time": "22:18", - "is_chronoboosted": false, - "name": "Colossus", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21728, - "is_worker": false, - "time": "22:38", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21728, - "is_worker": false, - "time": "22:38", - "is_chronoboosted": false, - "name": "Immortal", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21728, - "is_worker": false, - "time": "22:38", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21728, - "is_worker": false, - "time": "22:38", - "is_chronoboosted": false, - "name": "HighTemplar", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21759, - "is_worker": false, - "time": "22:39", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21936, - "is_worker": false, - "time": "22:51", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21936, - "is_worker": false, - "time": "22:51", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21936, - "is_worker": false, - "time": "22:51", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 21936, - "is_worker": false, - "time": "22:51", - "is_chronoboosted": false, - "name": "Stalker", - "supply": 6 - }, - { - "clock_position": null, - "frame": 22000, - "is_worker": false, - "time": "22:55", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 22000, - "is_worker": false, - "time": "22:55", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 22000, - "is_worker": false, - "time": "22:55", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 22000, - "is_worker": false, - "time": "22:55", - "is_chronoboosted": false, - "name": "Zealot", - "supply": 6 - }, - { - "clock_position": null, - "frame": 22160, - "is_worker": false, - "time": "23:05", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 22160, - "is_worker": false, - "time": "23:05", - "is_chronoboosted": false, - "name": "Observer", - "supply": 6 - }, - { - "clock_position": null, - "frame": 22702, - "is_worker": false, - "time": "23:38", - "is_chronoboosted": false, - "name": "Archon", - "supply": 6 + "is_worker": false, + "name": "TerranInfantryWeaponsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "TerranInfantryArmorsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "TerranShipArmorsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "TerranShipWeaponsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "TerranVehicleArmorsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "TerranVehicleWeaponsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ProtossShieldsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ProtossGroundArmorsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ProtossGroundWeaponsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ProtossAirArmorsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ProtossAirWeaponsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ZergMeleeWeaponsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ZergMissileWeaponsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ZergGroundArmorsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ZergFlyerArmorsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "ZergFlyerWeaponsLevel1", + "clock_position": null, + "supply": 6, + "frame": 1, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "CausticSpray (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 24, + "is_chronoboosted": false, + "time": "0:01" + }, + { + "is_worker": false, + "name": "CoopAIReaperCost (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 24, + "is_chronoboosted": false, + "time": "0:01" + }, + { + "is_worker": false, + "name": "CoopAIMutaliskCost (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 24, + "is_chronoboosted": false, + "time": "0:01" + }, + { + "is_worker": false, + "name": "CreepTumorVisible (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 37, + "is_chronoboosted": false, + "time": "0:02" + }, + { + "is_worker": false, + "name": "ScienceVesselResearchDefensiveMatrix (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 37, + "is_chronoboosted": false, + "time": "0:02" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 3223, + "is_chronoboosted": false, + "time": "3:21" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 3223, + "is_chronoboosted": false, + "time": "3:21" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 3223, + "is_chronoboosted": false, + "time": "3:21" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 3223, + "is_chronoboosted": false, + "time": "3:21" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 3287, + "is_chronoboosted": false, + "time": "3:25" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 3287, + "is_chronoboosted": false, + "time": "3:25" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 3287, + "is_chronoboosted": false, + "time": "3:25" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 3287, + "is_chronoboosted": false, + "time": "3:25" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 3287, + "is_chronoboosted": false, + "time": "3:25" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 3287, + "is_chronoboosted": false, + "time": "3:25" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 3287, + "is_chronoboosted": false, + "time": "3:25" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 3287, + "is_chronoboosted": false, + "time": "3:25" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 3287, + "is_chronoboosted": false, + "time": "3:25" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 3451, + "is_chronoboosted": false, + "time": "3:35" + }, + { + "is_worker": false, + "name": "TerranInfantryWeaponsLevel2", + "clock_position": null, + "supply": 6, + "frame": 6657, + "is_chronoboosted": false, + "time": "6:56" + }, + { + "is_worker": false, + "name": "TerranShipWeaponsLevel2", + "clock_position": null, + "supply": 6, + "frame": 6657, + "is_chronoboosted": false, + "time": "6:56" + }, + { + "is_worker": false, + "name": "TerranVehicleWeaponsLevel2", + "clock_position": null, + "supply": 6, + "frame": 6657, + "is_chronoboosted": false, + "time": "6:56" + }, + { + "is_worker": false, + "name": "ProtossGroundWeaponsLevel2", + "clock_position": null, + "supply": 6, + "frame": 6657, + "is_chronoboosted": false, + "time": "6:56" + }, + { + "is_worker": false, + "name": "ProtossAirWeaponsLevel2", + "clock_position": null, + "supply": 6, + "frame": 6657, + "is_chronoboosted": false, + "time": "6:56" + }, + { + "is_worker": false, + "name": "ZergMeleeWeaponsLevel2", + "clock_position": null, + "supply": 6, + "frame": 6657, + "is_chronoboosted": false, + "time": "6:56" + }, + { + "is_worker": false, + "name": "ZergMissileWeaponsLevel2", + "clock_position": null, + "supply": 6, + "frame": 6657, + "is_chronoboosted": false, + "time": "6:56" + }, + { + "is_worker": false, + "name": "ZergFlyerWeaponsLevel2", + "clock_position": null, + "supply": 6, + "frame": 6657, + "is_chronoboosted": false, + "time": "6:56" + }, + { + "is_worker": false, + "name": "Blink", + "clock_position": null, + "supply": 6, + "frame": 6805, + "is_chronoboosted": false, + "time": "7:05" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 6926, + "is_chronoboosted": false, + "time": "7:12" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7134, + "is_chronoboosted": false, + "time": "7:25" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7134, + "is_chronoboosted": false, + "time": "7:25" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7134, + "is_chronoboosted": false, + "time": "7:25" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7134, + "is_chronoboosted": false, + "time": "7:25" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7134, + "is_chronoboosted": false, + "time": "7:25" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7134, + "is_chronoboosted": false, + "time": "7:25" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 7134, + "is_chronoboosted": false, + "time": "7:25" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7198, + "is_chronoboosted": false, + "time": "7:29" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7198, + "is_chronoboosted": false, + "time": "7:29" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7198, + "is_chronoboosted": false, + "time": "7:29" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7198, + "is_chronoboosted": false, + "time": "7:29" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7198, + "is_chronoboosted": false, + "time": "7:29" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7198, + "is_chronoboosted": false, + "time": "7:29" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7198, + "is_chronoboosted": false, + "time": "7:29" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7198, + "is_chronoboosted": false, + "time": "7:29" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7198, + "is_chronoboosted": false, + "time": "7:29" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7198, + "is_chronoboosted": false, + "time": "7:29" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 7198, + "is_chronoboosted": false, + "time": "7:29" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 7358, + "is_chronoboosted": false, + "time": "7:39" + }, + { + "is_worker": false, + "name": "PsiStormTech", + "clock_position": null, + "supply": 6, + "frame": 7937, + "is_chronoboosted": false, + "time": "8:16" + }, + { + "is_worker": false, + "name": "CentrificalHooks", + "clock_position": null, + "supply": 6, + "frame": 7937, + "is_chronoboosted": false, + "time": "8:16" + }, + { + "is_worker": false, + "name": "OrbitalRelay (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 9697, + "is_chronoboosted": false, + "time": "10:06" + }, + { + "is_worker": false, + "name": "CycloneLockOnDamageUpgrade (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 9697, + "is_chronoboosted": false, + "time": "10:06" + }, + { + "is_worker": false, + "name": "BansheeCloak", + "clock_position": null, + "supply": 6, + "frame": 9785, + "is_chronoboosted": false, + "time": "10:11" + }, + { + "is_worker": false, + "name": "TunnelingClaws", + "clock_position": null, + "supply": 6, + "frame": 9785, + "is_chronoboosted": false, + "time": "10:11" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 9873, + "is_chronoboosted": false, + "time": "10:17" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 10081, + "is_chronoboosted": false, + "time": "10:30" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 10081, + "is_chronoboosted": false, + "time": "10:30" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 10081, + "is_chronoboosted": false, + "time": "10:30" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 10081, + "is_chronoboosted": false, + "time": "10:30" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 10081, + "is_chronoboosted": false, + "time": "10:30" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 10081, + "is_chronoboosted": false, + "time": "10:30" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 10081, + "is_chronoboosted": false, + "time": "10:30" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 10081, + "is_chronoboosted": false, + "time": "10:30" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10145, + "is_chronoboosted": false, + "time": "10:34" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10145, + "is_chronoboosted": false, + "time": "10:34" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10145, + "is_chronoboosted": false, + "time": "10:34" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10145, + "is_chronoboosted": false, + "time": "10:34" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10145, + "is_chronoboosted": false, + "time": "10:34" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10145, + "is_chronoboosted": false, + "time": "10:34" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10145, + "is_chronoboosted": false, + "time": "10:34" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10145, + "is_chronoboosted": false, + "time": "10:34" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10145, + "is_chronoboosted": false, + "time": "10:34" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 10145, + "is_chronoboosted": false, + "time": "10:34" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 10305, + "is_chronoboosted": false, + "time": "10:44" + }, + { + "is_worker": false, + "name": "TerranInfantryArmorsLevel2", + "clock_position": null, + "supply": 6, + "frame": 11445, + "is_chronoboosted": false, + "time": "11:55" + }, + { + "is_worker": false, + "name": "TerranShipArmorsLevel2", + "clock_position": null, + "supply": 6, + "frame": 11445, + "is_chronoboosted": false, + "time": "11:55" + }, + { + "is_worker": false, + "name": "TerranVehicleArmorsLevel2", + "clock_position": null, + "supply": 6, + "frame": 11445, + "is_chronoboosted": false, + "time": "11:55" + }, + { + "is_worker": false, + "name": "ProtossShieldsLevel2", + "clock_position": null, + "supply": 6, + "frame": 11445, + "is_chronoboosted": false, + "time": "11:55" + }, + { + "is_worker": false, + "name": "ProtossGroundArmorsLevel2", + "clock_position": null, + "supply": 6, + "frame": 11445, + "is_chronoboosted": false, + "time": "11:55" + }, + { + "is_worker": false, + "name": "ProtossAirArmorsLevel2", + "clock_position": null, + "supply": 6, + "frame": 11445, + "is_chronoboosted": false, + "time": "11:55" + }, + { + "is_worker": false, + "name": "ZergGroundArmorsLevel2", + "clock_position": null, + "supply": 6, + "frame": 11445, + "is_chronoboosted": false, + "time": "11:55" + }, + { + "is_worker": false, + "name": "ZergFlyerArmorsLevel2", + "clock_position": null, + "supply": 6, + "frame": 11445, + "is_chronoboosted": false, + "time": "11:55" + }, + { + "is_worker": false, + "name": "CorsairDisruptionWeb (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 11545, + "is_chronoboosted": false, + "time": "12:01" + }, + { + "is_worker": false, + "name": "PersonalCloaking", + "clock_position": null, + "supply": 6, + "frame": 12565, + "is_chronoboosted": false, + "time": "13:05" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 12820, + "is_chronoboosted": false, + "time": "13:21" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 12820, + "is_chronoboosted": false, + "time": "13:21" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 12820, + "is_chronoboosted": false, + "time": "13:21" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 12820, + "is_chronoboosted": false, + "time": "13:21" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 12820, + "is_chronoboosted": false, + "time": "13:21" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 12820, + "is_chronoboosted": false, + "time": "13:21" + }, + { + "is_worker": false, + "name": "VoidRay", + "clock_position": null, + "supply": 6, + "frame": 12944, + "is_chronoboosted": false, + "time": "13:29" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 13028, + "is_chronoboosted": false, + "time": "13:34" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 13028, + "is_chronoboosted": false, + "time": "13:34" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 13028, + "is_chronoboosted": false, + "time": "13:34" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 13028, + "is_chronoboosted": false, + "time": "13:34" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 13028, + "is_chronoboosted": false, + "time": "13:34" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 13028, + "is_chronoboosted": false, + "time": "13:34" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 13028, + "is_chronoboosted": false, + "time": "13:34" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 13028, + "is_chronoboosted": false, + "time": "13:34" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 13028, + "is_chronoboosted": false, + "time": "13:34" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 13028, + "is_chronoboosted": false, + "time": "13:34" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 13028, + "is_chronoboosted": false, + "time": "13:34" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 13252, + "is_chronoboosted": false, + "time": "13:48" + }, + { + "is_worker": false, + "name": "Archon", + "clock_position": null, + "supply": 6, + "frame": 13732, + "is_chronoboosted": false, + "time": "14:18" + }, + { + "is_worker": false, + "name": "VoidRay", + "clock_position": null, + "supply": 6, + "frame": 13903, + "is_chronoboosted": false, + "time": "14:28" + }, + { + "is_worker": false, + "name": "WraithCloak (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 14485, + "is_chronoboosted": false, + "time": "15:05" + }, + { + "is_worker": false, + "name": "UltraliskBurrowChargeUpgrade (upgrade missing)", + "clock_position": null, + "supply": 6, + "frame": 14485, + "is_chronoboosted": false, + "time": "15:05" + }, + { + "is_worker": false, + "name": "VoidRay", + "clock_position": null, + "supply": 6, + "frame": 14862, + "is_chronoboosted": false, + "time": "15:28" + }, + { + "is_worker": false, + "name": "TerranInfantryWeaponsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15753, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "TerranShipArmorsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15753, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "TerranShipWeaponsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15753, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "TerranVehicleArmorsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15753, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "TerranVehicleWeaponsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15753, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ProtossShieldsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15753, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ProtossGroundArmorsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15753, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ProtossGroundWeaponsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15753, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ProtossAirArmorsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15753, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ProtossAirWeaponsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15753, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ZergMeleeWeaponsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15753, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ZergMissileWeaponsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15753, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ZergGroundArmorsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15753, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ZergFlyerArmorsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15753, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "ZergFlyerWeaponsLevel3", + "clock_position": null, + "supply": 6, + "frame": 15753, + "is_chronoboosted": false, + "time": "16:24" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 15767, + "is_chronoboosted": false, + "time": "16:25" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 15767, + "is_chronoboosted": false, + "time": "16:25" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 15975, + "is_chronoboosted": false, + "time": "16:38" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 15975, + "is_chronoboosted": false, + "time": "16:38" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 15975, + "is_chronoboosted": false, + "time": "16:38" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 15975, + "is_chronoboosted": false, + "time": "16:38" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16039, + "is_chronoboosted": false, + "time": "16:42" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16039, + "is_chronoboosted": false, + "time": "16:42" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16039, + "is_chronoboosted": false, + "time": "16:42" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16039, + "is_chronoboosted": false, + "time": "16:42" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16039, + "is_chronoboosted": false, + "time": "16:42" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16039, + "is_chronoboosted": false, + "time": "16:42" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16039, + "is_chronoboosted": false, + "time": "16:42" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16039, + "is_chronoboosted": false, + "time": "16:42" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16039, + "is_chronoboosted": false, + "time": "16:42" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16039, + "is_chronoboosted": false, + "time": "16:42" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16039, + "is_chronoboosted": false, + "time": "16:42" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16039, + "is_chronoboosted": false, + "time": "16:42" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 16039, + "is_chronoboosted": false, + "time": "16:42" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 16199, + "is_chronoboosted": false, + "time": "16:52" + }, + { + "is_worker": false, + "name": "Archon", + "clock_position": null, + "supply": 6, + "frame": 16455, + "is_chronoboosted": false, + "time": "17:08" + }, + { + "is_worker": false, + "name": "Archon", + "clock_position": null, + "supply": 6, + "frame": 16455, + "is_chronoboosted": false, + "time": "17:08" + }, + { + "is_worker": false, + "name": "Archon", + "clock_position": null, + "supply": 6, + "frame": 16455, + "is_chronoboosted": false, + "time": "17:08" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 6, + "frame": 17434, + "is_chronoboosted": false, + "time": "18:09" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 6, + "frame": 17434, + "is_chronoboosted": false, + "time": "18:09" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 6, + "frame": 17434, + "is_chronoboosted": false, + "time": "18:09" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 17962, + "is_chronoboosted": false, + "time": "18:42" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 17962, + "is_chronoboosted": false, + "time": "18:42" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 17962, + "is_chronoboosted": false, + "time": "18:42" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 17962, + "is_chronoboosted": false, + "time": "18:42" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 17962, + "is_chronoboosted": false, + "time": "18:42" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 18026, + "is_chronoboosted": false, + "time": "18:46" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 18026, + "is_chronoboosted": false, + "time": "18:46" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 18026, + "is_chronoboosted": false, + "time": "18:46" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 18026, + "is_chronoboosted": false, + "time": "18:46" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 18026, + "is_chronoboosted": false, + "time": "18:46" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 18026, + "is_chronoboosted": false, + "time": "18:46" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 18026, + "is_chronoboosted": false, + "time": "18:46" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 18026, + "is_chronoboosted": false, + "time": "18:46" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 18186, + "is_chronoboosted": false, + "time": "18:56" + }, + { + "is_worker": false, + "name": "Archon", + "clock_position": null, + "supply": 6, + "frame": 18442, + "is_chronoboosted": false, + "time": "19:12" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 19741, + "is_chronoboosted": false, + "time": "20:33" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 19741, + "is_chronoboosted": false, + "time": "20:33" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 19741, + "is_chronoboosted": false, + "time": "20:33" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 19741, + "is_chronoboosted": false, + "time": "20:33" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 19741, + "is_chronoboosted": false, + "time": "20:33" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 19741, + "is_chronoboosted": false, + "time": "20:33" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 19741, + "is_chronoboosted": false, + "time": "20:33" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 19741, + "is_chronoboosted": false, + "time": "20:33" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19949, + "is_chronoboosted": false, + "time": "20:46" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19949, + "is_chronoboosted": false, + "time": "20:46" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19949, + "is_chronoboosted": false, + "time": "20:46" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19949, + "is_chronoboosted": false, + "time": "20:46" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19949, + "is_chronoboosted": false, + "time": "20:46" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19949, + "is_chronoboosted": false, + "time": "20:46" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19949, + "is_chronoboosted": false, + "time": "20:46" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19949, + "is_chronoboosted": false, + "time": "20:46" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 19949, + "is_chronoboosted": false, + "time": "20:46" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 20173, + "is_chronoboosted": false, + "time": "21:00" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 6, + "frame": 21408, + "is_chronoboosted": false, + "time": "22:18" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 6, + "frame": 21408, + "is_chronoboosted": false, + "time": "22:18" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 6, + "frame": 21408, + "is_chronoboosted": false, + "time": "22:18" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 21728, + "is_chronoboosted": false, + "time": "22:38" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 6, + "frame": 21728, + "is_chronoboosted": false, + "time": "22:38" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 21728, + "is_chronoboosted": false, + "time": "22:38" + }, + { + "is_worker": false, + "name": "HighTemplar", + "clock_position": null, + "supply": 6, + "frame": 21728, + "is_chronoboosted": false, + "time": "22:38" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 21759, + "is_chronoboosted": false, + "time": "22:39" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 21936, + "is_chronoboosted": false, + "time": "22:51" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 21936, + "is_chronoboosted": false, + "time": "22:51" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 21936, + "is_chronoboosted": false, + "time": "22:51" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 6, + "frame": 21936, + "is_chronoboosted": false, + "time": "22:51" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 22000, + "is_chronoboosted": false, + "time": "22:55" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 22000, + "is_chronoboosted": false, + "time": "22:55" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 22000, + "is_chronoboosted": false, + "time": "22:55" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 6, + "frame": 22000, + "is_chronoboosted": false, + "time": "22:55" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 22160, + "is_chronoboosted": false, + "time": "23:05" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 6, + "frame": 22160, + "is_chronoboosted": false, + "time": "23:05" + }, + { + "is_worker": false, + "name": "Archon", + "clock_position": null, + "supply": 6, + "frame": 22702, + "is_chronoboosted": false, + "time": "23:38" } - ], - "league": null, - "commander": "", - "handicap": 100, + ], + "abilities": [], + "name": "Amon's Forces", + "is_human": false, + "level": null, + "handicap": 100, + "region": "us", + "is_winner": false, + "pick_race": "Terran", + "clock_position": null, + "commander": "", + "color": "B4141E", "unitsLost": [ { - "clock_position": null, - "time": "7:18", - "killer": 2, - "frame": 7010, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "7:26", - "killer": 1, - "frame": 7136, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "7:26", - "killer": 1, - "frame": 7136, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "7:26", - "killer": 1, - "frame": 7146, - "name": "Sentry" - }, - { - "clock_position": null, - "time": "8:51", - "killer": 2, - "frame": 8508, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "8:55", - "killer": 1, - "frame": 8564, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "8:57", - "killer": 2, - "frame": 8595, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "9:01", - "killer": 1, - "frame": 8662, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "9:01", - "killer": 1, - "frame": 8666, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "9:01", - "killer": 1, - "frame": 8666, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "9:02", - "killer": 2, - "frame": 8683, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "9:02", - "killer": 1, - "frame": 8684, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "9:03", - "killer": 2, - "frame": 8692, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "9:05", - "killer": 1, - "frame": 8733, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "9:07", - "killer": 2, - "frame": 8752, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "9:09", - "killer": 1, - "frame": 8785, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "9:10", - "killer": 2, - "frame": 8802, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "10:21", - "killer": 2, - "frame": 9943, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "10:26", - "killer": 2, - "frame": 10019, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "10:27", - "killer": 1, - "frame": 10041, - "name": null - }, - { - "clock_position": null, - "time": "10:29", - "killer": 1, - "frame": 10074, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "10:34", - "killer": 1, - "frame": 10153, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "10:39", - "killer": 2, - "frame": 10227, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "12:13", - "killer": 1, - "frame": 11742, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "12:14", - "killer": 1, - "frame": 11750, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:24", - "killer": 1, - "frame": 11908, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:24", - "killer": 1, - "frame": 11916, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:25", - "killer": 1, - "frame": 11925, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "12:26", - "killer": 1, - "frame": 11940, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:27", - "killer": 1, - "frame": 11955, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:28", - "killer": 1, - "frame": 11976, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "12:28", - "killer": 1, - "frame": 11980, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "12:29", - "killer": 1, - "frame": 11990, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:29", - "killer": 1, - "frame": 11996, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "12:30", - "killer": 1, - "frame": 12001, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:30", - "killer": 1, - "frame": 12003, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:30", - "killer": 1, - "frame": 12004, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:30", - "killer": 1, - "frame": 12012, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:31", - "killer": 1, - "frame": 12021, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "12:31", - "killer": 1, - "frame": 12028, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:32", - "killer": 1, - "frame": 12033, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "12:32", - "killer": 1, - "frame": 12035, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:32", - "killer": 1, - "frame": 12046, - "name": "Observer" - }, - { - "clock_position": null, - "time": "12:33", - "killer": 1, - "frame": 12061, - "name": "Archon" - }, - { - "clock_position": null, - "time": "12:37", - "killer": 1, - "frame": 12119, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "12:39", - "killer": 1, - "frame": 12153, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "12:41", - "killer": 1, - "frame": 12184, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "12:44", - "killer": 2, - "frame": 12238, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:45", - "killer": 2, - "frame": 12254, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "12:54", - "killer": 2, - "frame": 12387, - "name": "VoidRay" - }, - { - "clock_position": null, - "time": "12:58", - "killer": 2, - "frame": 12452, - "name": "VoidRay" - }, - { - "clock_position": null, - "time": "13:12", - "killer": 1, - "frame": 12679, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "13:20", - "killer": 1, - "frame": 12808, - "name": "DarkTemplar" - }, - { - "clock_position": null, - "time": "13:22", - "killer": 1, - "frame": 12845, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "13:25", - "killer": 1, - "frame": 12883, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "13:29", - "killer": 2, - "frame": 12947, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "13:30", - "killer": 1, - "frame": 12962, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "13:33", - "killer": 1, - "frame": 13008, - "name": "Carrier" - }, - { - "clock_position": null, - "time": "13:33", - "killer": 2, - "frame": 13014, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "13:33", - "killer": 2, - "frame": 13023, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "14:30", - "killer": null, - "frame": 13924, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "14:30", - "killer": null, - "frame": 13924, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "14:35", - "killer": 1, - "frame": 14005, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "14:35", - "killer": 2, - "frame": 14011, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "14:36", - "killer": 1, - "frame": 14016, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "14:37", - "killer": 1, - "frame": 14046, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "14:38", - "killer": 1, - "frame": 14057, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "14:39", - "killer": 1, - "frame": 14071, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "14:40", - "killer": 1, - "frame": 14081, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "14:40", - "killer": 1, - "frame": 14084, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "14:40", - "killer": 1, - "frame": 14092, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "14:41", - "killer": 1, - "frame": 14096, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "14:41", - "killer": 1, - "frame": 14110, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "14:42", - "killer": 1, - "frame": 14120, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "14:43", - "killer": 1, - "frame": 14136, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "14:46", - "killer": 1, - "frame": 14183, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "14:49", - "killer": 1, - "frame": 14235, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "14:51", - "killer": 1, - "frame": 14263, - "name": "Observer" - }, - { - "clock_position": null, - "time": "14:52", - "killer": 1, - "frame": 14283, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "14:53", - "killer": 1, - "frame": 14296, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "14:53", - "killer": 1, - "frame": 14298, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "14:53", - "killer": 1, - "frame": 14303, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "14:55", - "killer": 1, - "frame": 14335, - "name": "Archon" - }, - { - "clock_position": null, - "time": "17:20", - "killer": 2, - "frame": 16655, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:23", - "killer": 2, - "frame": 16696, - "name": "VoidRay" - }, - { - "clock_position": null, - "time": "17:25", - "killer": 2, - "frame": 16732, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:28", - "killer": 2, - "frame": 16783, - "name": "VoidRay" - }, - { - "clock_position": null, - "time": "17:31", - "killer": 2, - "frame": 16819, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:34", - "killer": 1, - "frame": 16867, - "name": "DarkTemplar" - }, - { - "clock_position": null, - "time": "17:34", - "killer": 1, - "frame": 16871, - "name": "Sentry" - }, - { - "clock_position": null, - "time": "17:35", - "killer": 1, - "frame": 16880, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:35", - "killer": 2, - "frame": 16893, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "17:37", - "killer": 1, - "frame": 16918, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:37", - "killer": 1, - "frame": 16919, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:40", - "killer": 2, - "frame": 16964, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "17:43", - "killer": 1, - "frame": 17017, - "name": "Colossus" - }, - { - "clock_position": null, - "time": "17:43", - "killer": 1, - "frame": 17023, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "17:45", - "killer": 2, - "frame": 17049, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "17:48", - "killer": 2, - "frame": 17088, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "18:14", - "killer": 2, - "frame": 17510, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "18:15", - "killer": 2, - "frame": 17530, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "18:16", - "killer": 2, - "frame": 17538, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "18:19", - "killer": 2, - "frame": 17595, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "18:21", - "killer": 2, - "frame": 17628, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "18:25", - "killer": 2, - "frame": 17689, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "18:25", - "killer": 1, - "frame": 17695, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "18:26", - "killer": 2, - "frame": 17700, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "18:28", - "killer": 2, - "frame": 17730, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "18:29", - "killer": 2, - "frame": 17747, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "18:29", - "killer": 1, - "frame": 17751, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "18:31", - "killer": 2, - "frame": 17784, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "18:31", - "killer": 2, - "frame": 17784, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "18:37", - "killer": 2, - "frame": 17875, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "18:54", - "killer": 2, - "frame": 18145, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "19:00", - "killer": 1, - "frame": 18244, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "19:01", - "killer": 1, - "frame": 18270, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "19:04", - "killer": 1, - "frame": 18314, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "19:07", - "killer": 1, - "frame": 18353, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "19:11", - "killer": 1, - "frame": 18431, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "19:41", - "killer": 2, - "frame": 18903, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "19:42", - "killer": 2, - "frame": 18912, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "19:43", - "killer": 2, - "frame": 18939, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "19:49", - "killer": 2, - "frame": 19027, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "19:49", - "killer": 2, - "frame": 19027, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "19:50", - "killer": 2, - "frame": 19055, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "19:52", - "killer": 2, - "frame": 19076, - "name": "Archon" - }, - { - "clock_position": null, - "time": "19:52", - "killer": 2, - "frame": 19078, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "19:54", - "killer": 2, - "frame": 19108, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "19:55", - "killer": 2, - "frame": 19127, - "name": "Archon" - }, - { - "clock_position": null, - "time": "19:57", - "killer": 2, - "frame": 19153, - "name": "Archon" - }, - { - "clock_position": null, - "time": "19:57", - "killer": 2, - "frame": 19154, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "19:57", - "killer": 2, - "frame": 19167, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "20:02", - "killer": 1, - "frame": 19233, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "20:03", - "killer": 1, - "frame": 19253, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "20:03", - "killer": 2, - "frame": 19260, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "20:03", - "killer": 2, - "frame": 19263, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "20:04", - "killer": 2, - "frame": 19266, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "20:04", - "killer": 2, - "frame": 19269, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "20:04", - "killer": 2, - "frame": 19276, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "20:04", - "killer": 1, - "frame": 19276, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "20:05", - "killer": 2, - "frame": 19282, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:02", - "killer": 2, - "frame": 21156, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "22:03", - "killer": 1, - "frame": 21180, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "22:04", - "killer": 1, - "frame": 21197, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:05", - "killer": 1, - "frame": 21205, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:05", - "killer": 1, - "frame": 21214, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:06", - "killer": 2, - "frame": 21217, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "22:06", - "killer": 1, - "frame": 21228, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "22:07", - "killer": 1, - "frame": 21239, - "name": "Archon" - }, - { - "clock_position": null, - "time": "22:07", - "killer": 2, - "frame": 21247, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:09", - "killer": 1, - "frame": 21269, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:09", - "killer": 1, - "frame": 21273, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:10", - "killer": 1, - "frame": 21282, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:11", - "killer": 1, - "frame": 21296, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:14", - "killer": 1, - "frame": 21348, - "name": "Colossus" - }, - { - "clock_position": null, - "time": "22:14", - "killer": 1, - "frame": 21350, - "name": "Colossus" - }, - { - "clock_position": null, - "time": "22:15", - "killer": 1, - "frame": 21364, - "name": "Observer" - }, - { - "clock_position": null, - "time": "22:15", - "killer": 1, - "frame": 21365, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "22:16", - "killer": 1, - "frame": 21391, - "name": "Colossus" - }, - { - "clock_position": null, - "time": "22:39", - "killer": 1, - "frame": 21745, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:41", - "killer": 1, - "frame": 21782, - "name": "Sentry" - }, - { - "clock_position": null, - "time": "22:41", - "killer": 1, - "frame": 21783, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:41", - "killer": 1, - "frame": 21784, - "name": "Sentry" - }, - { - "clock_position": null, - "time": "22:41", - "killer": 1, - "frame": 21789, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "22:44", - "killer": 2, - "frame": 21824, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "22:44", - "killer": 1, - "frame": 21829, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "22:46", - "killer": 1, - "frame": 21866, - "name": "Colossus" - }, - { - "clock_position": null, - "time": "22:47", - "killer": 1, - "frame": 21885, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:47", - "killer": 1, - "frame": 21887, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "22:48", - "killer": 1, - "frame": 21901, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:48", - "killer": 1, - "frame": 21902, - "name": null - }, - { - "clock_position": null, - "time": "22:49", - "killer": 1, - "frame": 21918, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:52", - "killer": 1, - "frame": 21958, - "name": "Zealot" - }, - { - "clock_position": null, - "time": "22:52", - "killer": 1, - "frame": 21962, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "22:53", - "killer": 1, - "frame": 21981, - "name": null - }, - { - "clock_position": null, - "time": "22:55", - "killer": 1, - "frame": 22000, - "name": null - }, - { - "clock_position": null, - "time": "22:55", - "killer": 1, - "frame": 22013, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "22:58", - "killer": 2, - "frame": 22049, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "23:00", - "killer": 2, - "frame": 22082, - "name": "RoboticsFacility" - }, - { - "clock_position": null, - "time": "23:02", - "killer": 1, - "frame": 22116, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "23:02", - "killer": 1, - "frame": 22127, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "23:04", - "killer": 1, - "frame": 22148, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "23:04", - "killer": 2, - "frame": 22149, - "name": "Carrier" - }, - { - "clock_position": null, - "time": "23:07", - "killer": 1, - "frame": 22195, - "name": "WarpGate" - }, - { - "clock_position": null, - "time": "23:07", - "killer": 2, - "frame": 22200, - "name": "Pylon" - }, - { - "clock_position": null, - "time": "23:14", - "killer": 1, - "frame": 22306, - "name": "CyberneticsCore" - }, - { - "clock_position": null, - "time": "23:38", - "killer": 1, - "frame": 22690, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "23:38", - "killer": 2, - "frame": 22695, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "23:39", - "killer": 1, - "frame": 22719, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "23:40", - "killer": 2, - "frame": 22728, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "23:40", - "killer": 2, - "frame": 22730, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "23:40", - "killer": 1, - "frame": 22732, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "23:41", - "killer": 1, - "frame": 22741, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "23:42", - "killer": 2, - "frame": 22761, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "23:42", - "killer": 2, - "frame": 22763, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "23:43", - "killer": 2, - "frame": 22768, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "23:43", - "killer": 1, - "frame": 22779, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "23:43", - "killer": 1, - "frame": 22782, - "name": "Observer" - }, - { - "clock_position": null, - "time": "23:43", - "killer": 2, - "frame": 22783, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "23:44", - "killer": 1, - "frame": 22795, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "23:44", - "killer": 2, - "frame": 22796, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "23:45", - "killer": 2, - "frame": 22815, - "name": "Immortal" - }, - { - "clock_position": null, - "time": "23:48", - "killer": 2, - "frame": 22856, - "name": "Archon" - }, - { - "clock_position": null, - "time": "23:48", - "killer": null, - "frame": 22856, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "23:48", - "killer": null, - "frame": 22856, - "name": "HighTemplar" - }, - { - "clock_position": null, - "time": "23:49", - "killer": 2, - "frame": 22879, - "name": "Colossus" - }, - { - "clock_position": null, - "time": "23:50", - "killer": 2, - "frame": 22894, - "name": "Stalker" - }, - { - "clock_position": null, - "time": "23:51", - "killer": 2, - "frame": 22900, - "name": "Colossus" - }, - { - "clock_position": null, - "time": "24:16", - "killer": 1, - "frame": 23304, - "name": "Stargate" - }, - { - "clock_position": null, - "time": "24:19", - "killer": 1, - "frame": 23345, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "24:19", - "killer": 1, - "frame": 23347, - "name": "VoidRay" - }, - { - "clock_position": null, - "time": "24:20", - "killer": 1, - "frame": 23374, - "name": "VoidRay" - }, - { - "clock_position": null, - "time": "24:21", - "killer": 1, - "frame": 23382, - "name": "DarkTemplar" - }, - { - "clock_position": null, - "time": "24:22", - "killer": 1, - "frame": 23403, - "name": "VoidRay" - }, - { - "clock_position": null, - "time": "24:22", - "killer": 2, - "frame": 23404, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "24:23", - "killer": 1, - "frame": 23417, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "24:25", - "killer": 1, - "frame": 23445, - "name": "DarkTemplar" - }, - { - "clock_position": null, - "time": "24:29", - "killer": 1, - "frame": 23505, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "24:29", - "killer": 2, - "frame": 23515, - "name": "PhotonCannon" - }, - { - "clock_position": null, - "time": "24:32", - "killer": 1, - "frame": 23561, - "name": "PhotonCannon" + "frame": 7010, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "7:18" + }, + { + "frame": 7136, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "7:26" + }, + { + "frame": 7136, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "7:26" + }, + { + "frame": 7146, + "killer": 1, + "name": "Sentry", + "clock_position": null, + "time": "7:26" + }, + { + "frame": 8508, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "8:51" + }, + { + "frame": 8564, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "8:55" + }, + { + "frame": 8595, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "8:57" + }, + { + "frame": 8662, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "9:01" + }, + { + "frame": 8666, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "9:01" + }, + { + "frame": 8666, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "9:01" + }, + { + "frame": 8683, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "9:02" + }, + { + "frame": 8684, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "9:02" + }, + { + "frame": 8692, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "9:03" + }, + { + "frame": 8733, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "9:05" + }, + { + "frame": 8752, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "9:07" + }, + { + "frame": 8785, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "9:09" + }, + { + "frame": 8802, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "9:10" + }, + { + "frame": 9943, + "killer": 2, + "name": "PhotonCannon", + "clock_position": null, + "time": "10:21" + }, + { + "frame": 10019, + "killer": 2, + "name": "HighTemplar", + "clock_position": null, + "time": "10:26" + }, + { + "frame": 10041, + "killer": 1, + "name": null, + "clock_position": null, + "time": "10:27" + }, + { + "frame": 10074, + "killer": 1, + "name": "Immortal", + "clock_position": null, + "time": "10:29" + }, + { + "frame": 10153, + "killer": 1, + "name": "Immortal", + "clock_position": null, + "time": "10:34" + }, + { + "frame": 10227, + "killer": 2, + "name": "Pylon", + "clock_position": null, + "time": "10:39" + }, + { + "frame": 11742, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "12:13" + }, + { + "frame": 11750, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "12:14" + }, + { + "frame": 11908, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "12:24" + }, + { + "frame": 11916, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "12:24" + }, + { + "frame": 11925, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "12:25" + }, + { + "frame": 11940, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "12:26" + }, + { + "frame": 11955, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "12:27" + }, + { + "frame": 11976, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "12:28" + }, + { + "frame": 11980, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "12:28" + }, + { + "frame": 11990, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "12:29" + }, + { + "frame": 11996, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "12:29" + }, + { + "frame": 12001, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "12:30" + }, + { + "frame": 12003, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "12:30" + }, + { + "frame": 12004, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "12:30" + }, + { + "frame": 12012, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "12:30" + }, + { + "frame": 12021, + "killer": 1, + "name": "HighTemplar", + "clock_position": null, + "time": "12:31" + }, + { + "frame": 12028, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "12:31" + }, + { + "frame": 12033, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "12:32" + }, + { + "frame": 12035, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "12:32" + }, + { + "frame": 12046, + "killer": 1, + "name": "Observer", + "clock_position": null, + "time": "12:32" + }, + { + "frame": 12061, + "killer": 1, + "name": "Archon", + "clock_position": null, + "time": "12:33" + }, + { + "frame": 12119, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "12:37" + }, + { + "frame": 12153, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "12:39" + }, + { + "frame": 12184, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "12:41" + }, + { + "frame": 12238, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "12:44" + }, + { + "frame": 12254, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "12:45" + }, + { + "frame": 12387, + "killer": 2, + "name": "VoidRay", + "clock_position": null, + "time": "12:54" + }, + { + "frame": 12452, + "killer": 2, + "name": "VoidRay", + "clock_position": null, + "time": "12:58" + }, + { + "frame": 12679, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "13:12" + }, + { + "frame": 12808, + "killer": 1, + "name": "DarkTemplar", + "clock_position": null, + "time": "13:20" + }, + { + "frame": 12845, + "killer": 1, + "name": "HighTemplar", + "clock_position": null, + "time": "13:22" + }, + { + "frame": 12883, + "killer": 1, + "name": "Immortal", + "clock_position": null, + "time": "13:25" + }, + { + "frame": 12947, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "13:29" + }, + { + "frame": 12962, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "13:30" + }, + { + "frame": 13008, + "killer": 1, + "name": "Carrier", + "clock_position": null, + "time": "13:33" + }, + { + "frame": 13014, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "13:33" + }, + { + "frame": 13023, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "13:33" + }, + { + "frame": 13924, + "killer": null, + "name": "HighTemplar", + "clock_position": null, + "time": "14:30" + }, + { + "frame": 13924, + "killer": null, + "name": "HighTemplar", + "clock_position": null, + "time": "14:30" + }, + { + "frame": 14005, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "14:35" + }, + { + "frame": 14011, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "14:35" + }, + { + "frame": 14016, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "14:36" + }, + { + "frame": 14046, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "14:37" + }, + { + "frame": 14057, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "14:38" + }, + { + "frame": 14071, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "14:39" + }, + { + "frame": 14081, + "killer": 1, + "name": "HighTemplar", + "clock_position": null, + "time": "14:40" + }, + { + "frame": 14084, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "14:40" + }, + { + "frame": 14092, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "14:40" + }, + { + "frame": 14096, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "14:41" + }, + { + "frame": 14110, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "14:41" + }, + { + "frame": 14120, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "14:42" + }, + { + "frame": 14136, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "14:43" + }, + { + "frame": 14183, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "14:46" + }, + { + "frame": 14235, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "14:49" + }, + { + "frame": 14263, + "killer": 1, + "name": "Observer", + "clock_position": null, + "time": "14:51" + }, + { + "frame": 14283, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "14:52" + }, + { + "frame": 14296, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "14:53" + }, + { + "frame": 14298, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "14:53" + }, + { + "frame": 14303, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "14:53" + }, + { + "frame": 14335, + "killer": 1, + "name": "Archon", + "clock_position": null, + "time": "14:55" + }, + { + "frame": 16655, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "17:20" + }, + { + "frame": 16696, + "killer": 2, + "name": "VoidRay", + "clock_position": null, + "time": "17:23" + }, + { + "frame": 16732, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "17:25" + }, + { + "frame": 16783, + "killer": 2, + "name": "VoidRay", + "clock_position": null, + "time": "17:28" + }, + { + "frame": 16819, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "17:31" + }, + { + "frame": 16867, + "killer": 1, + "name": "DarkTemplar", + "clock_position": null, + "time": "17:34" + }, + { + "frame": 16871, + "killer": 1, + "name": "Sentry", + "clock_position": null, + "time": "17:34" + }, + { + "frame": 16880, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:35" + }, + { + "frame": 16893, + "killer": 2, + "name": "PhotonCannon", + "clock_position": null, + "time": "17:35" + }, + { + "frame": 16918, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:37" + }, + { + "frame": 16919, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:37" + }, + { + "frame": 16964, + "killer": 2, + "name": "PhotonCannon", + "clock_position": null, + "time": "17:40" + }, + { + "frame": 17017, + "killer": 1, + "name": "Colossus", + "clock_position": null, + "time": "17:43" + }, + { + "frame": 17023, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "17:43" + }, + { + "frame": 17049, + "killer": 2, + "name": "Pylon", + "clock_position": null, + "time": "17:45" + }, + { + "frame": 17088, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "17:48" + }, + { + "frame": 17510, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "18:14" + }, + { + "frame": 17530, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "18:15" + }, + { + "frame": 17538, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "18:16" + }, + { + "frame": 17595, + "killer": 2, + "name": "Immortal", + "clock_position": null, + "time": "18:19" + }, + { + "frame": 17628, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "18:21" + }, + { + "frame": 17689, + "killer": 2, + "name": "Immortal", + "clock_position": null, + "time": "18:25" + }, + { + "frame": 17695, + "killer": 1, + "name": "Immortal", + "clock_position": null, + "time": "18:25" + }, + { + "frame": 17700, + "killer": 2, + "name": "Immortal", + "clock_position": null, + "time": "18:26" + }, + { + "frame": 17730, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "18:28" + }, + { + "frame": 17747, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "18:29" + }, + { + "frame": 17751, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "18:29" + }, + { + "frame": 17784, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "18:31" + }, + { + "frame": 17784, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "18:31" + }, + { + "frame": 17875, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "18:37" + }, + { + "frame": 18145, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "18:54" + }, + { + "frame": 18244, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "19:00" + }, + { + "frame": 18270, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "19:01" + }, + { + "frame": 18314, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "19:04" + }, + { + "frame": 18353, + "killer": 1, + "name": "Pylon", + "clock_position": null, + "time": "19:07" + }, + { + "frame": 18431, + "killer": 1, + "name": "Pylon", + "clock_position": null, + "time": "19:11" + }, + { + "frame": 18903, + "killer": 2, + "name": "HighTemplar", + "clock_position": null, + "time": "19:41" + }, + { + "frame": 18912, + "killer": 2, + "name": "HighTemplar", + "clock_position": null, + "time": "19:42" + }, + { + "frame": 18939, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "19:43" + }, + { + "frame": 19027, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "19:49" + }, + { + "frame": 19027, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "19:49" + }, + { + "frame": 19055, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "19:50" + }, + { + "frame": 19076, + "killer": 2, + "name": "Archon", + "clock_position": null, + "time": "19:52" + }, + { + "frame": 19078, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "19:52" + }, + { + "frame": 19108, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "19:54" + }, + { + "frame": 19127, + "killer": 2, + "name": "Archon", + "clock_position": null, + "time": "19:55" + }, + { + "frame": 19153, + "killer": 2, + "name": "Archon", + "clock_position": null, + "time": "19:57" + }, + { + "frame": 19154, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "19:57" + }, + { + "frame": 19167, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "19:57" + }, + { + "frame": 19233, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "20:02" + }, + { + "frame": 19253, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "20:03" + }, + { + "frame": 19260, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "20:03" + }, + { + "frame": 19263, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "20:03" + }, + { + "frame": 19266, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "20:04" + }, + { + "frame": 19269, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "20:04" + }, + { + "frame": 19276, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "20:04" + }, + { + "frame": 19276, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "20:04" + }, + { + "frame": 19282, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "20:05" + }, + { + "frame": 21156, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "22:02" + }, + { + "frame": 21180, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "22:03" + }, + { + "frame": 21197, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "22:04" + }, + { + "frame": 21205, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "22:05" + }, + { + "frame": 21214, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "22:05" + }, + { + "frame": 21217, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "22:06" + }, + { + "frame": 21228, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "22:06" + }, + { + "frame": 21239, + "killer": 1, + "name": "Archon", + "clock_position": null, + "time": "22:07" + }, + { + "frame": 21247, + "killer": 2, + "name": "Zealot", + "clock_position": null, + "time": "22:07" + }, + { + "frame": 21269, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "22:09" + }, + { + "frame": 21273, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "22:09" + }, + { + "frame": 21282, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "22:10" + }, + { + "frame": 21296, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "22:11" + }, + { + "frame": 21348, + "killer": 1, + "name": "Colossus", + "clock_position": null, + "time": "22:14" + }, + { + "frame": 21350, + "killer": 1, + "name": "Colossus", + "clock_position": null, + "time": "22:14" + }, + { + "frame": 21364, + "killer": 1, + "name": "Observer", + "clock_position": null, + "time": "22:15" + }, + { + "frame": 21365, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "22:15" + }, + { + "frame": 21391, + "killer": 1, + "name": "Colossus", + "clock_position": null, + "time": "22:16" + }, + { + "frame": 21745, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "22:39" + }, + { + "frame": 21782, + "killer": 1, + "name": "Sentry", + "clock_position": null, + "time": "22:41" + }, + { + "frame": 21783, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "22:41" + }, + { + "frame": 21784, + "killer": 1, + "name": "Sentry", + "clock_position": null, + "time": "22:41" + }, + { + "frame": 21789, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "22:41" + }, + { + "frame": 21824, + "killer": 2, + "name": "PhotonCannon", + "clock_position": null, + "time": "22:44" + }, + { + "frame": 21829, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "22:44" + }, + { + "frame": 21866, + "killer": 1, + "name": "Colossus", + "clock_position": null, + "time": "22:46" + }, + { + "frame": 21885, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "22:47" + }, + { + "frame": 21887, + "killer": 1, + "name": "Immortal", + "clock_position": null, + "time": "22:47" + }, + { + "frame": 21901, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "22:48" + }, + { + "frame": 21902, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:48" + }, + { + "frame": 21918, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "22:49" + }, + { + "frame": 21958, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "22:52" + }, + { + "frame": 21962, + "killer": 1, + "name": "Pylon", + "clock_position": null, + "time": "22:52" + }, + { + "frame": 21981, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:53" + }, + { + "frame": 22000, + "killer": 1, + "name": null, + "clock_position": null, + "time": "22:55" + }, + { + "frame": 22013, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "22:55" + }, + { + "frame": 22049, + "killer": 2, + "name": "Pylon", + "clock_position": null, + "time": "22:58" + }, + { + "frame": 22082, + "killer": 2, + "name": "RoboticsFacility", + "clock_position": null, + "time": "23:00" + }, + { + "frame": 22116, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "23:02" + }, + { + "frame": 22127, + "killer": 1, + "name": "Immortal", + "clock_position": null, + "time": "23:02" + }, + { + "frame": 22148, + "killer": 1, + "name": "Pylon", + "clock_position": null, + "time": "23:04" + }, + { + "frame": 22149, + "killer": 2, + "name": "Carrier", + "clock_position": null, + "time": "23:04" + }, + { + "frame": 22195, + "killer": 1, + "name": "WarpGate", + "clock_position": null, + "time": "23:07" + }, + { + "frame": 22200, + "killer": 2, + "name": "Pylon", + "clock_position": null, + "time": "23:07" + }, + { + "frame": 22306, + "killer": 1, + "name": "CyberneticsCore", + "clock_position": null, + "time": "23:14" + }, + { + "frame": 22690, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "23:38" + }, + { + "frame": 22695, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "23:38" + }, + { + "frame": 22719, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "23:39" + }, + { + "frame": 22728, + "killer": 2, + "name": "Immortal", + "clock_position": null, + "time": "23:40" + }, + { + "frame": 22730, + "killer": 2, + "name": "HighTemplar", + "clock_position": null, + "time": "23:40" + }, + { + "frame": 22732, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "23:40" + }, + { + "frame": 22741, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "23:41" + }, + { + "frame": 22761, + "killer": 2, + "name": "Immortal", + "clock_position": null, + "time": "23:42" + }, + { + "frame": 22763, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "23:42" + }, + { + "frame": 22768, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "23:43" + }, + { + "frame": 22779, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "23:43" + }, + { + "frame": 22782, + "killer": 1, + "name": "Observer", + "clock_position": null, + "time": "23:43" + }, + { + "frame": 22783, + "killer": 2, + "name": "Immortal", + "clock_position": null, + "time": "23:43" + }, + { + "frame": 22795, + "killer": 1, + "name": "Immortal", + "clock_position": null, + "time": "23:44" + }, + { + "frame": 22796, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "23:44" + }, + { + "frame": 22815, + "killer": 2, + "name": "Immortal", + "clock_position": null, + "time": "23:45" + }, + { + "frame": 22856, + "killer": 2, + "name": "Archon", + "clock_position": null, + "time": "23:48" + }, + { + "frame": 22856, + "killer": null, + "name": "HighTemplar", + "clock_position": null, + "time": "23:48" + }, + { + "frame": 22856, + "killer": null, + "name": "HighTemplar", + "clock_position": null, + "time": "23:48" + }, + { + "frame": 22879, + "killer": 2, + "name": "Colossus", + "clock_position": null, + "time": "23:49" + }, + { + "frame": 22894, + "killer": 2, + "name": "Stalker", + "clock_position": null, + "time": "23:50" + }, + { + "frame": 22900, + "killer": 2, + "name": "Colossus", + "clock_position": null, + "time": "23:51" + }, + { + "frame": 23304, + "killer": 1, + "name": "Stargate", + "clock_position": null, + "time": "24:16" + }, + { + "frame": 23345, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "24:19" + }, + { + "frame": 23347, + "killer": 1, + "name": "VoidRay", + "clock_position": null, + "time": "24:19" + }, + { + "frame": 23374, + "killer": 1, + "name": "VoidRay", + "clock_position": null, + "time": "24:20" + }, + { + "frame": 23382, + "killer": 1, + "name": "DarkTemplar", + "clock_position": null, + "time": "24:21" + }, + { + "frame": 23403, + "killer": 1, + "name": "VoidRay", + "clock_position": null, + "time": "24:22" + }, + { + "frame": 23404, + "killer": 2, + "name": "PhotonCannon", + "clock_position": null, + "time": "24:22" + }, + { + "frame": 23417, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "24:23" + }, + { + "frame": 23445, + "killer": 1, + "name": "DarkTemplar", + "clock_position": null, + "time": "24:25" + }, + { + "frame": 23505, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "24:29" + }, + { + "frame": 23515, + "killer": 2, + "name": "PhotonCannon", + "clock_position": null, + "time": "24:29" + }, + { + "frame": 23561, + "killer": 1, + "name": "PhotonCannon", + "clock_position": null, + "time": "24:32" } - ], - "abilities": [], - "region": "us", - "race": "Protoss", - "clock_position": null, - "name": "Amon's Forces", - "is_winner": false + ], + "race": "Protoss", + "result": "Unknown", + "team": 2, + "uid": 0 } - }, - "buildOrderExtracted": true, - "cooperative": true + }, + "buildOrderExtracted": true, + "build": 62848, + "frames_per_second": 16, + "unix_timestamp": 1521950547 } \ No newline at end of file diff --git a/tests/patch_380_protoss.json b/tests/patch_380_protoss.json index b879bc7..41f059f 100644 --- a/tests/patch_380_protoss.json +++ b/tests/patch_380_protoss.json @@ -1,1397 +1,1397 @@ { - "buildOrderExtracted": true, - "message": "", - "build": 48258, - "baseBuild": 48258, - "category": "Private", - "expansion": "LotV", - "unix_timestamp": 1480199100, - "frames": 10030, - "game_type": "1v1", - "region": "us", - "map": "Echo LE (Void)", - "map_hash": "af34c3e976feaba6d3e934ed9ae2a2fbd40e01e58513567c46231133b266a4e6", - "cooperative": false, + "map": "Echo LE (Void)", + "baseBuild": 48258, + "expansion": "LotV", + "cooperative": false, + "frames": 10030, + "message": "", + "category": "Private", + "map_hash": "af34c3e976feaba6d3e934ed9ae2a2fbd40e01e58513567c46231133b266a4e6", + "include_map_details": false, + "region": "us", + "game_type": "1v1", "players": { "1": { - "name": "StoicLoofah", - "pick_race": "Protoss", - "race": "Protoss", - "league": 0, - "level": 124, - "is_winner": false, - "result": "Loss", - "is_human": true, - "handicap": 100, - "color": "540081", - "uid": 992715, - "region": "us", "supply": [ [ - 0, + 0, 12 - ], + ], [ - 1, + 1, 12 - ], + ], [ - 160, + 160, 12 - ], + ], [ - 320, + 320, 13 - ], + ], [ - 480, + 480, 14 - ], + ], [ - 640, + 640, 14 - ], + ], [ - 800, + 800, 15 - ], + ], [ - 960, + 960, 15 - ], + ], [ - 1120, + 1120, 16 - ], + ], [ - 1280, + 1280, 17 - ], + ], [ - 1440, + 1440, 17 - ], + ], [ - 1600, + 1600, 18 - ], + ], [ - 1760, + 1760, 19 - ], + ], [ - 1920, + 1920, 19 - ], + ], [ - 2080, + 2080, 20 - ], + ], [ - 2240, + 2240, 21 - ], + ], [ - 2400, + 2400, 21 - ], + ], [ - 2560, + 2560, 22 - ], + ], [ - 2720, + 2720, 23 - ], + ], [ - 2880, + 2880, 23 - ], + ], [ - 3040, + 3040, 24 - ], + ], [ - 3200, + 3200, 27 - ], + ], [ - 3360, + 3360, 27 - ], + ], [ - 3520, + 3520, 29 - ], + ], [ - 3680, + 3680, 29 - ], + ], [ - 3840, + 3840, 29 - ], + ], [ - 4000, + 4000, 29 - ], + ], [ - 4160, + 4160, 29 - ], + ], [ - 4320, + 4320, 29 - ], + ], [ - 4480, + 4480, 30 - ], + ], [ - 4640, + 4640, 30 - ], + ], [ - 4800, + 4800, 33 - ], + ], [ - 4960, + 4960, 33 - ], + ], [ - 5120, + 5120, 34 - ], + ], [ - 5280, + 5280, 34 - ], + ], [ - 5440, + 5440, 34 - ], + ], [ - 5600, + 5600, 35 - ], + ], [ - 5760, + 5760, 35 - ], + ], [ - 5920, + 5920, 35 - ], + ], [ - 6080, + 6080, 39 - ], + ], [ - 6240, + 6240, 39 - ], + ], [ - 6400, + 6400, 39 - ], + ], [ - 6560, + 6560, 39 - ], + ], [ - 6720, + 6720, 39 - ], + ], [ - 6880, + 6880, 39 - ], + ], [ - 7040, + 7040, 39 - ], + ], [ - 7200, + 7200, 42 - ], + ], [ - 7360, + 7360, 42 - ], + ], [ - 7520, + 7520, 42 - ], + ], [ - 7680, + 7680, 42 - ], + ], [ - 7840, + 7840, 42 - ], + ], [ - 8000, + 8000, 48 - ], + ], [ - 8160, + 8160, 48 - ], + ], [ - 8320, + 8320, 49 - ], + ], [ - 8480, + 8480, 49 - ], + ], [ - 8640, + 8640, 49 - ], + ], [ - 8800, + 8800, 49 - ], + ], [ - 8960, + 8960, 49 - ], + ], [ - 9120, + 9120, 49 - ], + ], [ - 9280, + 9280, 49 - ], + ], [ - 9440, + 9440, 49 - ], + ], [ - 9600, + 9600, 49 - ], + ], [ - 9760, + 9760, 49 - ], + ], [ - 9920, + 9920, 49 - ], + ], [ - 10030, + 10030, 49 - ], + ], [ - 10030, + 10030, 49 ] - ], - "team": 1, - "clock_position": null, - "commander": "", - "abilities": [ + ], + "league": 0, + "buildOrder": [ { - "frame": 4037, - "time": "3:00", - "name": "AdeptPhaseShift" - }, - { - "frame": 5046, - "time": "3:45", - "name": "MothershipCorePurifyNexus" - }, - { - "frame": 5731, - "time": "4:15", - "name": "OracleStasisTrap" - }, - { - "frame": 7655, - "time": "5:41", - "name": "TemporalField" - }, - { - "frame": 8404, - "time": "6:15", - "name": "MassRecallMothershipCore" + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 12, + "frame": 233.20000000000005, + "is_chronoboosted": true, + "time": "0:10" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 13, + "frame": 469.20000000000005, + "is_chronoboosted": true, + "time": "0:20" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 14, + "frame": 609, + "is_chronoboosted": false, + "time": "0:27" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 14, + "frame": 727.2, + "is_chronoboosted": true, + "time": "0:32" + }, + { + "is_worker": false, + "name": "Assimilator", + "clock_position": null, + "supply": 15, + "frame": 814, + "is_chronoboosted": false, + "time": "0:36" + }, + { + "is_worker": false, + "name": "Assimilator", + "clock_position": null, + "supply": 15, + "frame": 864, + "is_chronoboosted": false, + "time": "0:38" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 15, + "frame": 1018.2, + "is_chronoboosted": true, + "time": "0:45" + }, + { + "is_worker": false, + "name": "Gateway", + "clock_position": null, + "supply": 16, + "frame": 1151, + "is_chronoboosted": false, + "time": "0:51" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 16, + "frame": 1254.2, + "is_chronoboosted": true, + "time": "0:55" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 17, + "frame": 1490.2, + "is_chronoboosted": true, + "time": "1:06" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 18, + "frame": 1726.2, + "is_chronoboosted": true, + "time": "1:17" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 19, + "frame": 1962.2, + "is_chronoboosted": true, + "time": "1:27" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 20, + "frame": 2198.2, + "is_chronoboosted": true, + "time": "1:38" + }, + { + "is_worker": false, + "name": "CyberneticsCore", + "clock_position": null, + "supply": 21, + "frame": 2273, + "is_chronoboosted": false, + "time": "1:41" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 21, + "frame": 2434.2, + "is_chronoboosted": true, + "time": "1:48" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 21, + "frame": 2514, + "is_chronoboosted": false, + "time": "1:52" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 22, + "frame": 2595, + "is_chronoboosted": false, + "time": "1:55" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 22, + "frame": 2670.2, + "is_chronoboosted": true, + "time": "1:59" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 23, + "frame": 2922.2, + "is_chronoboosted": true, + "time": "2:10" + }, + { + "is_worker": false, + "name": "Adept", + "clock_position": null, + "supply": 24, + "frame": 3085.0, + "is_chronoboosted": false, + "time": "2:17" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 24, + "frame": 3158.2, + "is_chronoboosted": true, + "time": "2:20" + }, + { + "is_worker": false, + "name": "TwilightCouncil", + "clock_position": null, + "supply": 27, + "frame": 3221, + "is_chronoboosted": false, + "time": "2:23" + }, + { + "is_worker": false, + "name": "Stargate", + "clock_position": null, + "supply": 27, + "frame": 3302, + "is_chronoboosted": false, + "time": "2:27" + }, + { + "is_worker": false, + "name": "Mothership Core", + "clock_position": null, + "supply": 27, + "frame": 3460.6, + "is_chronoboosted": true, + "time": "2:34" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 29, + "frame": 4435.2, + "is_chronoboosted": true, + "time": "3:18" + }, + { + "is_worker": false, + "name": "DarkShrine", + "clock_position": null, + "supply": 30, + "frame": 4581, + "is_chronoboosted": false, + "time": "3:24" + }, + { + "is_worker": false, + "name": "Oracle", + "clock_position": null, + "supply": 30, + "frame": 4703.2, + "is_chronoboosted": false, + "time": "3:29" + }, + { + "is_worker": false, + "name": "RoboticsFacility", + "clock_position": null, + "supply": 30, + "frame": 4718, + "is_chronoboosted": false, + "time": "3:30" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 33, + "frame": 5017.2, + "is_chronoboosted": true, + "time": "3:43" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 34, + "frame": 5508.2, + "is_chronoboosted": true, + "time": "4:05" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 35, + "frame": 6001.4, + "is_chronoboosted": false, + "time": "4:27" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 39, + "frame": 6084, + "is_chronoboosted": false, + "time": "4:31" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 39, + "frame": 6108, + "is_chronoboosted": false, + "time": "4:32" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 39, + "frame": 6139, + "is_chronoboosted": false, + "time": "4:34" + }, + { + "is_worker": false, + "name": "FleetBeacon", + "clock_position": null, + "supply": 39, + "frame": 6462, + "is_chronoboosted": false, + "time": "4:48" + }, + { + "is_worker": false, + "name": "Dark Templar", + "clock_position": null, + "supply": 39, + "frame": 7070.4, + "is_chronoboosted": false, + "time": "5:15" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 39, + "frame": 7154.2, + "is_chronoboosted": true, + "time": "5:19" + }, + { + "is_worker": false, + "name": "Shadow Stride", + "clock_position": null, + "supply": 42, + "frame": 7203.0, + "is_chronoboosted": false, + "time": "5:21" + }, + { + "is_worker": false, + "name": "Tempest", + "clock_position": null, + "supply": 42, + "frame": 7960.8, + "is_chronoboosted": false, + "time": "5:55" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 48, + "frame": 8192.2, + "is_chronoboosted": true, + "time": "6:05" } - ], - "buildOrder": [ + ], + "abilities": [ { - "frame": 233.20000000000005, - "time": "0:10", - "name": "Probe", - "supply": 12, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 469.20000000000005, - "time": "0:20", - "name": "Probe", - "supply": 13, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 609, - "time": "0:27", - "name": "Pylon", - "supply": 14, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 727.2, - "time": "0:32", - "name": "Probe", - "supply": 14, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 814, - "time": "0:36", - "name": "Assimilator", - "supply": 15, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 864, - "time": "0:38", - "name": "Assimilator", - "supply": 15, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 1018.2, - "time": "0:45", - "name": "Probe", - "supply": 15, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 1151, - "time": "0:51", - "name": "Gateway", - "supply": 16, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 1254.2, - "time": "0:55", - "name": "Probe", - "supply": 16, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 1490.2, - "time": "1:06", - "name": "Probe", - "supply": 17, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 1726.2, - "time": "1:17", - "name": "Probe", - "supply": 18, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 1962.2, - "time": "1:27", - "name": "Probe", - "supply": 19, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 2198.2, - "time": "1:38", - "name": "Probe", - "supply": 20, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 2273, - "time": "1:41", - "name": "CyberneticsCore", - "supply": 21, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 2434.2, - "time": "1:48", - "name": "Probe", - "supply": 21, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 2514, - "time": "1:52", - "name": "Pylon", - "supply": 21, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 2595, - "time": "1:55", - "name": "Pylon", - "supply": 22, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 2670.2, - "time": "1:59", - "name": "Probe", - "supply": 22, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 2922.2, - "time": "2:10", - "name": "Probe", - "supply": 23, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 3085.0, - "time": "2:17", - "name": "Adept", - "supply": 24, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 3158.2, - "time": "2:20", - "name": "Probe", - "supply": 24, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 3221, - "time": "2:23", - "name": "TwilightCouncil", - "supply": 27, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 3302, - "time": "2:27", - "name": "Stargate", - "supply": 27, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 3460.6, - "time": "2:34", - "name": "MothershipCore", - "supply": 27, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 4435.2, - "time": "3:18", - "name": "Probe", - "supply": 29, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 4581, - "time": "3:24", - "name": "DarkShrine", - "supply": 30, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 4703.2, - "time": "3:29", - "name": "Oracle", - "supply": 30, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 4718, - "time": "3:30", - "name": "RoboticsFacility", - "supply": 30, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 5017.2, - "time": "3:43", - "name": "Probe", - "supply": 33, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 5508.2, - "time": "4:05", - "name": "Probe", - "supply": 34, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 6001.4, - "time": "4:27", - "name": "Immortal", - "supply": 35, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 6084, - "time": "4:31", - "name": "Pylon", - "supply": 39, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 6108, - "time": "4:32", - "name": "Pylon", - "supply": 39, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 6139, - "time": "4:34", - "name": "Pylon", - "supply": 39, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 6462, - "time": "4:48", - "name": "FleetBeacon", - "supply": 39, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 7070.4, - "time": "5:15", - "name": "DarkTemplar", - "supply": 39, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 7154.2, - "time": "5:19", - "name": "Probe", - "supply": 39, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true - }, - { - "frame": 7203.0, - "time": "5:21", - "name": "Shadow Stride", - "supply": 42, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 7960.8, - "time": "5:55", - "name": "Tempest", - "supply": 42, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 8192.2, - "time": "6:05", - "name": "Probe", - "supply": 48, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": true + "frame": 4037, + "name": "AdeptPhaseShift", + "time": "3:00" + }, + { + "frame": 5046, + "name": "MothershipCorePurifyNexus", + "time": "3:45" + }, + { + "frame": 5731, + "name": "OracleStasisTrap", + "time": "4:15" + }, + { + "frame": 7655, + "name": "TemporalField", + "time": "5:41" + }, + { + "frame": 8404, + "name": "MassRecallMothershipCore", + "time": "6:15" } - ], - "unitsLost": [] - }, + ], + "name": "StoicLoofah", + "is_human": true, + "level": 124, + "handicap": 100, + "region": "us", + "is_winner": false, + "pick_race": "Protoss", + "clock_position": null, + "commander": "", + "color": "540081", + "unitsLost": [], + "race": "Protoss", + "result": "Loss", + "team": 1, + "uid": 992715 + }, "2": { - "name": "A.I. 1 (Very Easy)", - "pick_race": "Zerg", - "race": "Zerg", - "league": null, - "level": null, - "is_winner": true, - "result": "Win", - "is_human": false, - "handicap": 100, - "color": "0042FF", - "uid": 0, - "region": "us", "supply": [ [ - 0, + 0, 12 - ], + ], [ - 1, + 1, 12 - ], + ], [ - 160, + 160, 13 - ], + ], [ - 320, + 320, 13 - ], + ], [ - 480, + 480, 14 - ], + ], [ - 640, + 640, 14 - ], + ], [ - 800, + 800, 14 - ], + ], [ - 960, + 960, 13 - ], + ], [ - 1120, + 1120, 14 - ], + ], [ - 1280, + 1280, 14 - ], + ], [ - 1440, + 1440, 14 - ], + ], [ - 1600, + 1600, 14 - ], + ], [ - 1760, + 1760, 14 - ], + ], [ - 1920, + 1920, 17 - ], + ], [ - 2080, + 2080, 17 - ], + ], [ - 2240, + 2240, 16 - ], + ], [ - 2400, + 2400, 18 - ], + ], [ - 2560, + 2560, 18 - ], + ], [ - 2720, + 2720, 20 - ], + ], [ - 2880, + 2880, 20 - ], + ], [ - 3040, + 3040, 21 - ], + ], [ - 3200, + 3200, 22 - ], + ], [ - 3360, + 3360, 22 - ], + ], [ - 3520, + 3520, 23 - ], + ], [ - 3680, + 3680, 24 - ], + ], [ - 3840, + 3840, 25 - ], + ], [ - 4000, + 4000, 25 - ], + ], [ - 4160, + 4160, 25 - ], + ], [ - 4320, + 4320, 25 - ], + ], [ - 4480, + 4480, 25 - ], + ], [ - 4640, + 4640, 25 - ], + ], [ - 4800, + 4800, 25 - ], + ], [ - 4960, + 4960, 25 - ], + ], [ - 5120, + 5120, 25 - ], + ], [ - 5280, + 5280, 25 - ], + ], [ - 5440, + 5440, 25 - ], + ], [ - 5600, + 5600, 25 - ], + ], [ - 5760, + 5760, 25 - ], + ], [ - 5920, + 5920, 25 - ], + ], [ - 6080, + 6080, 25 - ], + ], [ - 6240, + 6240, 25 - ], + ], [ - 6400, + 6400, 25 - ], + ], [ - 6560, + 6560, 25 - ], + ], [ - 6720, + 6720, 25 - ], + ], [ - 6880, + 6880, 25 - ], + ], [ - 7040, + 7040, 25 - ], + ], [ - 7200, + 7200, 25 - ], + ], [ - 7360, + 7360, 25 - ], + ], [ - 7520, + 7520, 25 - ], + ], [ - 7680, + 7680, 25 - ], + ], [ - 7840, + 7840, 28 - ], + ], [ - 8000, + 8000, 29 - ], + ], [ - 8160, + 8160, 30 - ], + ], [ - 8320, + 8320, 30 - ], + ], [ - 8480, + 8480, 31 - ], + ], [ - 8640, + 8640, 32 - ], + ], [ - 8800, + 8800, 34 - ], + ], [ - 8960, + 8960, 34 - ], + ], [ - 9120, + 9120, 31 - ], + ], [ - 9280, + 9280, 31 - ], + ], [ - 9440, + 9440, 31 - ], + ], [ - 9600, + 9600, 31 - ], + ], [ - 9760, + 9760, 33 - ], + ], [ - 9920, + 9920, 34 - ], + ], [ - 10030, + 10030, 34 ] - ], - "team": 2, - "clock_position": null, - "commander": "", - "abilities": [], + ], + "league": null, "buildOrder": [ { - "frame": 28.200000000000045, - "time": "0:01", - "name": "Drone", - "supply": 12, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 290.8, - "time": "0:12", - "name": "Overlord", - "supply": 13, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 379.20000000000005, - "time": "0:16", - "name": "Drone", - "supply": 13, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 804, - "time": "0:35", - "name": "SpawningPool", - "supply": 14, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 835, - "time": "0:37", - "name": "Extractor", - "supply": 14, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 893.2, - "time": "0:39", - "name": "Drone", - "supply": 14, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 1053.2, - "time": "0:47", - "name": "Drone", - "supply": 13, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 1168.8, - "time": "0:52", - "name": "Overlord", - "supply": 14, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 1873.2, - "time": "1:23", - "name": "Zergling", - "supply": 14, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 1873.2, - "time": "1:23", - "name": "Zergling", - "supply": 14, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 1882.6, - "time": "1:24", - "name": "Queen", - "supply": 14, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 2099, - "time": "1:33", - "name": "RoachWarren", - "supply": 17, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 2130, - "time": "1:35", - "name": "Extractor", - "supply": 17, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 2220.2, - "time": "1:39", - "name": "Drone", - "supply": 17, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 2289.2, - "time": "1:42", - "name": "Zergling", - "supply": 16, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 2289.2, - "time": "1:42", - "name": "Zergling", - "supply": 16, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 2380.2, - "time": "1:46", - "name": "Drone", - "supply": 16, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 2700.2, - "time": "2:00", - "name": "Drone", - "supply": 18, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 2706.2, - "time": "2:00", - "name": "Zergling", - "supply": 18, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 2706.2, - "time": "2:00", - "name": "Zergling", - "supply": 18, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 2940.2, - "time": "2:11", - "name": "Drone", - "supply": 20, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 3180.2, - "time": "2:21", - "name": "Drone", - "supply": 21, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 3389.2, - "time": "2:31", - "name": "Drone", - "supply": 22, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 3416.8, - "time": "2:32", - "name": "Overlord", - "supply": 22, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 3549.2, - "time": "2:38", - "name": "Drone", - "supply": 23, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 3709.2, - "time": "2:45", - "name": "Drone", - "supply": 24, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 7784.4, - "time": "5:47", - "name": "Roach", - "supply": 25, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 7787.2, - "time": "5:47", - "name": "Drone", - "supply": 25, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 7796.2, - "time": "5:48", - "name": "Lair", - "supply": 25, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 7796.8, - "time": "5:48", - "name": "Overlord", - "supply": 25, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 7947.2, - "time": "5:54", - "name": "Drone", - "supply": 28, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 8112.2, - "time": "6:02", - "name": "Drone", - "supply": 29, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 8272.2, - "time": "6:09", - "name": "Drone", - "supply": 30, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 8282, - "time": "6:09", - "name": "Hatchery", - "supply": 30, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 8432.2, - "time": "6:16", - "name": "Drone", - "supply": 30, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 8592.2, - "time": "6:23", - "name": "Drone", - "supply": 31, - "is_worker": true, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 8763.4, - "time": "6:31", - "name": "Roach", - "supply": 32, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 9081.2, - "time": "6:45", - "name": "Overseer", - "supply": 34, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false - }, - { - "frame": 9150.2, - "time": "6:48", - "name": "Overseer", - "supply": 31, - "is_worker": false, - "clock_position": null, - "is_chronoboosted": false + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 12, + "frame": 28.200000000000045, + "is_chronoboosted": false, + "time": "0:01" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 13, + "frame": 290.8, + "is_chronoboosted": false, + "time": "0:12" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 13, + "frame": 379.20000000000005, + "is_chronoboosted": false, + "time": "0:16" + }, + { + "is_worker": false, + "name": "SpawningPool", + "clock_position": null, + "supply": 14, + "frame": 804, + "is_chronoboosted": false, + "time": "0:35" + }, + { + "is_worker": false, + "name": "Extractor", + "clock_position": null, + "supply": 14, + "frame": 835, + "is_chronoboosted": false, + "time": "0:37" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 14, + "frame": 893.2, + "is_chronoboosted": false, + "time": "0:39" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 13, + "frame": 1053.2, + "is_chronoboosted": false, + "time": "0:47" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 14, + "frame": 1168.8, + "is_chronoboosted": false, + "time": "0:52" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 14, + "frame": 1873.2, + "is_chronoboosted": false, + "time": "1:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 14, + "frame": 1873.2, + "is_chronoboosted": false, + "time": "1:23" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 14, + "frame": 1882.6, + "is_chronoboosted": false, + "time": "1:24" + }, + { + "is_worker": false, + "name": "RoachWarren", + "clock_position": null, + "supply": 17, + "frame": 2099, + "is_chronoboosted": false, + "time": "1:33" + }, + { + "is_worker": false, + "name": "Extractor", + "clock_position": null, + "supply": 17, + "frame": 2130, + "is_chronoboosted": false, + "time": "1:35" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 17, + "frame": 2220.2, + "is_chronoboosted": false, + "time": "1:39" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 16, + "frame": 2289.2, + "is_chronoboosted": false, + "time": "1:42" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 16, + "frame": 2289.2, + "is_chronoboosted": false, + "time": "1:42" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 16, + "frame": 2380.2, + "is_chronoboosted": false, + "time": "1:46" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 18, + "frame": 2700.2, + "is_chronoboosted": false, + "time": "2:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 18, + "frame": 2706.2, + "is_chronoboosted": false, + "time": "2:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 18, + "frame": 2706.2, + "is_chronoboosted": false, + "time": "2:00" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 20, + "frame": 2940.2, + "is_chronoboosted": false, + "time": "2:11" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 21, + "frame": 3180.2, + "is_chronoboosted": false, + "time": "2:21" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 22, + "frame": 3389.2, + "is_chronoboosted": false, + "time": "2:31" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 22, + "frame": 3416.8, + "is_chronoboosted": false, + "time": "2:32" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 23, + "frame": 3549.2, + "is_chronoboosted": false, + "time": "2:38" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 24, + "frame": 3709.2, + "is_chronoboosted": false, + "time": "2:45" + }, + { + "is_worker": false, + "name": "Roach", + "clock_position": null, + "supply": 25, + "frame": 7784.4, + "is_chronoboosted": false, + "time": "5:47" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 25, + "frame": 7787.2, + "is_chronoboosted": false, + "time": "5:47" + }, + { + "is_worker": false, + "name": "Lair", + "clock_position": null, + "supply": 25, + "frame": 7796.2, + "is_chronoboosted": false, + "time": "5:48" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 25, + "frame": 7796.8, + "is_chronoboosted": false, + "time": "5:48" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 28, + "frame": 7947.2, + "is_chronoboosted": false, + "time": "5:54" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 29, + "frame": 8112.2, + "is_chronoboosted": false, + "time": "6:02" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 30, + "frame": 8272.2, + "is_chronoboosted": false, + "time": "6:09" + }, + { + "is_worker": false, + "name": "Hatchery", + "clock_position": null, + "supply": 30, + "frame": 8282, + "is_chronoboosted": false, + "time": "6:09" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 30, + "frame": 8432.2, + "is_chronoboosted": false, + "time": "6:16" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 31, + "frame": 8592.2, + "is_chronoboosted": false, + "time": "6:23" + }, + { + "is_worker": false, + "name": "Roach", + "clock_position": null, + "supply": 32, + "frame": 8763.4, + "is_chronoboosted": false, + "time": "6:31" + }, + { + "is_worker": false, + "name": "Overseer", + "clock_position": null, + "supply": 34, + "frame": 9081.2, + "is_chronoboosted": false, + "time": "6:45" + }, + { + "is_worker": false, + "name": "Overseer", + "clock_position": null, + "supply": 31, + "frame": 9150.2, + "is_chronoboosted": false, + "time": "6:48" } - ], + ], + "abilities": [], + "name": "A.I. 1 (Very Easy)", + "is_human": false, + "level": null, + "handicap": 100, + "region": "us", + "is_winner": true, + "pick_race": "Zerg", + "clock_position": null, + "commander": "", + "color": "0042FF", "unitsLost": [ { - "frame": 1315, - "time": "0:58", - "name": "Drone", - "killer": null, - "clock_position": null - }, - { - "frame": 1844, - "time": "1:22", - "name": "Drone", - "killer": null, - "clock_position": null - }, - { - "frame": 2611, - "time": "1:56", - "name": "Drone", - "killer": null, - "clock_position": null - }, - { - "frame": 2980, - "time": "2:13", - "name": "Drone", - "killer": null, - "clock_position": null - }, - { - "frame": 9005, - "time": "6:42", - "name": "Zergling", - "killer": 1, - "clock_position": null - }, - { - "frame": 9052, - "time": "6:44", - "name": "Zergling", - "killer": 1, - "clock_position": null - }, - { - "frame": 9062, - "time": "6:44", - "name": "Zergling", - "killer": 1, - "clock_position": null - }, - { - "frame": 9099, - "time": "6:46", - "name": "Zergling", - "killer": 1, - "clock_position": null - }, - { - "frame": 9108, - "time": "6:46", - "name": "Zergling", - "killer": 1, - "clock_position": null - }, - { - "frame": 9882, - "time": "7:21", - "name": "Drone", - "killer": null, - "clock_position": null + "frame": 1315, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "0:58" + }, + { + "frame": 1844, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "1:22" + }, + { + "frame": 2611, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "1:56" + }, + { + "frame": 2980, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "2:13" + }, + { + "frame": 9005, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:42" + }, + { + "frame": 9052, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:44" + }, + { + "frame": 9062, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:44" + }, + { + "frame": 9099, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:46" + }, + { + "frame": 9108, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:46" + }, + { + "frame": 9882, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "7:21" } - ] + ], + "race": "Zerg", + "result": "Win", + "team": 2, + "uid": 0 } - }, - "include_map_details": false, - "frames_per_second": 22.4 + }, + "buildOrderExtracted": true, + "build": 48258, + "frames_per_second": 22.4, + "unix_timestamp": 1480199100 } \ No newline at end of file diff --git a/tests/patch_400.json b/tests/patch_400.json index 3714e9e..6ae11fe 100644 --- a/tests/patch_400.json +++ b/tests/patch_400.json @@ -1,4149 +1,4149 @@ { - "include_map_details": false, - "frames_per_second": 22.4, - "map": "Odyssey LE", - "message": "", - "region": "eu", - "cooperative": false, - "category": "Ladder", - "build": 59587, - "map_hash": "65c47b7f5e3fbddd141fd947fbb5646400c697fd31be447d08a4db746dc0dba3", - "baseBuild": 59587, - "game_type": "1v1", - "unix_timestamp": 1510744144, - "expansion": "LotV", + "map": "Odyssey LE", + "baseBuild": 59587, + "expansion": "LotV", + "cooperative": false, + "frames": 9991, + "message": "", + "category": "Ladder", + "map_hash": "65c47b7f5e3fbddd141fd947fbb5646400c697fd31be447d08a4db746dc0dba3", + "include_map_details": false, + "region": "eu", + "game_type": "1v1", "players": { "1": { - "is_human": true, - "league": 0, - "unitsLost": [ - { - "name": "Drone", - "frame": 2676, - "clock_position": null, - "time": "1:59", - "killer": null - }, - { - "name": "Drone", - "frame": 2808, - "clock_position": null, - "time": "2:05", - "killer": null - }, - { - "name": "Drone", - "frame": 3471, - "clock_position": null, - "time": "2:34", - "killer": null - }, - { - "name": "Drone", - "frame": 5949, - "clock_position": null, - "time": "4:25", - "killer": null - }, - { - "name": "Drone", - "frame": 6707, - "clock_position": null, - "time": "4:59", - "killer": null - }, - { - "name": "Drone", - "frame": 7920, - "clock_position": null, - "time": "5:53", - "killer": null - }, - { - "name": "Drone", - "frame": 8006, - "clock_position": null, - "time": "5:57", - "killer": null - }, - { - "name": "Zergling", - "frame": 8111, - "clock_position": null, - "time": "6:02", - "killer": null - }, - { - "name": "Zergling", - "frame": 8117, - "clock_position": null, - "time": "6:02", - "killer": null - }, - { - "name": "Zergling", - "frame": 8118, - "clock_position": null, - "time": "6:02", - "killer": null - }, - { - "name": "Zergling", - "frame": 8118, - "clock_position": null, - "time": "6:02", - "killer": null - }, - { - "name": "Zergling", - "frame": 8120, - "clock_position": null, - "time": "6:02", - "killer": null - }, - { - "name": "Zergling", - "frame": 8121, - "clock_position": null, - "time": "6:02", - "killer": null - }, - { - "name": "Zergling", - "frame": 8121, - "clock_position": null, - "time": "6:02", - "killer": null - }, - { - "name": "Zergling", - "frame": 8121, - "clock_position": null, - "time": "6:02", - "killer": null - }, - { - "name": "Zergling", - "frame": 8123, - "clock_position": null, - "time": "6:02", - "killer": null - }, - { - "name": "Zergling", - "frame": 8133, - "clock_position": null, - "time": "6:03", - "killer": null - }, - { - "name": "Zergling", - "frame": 8139, - "clock_position": null, - "time": "6:03", - "killer": null - }, - { - "name": "Zergling", - "frame": 8140, - "clock_position": null, - "time": "6:03", - "killer": null - }, - { - "name": "Zergling", - "frame": 8266, - "clock_position": null, - "time": "6:09", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 8792, - "clock_position": null, - "time": "6:32", - "killer": 2 - }, - { - "name": "Baneling", - "frame": 8844, - "clock_position": null, - "time": "6:34", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 8844, - "clock_position": null, - "time": "6:34", - "killer": 2 - }, - { - "name": "Baneling", - "frame": 8857, - "clock_position": null, - "time": "6:35", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8864, - "clock_position": null, - "time": "6:35", - "killer": null - }, - { - "name": "Baneling", - "frame": 8894, - "clock_position": null, - "time": "6:37", - "killer": 2 - }, - { - "name": "Drone", - "frame": 8912, - "clock_position": null, - "time": "6:37", - "killer": null - }, - { - "name": "Zergling", - "frame": 8919, - "clock_position": null, - "time": "6:38", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 8924, - "clock_position": null, - "time": "6:38", - "killer": 2 - }, - { - "name": "Baneling", - "frame": 8925, - "clock_position": null, - "time": "6:38", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8926, - "clock_position": null, - "time": "6:38", - "killer": 2 - }, - { - "name": "Baneling", - "frame": 8927, - "clock_position": null, - "time": "6:38", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8932, - "clock_position": null, - "time": "6:38", - "killer": null - }, - { - "name": "Zergling", - "frame": 8947, - "clock_position": null, - "time": "6:39", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 8958, - "clock_position": null, - "time": "6:39", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 8967, - "clock_position": null, - "time": "6:40", - "killer": 2 - }, - { - "name": "Baneling", - "frame": 8995, - "clock_position": null, - "time": "6:41", - "killer": 2 - }, - { - "name": "Baneling", - "frame": 9018, - "clock_position": null, - "time": "6:42", - "killer": 2 - }, - { - "name": "Baneling", - "frame": 9026, - "clock_position": null, - "time": "6:42", - "killer": 2 - }, - { - "name": "Drone", - "frame": 9034, - "clock_position": null, - "time": "6:43", - "killer": null - }, - { - "name": "Baneling", - "frame": 9038, - "clock_position": null, - "time": "6:43", - "killer": 2 - }, - { - "name": "Baneling", - "frame": 9046, - "clock_position": null, - "time": "6:43", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9062, - "clock_position": null, - "time": "6:44", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9072, - "clock_position": null, - "time": "6:45", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9075, - "clock_position": null, - "time": "6:45", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9140, - "clock_position": null, - "time": "6:48", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9143, - "clock_position": null, - "time": "6:48", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9193, - "clock_position": null, - "time": "6:50", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9197, - "clock_position": null, - "time": "6:50", - "killer": 2 - }, - { - "name": "Baneling", - "frame": 9235, - "clock_position": null, - "time": "6:52", - "killer": 1 - }, - { - "name": "Baneling", - "frame": 9236, - "clock_position": null, - "time": "6:52", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 9245, - "clock_position": null, - "time": "6:52", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9417, - "clock_position": null, - "time": "7:00", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9488, - "clock_position": null, - "time": "7:03", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9609, - "clock_position": null, - "time": "7:08", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9628, - "clock_position": null, - "time": "7:09", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9691, - "clock_position": null, - "time": "7:12", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9711, - "clock_position": null, - "time": "7:13", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9717, - "clock_position": null, - "time": "7:13", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9718, - "clock_position": null, - "time": "7:13", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9740, - "clock_position": null, - "time": "7:14", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9744, - "clock_position": null, - "time": "7:15", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9772, - "clock_position": null, - "time": "7:16", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 9784, - "clock_position": null, - "time": "7:16", - "killer": 2 - } - ], - "color": "B4141E", - "abilities": [ - { - "name": "SpawnLarva", - "frame": 3613, - "time": "2:41" - }, - { - "name": "SpawnLarva", - "frame": 4351, - "time": "3:14" - }, - { - "name": "SpawnLarva", - "frame": 5298, - "time": "3:56" - }, - { - "name": "SpawnLarva", - "frame": 6206, - "time": "4:37" - }, - { - "name": "SpawnLarva", - "frame": 6624, - "time": "4:55" - }, - { - "name": "SpawnLarva", - "frame": 7560, - "time": "5:37" - }, - { - "name": "SpawnLarva", - "frame": 7574, - "time": "5:38" - }, - { - "name": "SpawnLarva", - "frame": 7621, - "time": "5:40" - }, - { - "name": "SpawnLarva", - "frame": 7944, - "time": "5:54" - }, - { - "name": "SpawnLarva", - "frame": 8060, - "time": "5:59" - }, - { - "name": "SpawnLarva", - "frame": 8638, - "time": "6:25" - } - ], - "result": "Win", - "is_winner": true, - "region": "eu", - "level": 4294967295, - "pick_race": "Random", "supply": [ [ - 0, + 0, 12 - ], + ], [ - 1, + 1, 12 - ], + ], [ - 160, + 160, 13 - ], + ], [ - 320, + 320, 13 - ], + ], [ - 480, + 480, 14 - ], + ], [ - 640, + 640, 14 - ], + ], [ - 800, + 800, 17 - ], + ], [ - 960, + 960, 17 - ], + ], [ - 1120, + 1120, 17 - ], + ], [ - 1280, + 1280, 16 - ], + ], [ - 1440, + 1440, 17 - ], + ], [ - 1600, + 1600, 17 - ], + ], [ - 1760, + 1760, 18 - ], + ], [ - 1920, + 1920, 19 - ], + ], [ - 2080, + 2080, 20 - ], + ], [ - 2240, + 2240, 20 - ], + ], [ - 2400, + 2400, 20 - ], + ], [ - 2560, + 2560, 21 - ], + ], [ - 2720, + 2720, 21 - ], + ], [ - 2880, + 2880, 26 - ], + ], [ - 3040, + 3040, 27 - ], + ], [ - 3200, + 3200, 29 - ], + ], [ - 3360, + 3360, 30 - ], + ], [ - 3520, + 3520, 31 - ], + ], [ - 3680, + 3680, 35 - ], + ], [ - 3840, + 3840, 35 - ], + ], [ - 4000, + 4000, 35 - ], + ], [ - 4160, + 4160, 36 - ], + ], [ - 4320, + 4320, 36 - ], + ], [ - 4480, + 4480, 35 - ], + ], [ - 4640, + 4640, 35 - ], + ], [ - 4800, + 4800, 44 - ], + ], [ - 4960, + 4960, 44 - ], + ], [ - 5120, + 5120, 44 - ], + ], [ - 5280, + 5280, 44 - ], + ], [ - 5440, + 5440, 44 - ], + ], [ - 5600, + 5600, 44 - ], + ], [ - 5760, + 5760, 43 - ], + ], [ - 5920, + 5920, 51 - ], + ], [ - 6080, + 6080, 51 - ], + ], [ - 6240, + 6240, 51 - ], + ], [ - 6400, + 6400, 51 - ], + ], [ - 6560, + 6560, 51 - ], + ], [ - 6720, + 6720, 56 - ], + ], [ - 6880, + 6880, 56 - ], + ], [ - 7040, + 7040, 65 - ], + ], [ - 7200, + 7200, 65 - ], + ], [ - 7360, + 7360, 65 - ], + ], [ - 7520, + 7520, 63 - ], + ], [ - 7680, + 7680, 63 - ], + ], [ - 7840, + 7840, 79 - ], + ], [ - 8000, + 8000, 80 - ], + ], [ - 8160, + 8160, 86 - ], + ], [ - 8320, + 8320, 85 - ], + ], [ - 8480, + 8480, 82 - ], + ], [ - 8640, + 8640, 87 - ], + ], [ - 8800, + 8800, 87 - ], + ], [ - 8960, + 8960, 81 - ], + ], [ - 9120, + 9120, 77 - ], + ], [ - 9280, + 9280, 73 - ], + ], [ - 9440, + 9440, 79 - ], + ], [ - 9600, + 9600, 91 - ], + ], [ - 9760, + 9760, 87 - ], + ], [ - 9920, + 9920, 86 - ], + ], [ - 9947, + 9947, 86 ] - ], - "name": "Slimper", - "commander": "", + ], + "league": 0, "buildOrder": [ { - "name": "Drone", - "is_worker": true, - "frame": 20.200000000000045, - "clock_position": null, - "time": "0:00", - "is_chronoboosted": false, - "supply": 12 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 282.8, - "clock_position": null, - "time": "0:12", - "is_chronoboosted": false, - "supply": 13 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 452.20000000000005, - "clock_position": null, - "time": "0:20", - "is_chronoboosted": false, - "supply": 13 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 704.2, - "clock_position": null, - "time": "0:31", - "is_chronoboosted": false, - "supply": 14 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 706.2, - "clock_position": null, - "time": "0:31", - "is_chronoboosted": false, - "supply": 14 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 794.2, - "clock_position": null, - "time": "0:35", - "is_chronoboosted": false, - "supply": 14 - }, - { - "name": "Hatchery", - "is_worker": false, - "frame": 1208, - "clock_position": null, - "time": "0:53", - "is_chronoboosted": false, - "supply": 17 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 1308.2, - "clock_position": null, - "time": "0:58", - "is_chronoboosted": false, - "supply": 16 - }, - { - "name": "SpawningPool", - "is_worker": false, - "frame": 1636, - "clock_position": null, - "time": "1:13", - "is_chronoboosted": false, - "supply": 17 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 1677.2, - "clock_position": null, - "time": "1:14", - "is_chronoboosted": false, - "supply": 17 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 1720.2, - "clock_position": null, - "time": "1:16", - "is_chronoboosted": false, - "supply": 17 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 1797.2, - "clock_position": null, - "time": "1:20", - "is_chronoboosted": false, - "supply": 18 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 1979.2, - "clock_position": null, - "time": "1:28", - "is_chronoboosted": false, - "supply": 19 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 2205.8, - "clock_position": null, - "time": "1:38", - "is_chronoboosted": false, - "supply": 20 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 2497.2, - "clock_position": null, - "time": "1:51", - "is_chronoboosted": false, - "supply": 20 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 2740.2, - "clock_position": null, - "time": "2:02", - "is_chronoboosted": false, - "supply": 21 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 2753.6, - "clock_position": null, - "time": "2:02", - "is_chronoboosted": false, - "supply": 21 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 2811.6, - "clock_position": null, - "time": "2:05", - "is_chronoboosted": false, - "supply": 21 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 2984.2, - "clock_position": null, - "time": "2:13", - "is_chronoboosted": false, - "supply": 26 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 2984.2, - "clock_position": null, - "time": "2:13", - "is_chronoboosted": false, - "supply": 26 - }, - { - "name": "Extractor", - "is_worker": false, - "frame": 2991, - "clock_position": null, - "time": "2:13", - "is_chronoboosted": false, - "supply": 26 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 3100.2, - "clock_position": null, - "time": "2:18", - "is_chronoboosted": false, - "supply": 27 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 3172.2, - "clock_position": null, - "time": "2:21", - "is_chronoboosted": false, - "supply": 27 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 3328.2, - "clock_position": null, - "time": "2:28", - "is_chronoboosted": false, - "supply": 29 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 3477.2, - "clock_position": null, - "time": "2:35", - "is_chronoboosted": false, - "supply": 30 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 3552.6, - "clock_position": null, - "time": "2:38", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 3610.6, - "clock_position": null, - "time": "2:41", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 4037.2, - "clock_position": null, - "time": "3:00", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 4085.8, - "clock_position": null, - "time": "3:02", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 4089.8, - "clock_position": null, - "time": "3:02", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 4092.8, - "clock_position": null, - "time": "3:02", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Hatchery", - "is_worker": false, - "frame": 4348, - "clock_position": null, - "time": "3:14", - "is_chronoboosted": false, - "supply": 36 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4758.2, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4758.2, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4763.2, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4763.2, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4764.2, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4764.2, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4764.2, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4764.2, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4767.2, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4767.2, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4767.2, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4767.2, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4769.2, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4769.2, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4770.2, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4770.2, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4771.2, - "clock_position": null, - "time": "3:33", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 4771.2, - "clock_position": null, - "time": "3:33", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "zerglingmovementspeed", - "is_worker": false, - "frame": 4822.4, - "clock_position": null, - "time": "3:35", - "is_chronoboosted": false, - "supply": 44 - }, - { - "name": "BanelingNest", - "is_worker": false, - "frame": 5747, - "clock_position": null, - "time": "4:16", - "is_chronoboosted": false, - "supply": 44 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5901.2, - "clock_position": null, - "time": "4:23", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5901.2, - "clock_position": null, - "time": "4:23", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5909.2, - "clock_position": null, - "time": "4:23", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5909.2, - "clock_position": null, - "time": "4:23", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5909.2, - "clock_position": null, - "time": "4:23", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5909.2, - "clock_position": null, - "time": "4:23", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5910.2, - "clock_position": null, - "time": "4:23", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5910.2, - "clock_position": null, - "time": "4:23", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5910.2, - "clock_position": null, - "time": "4:23", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5910.2, - "clock_position": null, - "time": "4:23", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5910.2, - "clock_position": null, - "time": "4:23", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5910.2, - "clock_position": null, - "time": "4:23", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5913.2, - "clock_position": null, - "time": "4:23", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5913.2, - "clock_position": null, - "time": "4:23", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5914.2, - "clock_position": null, - "time": "4:24", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5914.2, - "clock_position": null, - "time": "4:24", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 5994.8, - "clock_position": null, - "time": "4:27", - "is_chronoboosted": false, - "supply": 51 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 6022.8, - "clock_position": null, - "time": "4:28", - "is_chronoboosted": false, - "supply": 51 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 6024.8, - "clock_position": null, - "time": "4:28", - "is_chronoboosted": false, - "supply": 51 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 6024.8, - "clock_position": null, - "time": "4:28", - "is_chronoboosted": false, - "supply": 51 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 6025.8, - "clock_position": null, - "time": "4:29", - "is_chronoboosted": false, - "supply": 51 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 6025.8, - "clock_position": null, - "time": "4:29", - "is_chronoboosted": false, - "supply": 51 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6574.2, - "clock_position": null, - "time": "4:53", - "is_chronoboosted": false, - "supply": 51 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6574.2, - "clock_position": null, - "time": "4:53", - "is_chronoboosted": false, - "supply": 51 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6575.2, - "clock_position": null, - "time": "4:53", - "is_chronoboosted": false, - "supply": 51 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6575.2, - "clock_position": null, - "time": "4:53", - "is_chronoboosted": false, - "supply": 51 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6576.2, - "clock_position": null, - "time": "4:53", - "is_chronoboosted": false, - "supply": 51 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6909.2, - "clock_position": null, - "time": "5:08", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6909.2, - "clock_position": null, - "time": "5:08", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6910.2, - "clock_position": null, - "time": "5:08", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6910.2, - "clock_position": null, - "time": "5:08", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6910.2, - "clock_position": null, - "time": "5:08", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6910.2, - "clock_position": null, - "time": "5:08", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6912.2, - "clock_position": null, - "time": "5:08", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6912.2, - "clock_position": null, - "time": "5:08", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6923.2, - "clock_position": null, - "time": "5:09", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6923.2, - "clock_position": null, - "time": "5:09", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6928.2, - "clock_position": null, - "time": "5:09", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6928.2, - "clock_position": null, - "time": "5:09", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6929.2, - "clock_position": null, - "time": "5:09", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6929.2, - "clock_position": null, - "time": "5:09", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6929.2, - "clock_position": null, - "time": "5:09", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6929.2, - "clock_position": null, - "time": "5:09", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6931.2, - "clock_position": null, - "time": "5:09", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6931.2, - "clock_position": null, - "time": "5:09", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "EvolutionChamber", - "is_worker": false, - "frame": 7360, - "clock_position": null, - "time": "5:28", - "is_chronoboosted": false, - "supply": 65 - }, - { - "name": "EvolutionChamber", - "is_worker": false, - "frame": 7446, - "clock_position": null, - "time": "5:32", - "is_chronoboosted": false, - "supply": 65 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7695.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7695.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7701.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7701.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7701.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7701.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7702.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7702.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7702.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7702.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7704.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7704.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7705.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7705.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7705.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7705.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7705.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7705.2, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7706.2, - "clock_position": null, - "time": "5:44", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7706.2, - "clock_position": null, - "time": "5:44", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7706.2, - "clock_position": null, - "time": "5:44", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7706.2, - "clock_position": null, - "time": "5:44", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7708.2, - "clock_position": null, - "time": "5:44", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7708.2, - "clock_position": null, - "time": "5:44", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7708.2, - "clock_position": null, - "time": "5:44", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7708.2, - "clock_position": null, - "time": "5:44", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7709.2, - "clock_position": null, - "time": "5:44", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7709.2, - "clock_position": null, - "time": "5:44", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7711.2, - "clock_position": null, - "time": "5:44", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7711.2, - "clock_position": null, - "time": "5:44", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7712.2, - "clock_position": null, - "time": "5:44", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7712.2, - "clock_position": null, - "time": "5:44", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Baneling", - "is_worker": false, - "frame": 7797.4, - "clock_position": null, - "time": "5:48", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Baneling", - "is_worker": false, - "frame": 7803.4, - "clock_position": null, - "time": "5:48", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Baneling", - "is_worker": false, - "frame": 7804.4, - "clock_position": null, - "time": "5:48", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Baneling", - "is_worker": false, - "frame": 7804.4, - "clock_position": null, - "time": "5:48", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Baneling", - "is_worker": false, - "frame": 7806.4, - "clock_position": null, - "time": "5:48", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Baneling", - "is_worker": false, - "frame": 7807.4, - "clock_position": null, - "time": "5:48", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Baneling", - "is_worker": false, - "frame": 7807.4, - "clock_position": null, - "time": "5:48", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Baneling", - "is_worker": false, - "frame": 7807.4, - "clock_position": null, - "time": "5:48", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Baneling", - "is_worker": false, - "frame": 7809.4, - "clock_position": null, - "time": "5:48", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Baneling", - "is_worker": false, - "frame": 7819.4, - "clock_position": null, - "time": "5:49", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Baneling", - "is_worker": false, - "frame": 7825.4, - "clock_position": null, - "time": "5:49", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Baneling", - "is_worker": false, - "frame": 7826.4, - "clock_position": null, - "time": "5:49", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7868.2, - "clock_position": null, - "time": "5:51", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8107.2, - "clock_position": null, - "time": "6:01", - "is_chronoboosted": false, - "supply": 80 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8107.2, - "clock_position": null, - "time": "6:01", - "is_chronoboosted": false, - "supply": 80 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8107.2, - "clock_position": null, - "time": "6:01", - "is_chronoboosted": false, - "supply": 80 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8107.2, - "clock_position": null, - "time": "6:01", - "is_chronoboosted": false, - "supply": 80 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8108.2, - "clock_position": null, - "time": "6:01", - "is_chronoboosted": false, - "supply": 80 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8108.2, - "clock_position": null, - "time": "6:01", - "is_chronoboosted": false, - "supply": 80 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8110.2, - "clock_position": null, - "time": "6:02", - "is_chronoboosted": false, - "supply": 80 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8110.2, - "clock_position": null, - "time": "6:02", - "is_chronoboosted": false, - "supply": 80 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8110.2, - "clock_position": null, - "time": "6:02", - "is_chronoboosted": false, - "supply": 80 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8110.2, - "clock_position": null, - "time": "6:02", - "is_chronoboosted": false, - "supply": 80 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8111.2, - "clock_position": null, - "time": "6:02", - "is_chronoboosted": false, - "supply": 80 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8111.2, - "clock_position": null, - "time": "6:02", - "is_chronoboosted": false, - "supply": 80 - }, - { - "name": "SporeCrawler", - "is_worker": false, - "frame": 8383, - "clock_position": null, - "time": "6:14", - "is_chronoboosted": false, - "supply": 85 - }, - { - "name": "SporeCrawler", - "is_worker": false, - "frame": 8431, - "clock_position": null, - "time": "6:16", - "is_chronoboosted": false, - "supply": 85 - }, - { - "name": "SporeCrawler", - "is_worker": false, - "frame": 8451, - "clock_position": null, - "time": "6:17", - "is_chronoboosted": false, - "supply": 85 - }, - { - "name": "SporeCrawler", - "is_worker": false, - "frame": 8553, - "clock_position": null, - "time": "6:21", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8556.2, - "clock_position": null, - "time": "6:21", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8561.2, - "clock_position": null, - "time": "6:22", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8561.2, - "clock_position": null, - "time": "6:22", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8564.2, - "clock_position": null, - "time": "6:22", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8564.2, - "clock_position": null, - "time": "6:22", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8566.2, - "clock_position": null, - "time": "6:22", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9582.2, - "clock_position": null, - "time": "7:07", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9582.2, - "clock_position": null, - "time": "7:07", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9582.2, - "clock_position": null, - "time": "7:07", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9582.2, - "clock_position": null, - "time": "7:07", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9584.2, - "clock_position": null, - "time": "7:07", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9584.2, - "clock_position": null, - "time": "7:07", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9584.2, - "clock_position": null, - "time": "7:07", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9584.2, - "clock_position": null, - "time": "7:07", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9585.2, - "clock_position": null, - "time": "7:07", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9585.2, - "clock_position": null, - "time": "7:07", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9586.2, - "clock_position": null, - "time": "7:07", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9586.2, - "clock_position": null, - "time": "7:07", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9586.2, - "clock_position": null, - "time": "7:07", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9586.2, - "clock_position": null, - "time": "7:07", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9586.2, - "clock_position": null, - "time": "7:07", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9586.2, - "clock_position": null, - "time": "7:07", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9588.2, - "clock_position": null, - "time": "7:08", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9588.2, - "clock_position": null, - "time": "7:08", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9589.2, - "clock_position": null, - "time": "7:08", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9589.2, - "clock_position": null, - "time": "7:08", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9591.2, - "clock_position": null, - "time": "7:08", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9591.2, - "clock_position": null, - "time": "7:08", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9591.2, - "clock_position": null, - "time": "7:08", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9591.2, - "clock_position": null, - "time": "7:08", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9592.2, - "clock_position": null, - "time": "7:08", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9592.2, - "clock_position": null, - "time": "7:08", - "is_chronoboosted": false, - "supply": 79 - } - ], - "clock_position": null, - "uid": 842558, - "race": "Zerg", - "team": 1, - "handicap": 100 - }, - "2": { - "is_human": true, - "league": 0, - "unitsLost": [ - { - "name": "Drone", - "frame": 635, - "clock_position": null, - "time": "0:28", - "killer": null - }, - { - "name": "Drone", - "frame": 667, - "clock_position": null, - "time": "0:29", - "killer": null - }, - { - "name": "Drone", - "frame": 2110, - "clock_position": null, - "time": "1:34", - "killer": null - }, - { - "name": "Drone", - "frame": 4946, - "clock_position": null, - "time": "3:40", - "killer": null - }, - { - "name": "Zergling", - "frame": 4951, - "clock_position": null, - "time": "3:41", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 5052, - "clock_position": null, - "time": "3:45", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 5096, - "clock_position": null, - "time": "3:47", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 5139, - "clock_position": null, - "time": "3:49", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 5168, - "clock_position": null, - "time": "3:50", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 5184, - "clock_position": null, - "time": "3:51", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 5188, - "clock_position": null, - "time": "3:51", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 5205, - "clock_position": null, - "time": "3:52", - "killer": 1 - }, - { - "name": "Drone", - "frame": 5731, - "clock_position": null, - "time": "4:15", - "killer": null - }, - { - "name": "Drone", - "frame": 7423, - "clock_position": null, - "time": "5:31", - "killer": null - }, - { - "name": "Zergling", - "frame": 8750, - "clock_position": null, - "time": "6:30", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8753, - "clock_position": null, - "time": "6:30", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8762, - "clock_position": null, - "time": "6:31", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8762, - "clock_position": null, - "time": "6:31", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8778, - "clock_position": null, - "time": "6:31", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8778, - "clock_position": null, - "time": "6:31", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8779, - "clock_position": null, - "time": "6:31", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8782, - "clock_position": null, - "time": "6:32", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8787, - "clock_position": null, - "time": "6:32", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8787, - "clock_position": null, - "time": "6:32", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8788, - "clock_position": null, - "time": "6:32", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8790, - "clock_position": null, - "time": "6:32", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8790, - "clock_position": null, - "time": "6:32", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8791, - "clock_position": null, - "time": "6:32", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8838, - "clock_position": null, - "time": "6:34", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8845, - "clock_position": null, - "time": "6:34", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8847, - "clock_position": null, - "time": "6:34", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8848, - "clock_position": null, - "time": "6:35", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8854, - "clock_position": null, - "time": "6:35", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 8857, - "clock_position": null, - "time": "6:35", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8864, - "clock_position": null, - "time": "6:35", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8871, - "clock_position": null, - "time": "6:36", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8894, - "clock_position": null, - "time": "6:37", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8894, - "clock_position": null, - "time": "6:37", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8897, - "clock_position": null, - "time": "6:37", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8908, - "clock_position": null, - "time": "6:37", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8925, - "clock_position": null, - "time": "6:38", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8925, - "clock_position": null, - "time": "6:38", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8927, - "clock_position": null, - "time": "6:38", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8927, - "clock_position": null, - "time": "6:38", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8927, - "clock_position": null, - "time": "6:38", - "killer": 1 - }, - { - "name": "Queen", - "frame": 8929, - "clock_position": null, - "time": "6:38", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9048, - "clock_position": null, - "time": "6:43", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9058, - "clock_position": null, - "time": "6:44", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9076, - "clock_position": null, - "time": "6:45", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9087, - "clock_position": null, - "time": "6:45", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9104, - "clock_position": null, - "time": "6:46", - "killer": 1 - }, - { - "name": "Queen", - "frame": 9117, - "clock_position": null, - "time": "6:47", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9135, - "clock_position": null, - "time": "6:47", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9137, - "clock_position": null, - "time": "6:47", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9140, - "clock_position": null, - "time": "6:48", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9144, - "clock_position": null, - "time": "6:48", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9146, - "clock_position": null, - "time": "6:48", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9147, - "clock_position": null, - "time": "6:48", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9151, - "clock_position": null, - "time": "6:48", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9166, - "clock_position": null, - "time": "6:49", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9174, - "clock_position": null, - "time": "6:49", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9177, - "clock_position": null, - "time": "6:49", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9178, - "clock_position": null, - "time": "6:49", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9182, - "clock_position": null, - "time": "6:49", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9183, - "clock_position": null, - "time": "6:49", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9188, - "clock_position": null, - "time": "6:50", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9191, - "clock_position": null, - "time": "6:50", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9197, - "clock_position": null, - "time": "6:50", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9204, - "clock_position": null, - "time": "6:50", - "killer": 1 - }, - { - "name": "Spire", - "frame": 9366, - "clock_position": null, - "time": "6:58", - "killer": 1 - }, - { - "name": "BanelingNest", - "frame": 9469, - "clock_position": null, - "time": "7:02", - "killer": 1 - }, - { - "name": "Extractor", - "frame": 9528, - "clock_position": null, - "time": "7:05", - "killer": 1 - }, - { - "name": "Lair", - "frame": 9574, - "clock_position": null, - "time": "7:07", - "killer": 1 - }, - { - "name": "Extractor", - "frame": 9694, - "clock_position": null, - "time": "7:12", - "killer": 1 - }, - { - "name": "SpawningPool", - "frame": 9925, - "clock_position": null, - "time": "7:23", - "killer": 1 - }, - { - "name": "Hatchery", - "frame": 9947, - "clock_position": null, - "time": "7:24", - "killer": 1 + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 12, + "frame": 20.200000000000045, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 13, + "frame": 282.8, + "is_chronoboosted": false, + "time": "0:12" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 13, + "frame": 452.20000000000005, + "is_chronoboosted": false, + "time": "0:20" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 14, + "frame": 704.2, + "is_chronoboosted": false, + "time": "0:31" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 14, + "frame": 706.2, + "is_chronoboosted": false, + "time": "0:31" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 14, + "frame": 794.2, + "is_chronoboosted": false, + "time": "0:35" + }, + { + "is_worker": false, + "name": "Hatchery", + "clock_position": null, + "supply": 17, + "frame": 1208, + "is_chronoboosted": false, + "time": "0:53" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 16, + "frame": 1308.2, + "is_chronoboosted": false, + "time": "0:58" + }, + { + "is_worker": false, + "name": "SpawningPool", + "clock_position": null, + "supply": 17, + "frame": 1636, + "is_chronoboosted": false, + "time": "1:13" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 17, + "frame": 1677.2, + "is_chronoboosted": false, + "time": "1:14" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 17, + "frame": 1720.2, + "is_chronoboosted": false, + "time": "1:16" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 18, + "frame": 1797.2, + "is_chronoboosted": false, + "time": "1:20" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 19, + "frame": 1979.2, + "is_chronoboosted": false, + "time": "1:28" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 20, + "frame": 2205.8, + "is_chronoboosted": false, + "time": "1:38" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 20, + "frame": 2497.2, + "is_chronoboosted": false, + "time": "1:51" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 21, + "frame": 2740.2, + "is_chronoboosted": false, + "time": "2:02" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 21, + "frame": 2753.6, + "is_chronoboosted": false, + "time": "2:02" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 21, + "frame": 2811.6, + "is_chronoboosted": false, + "time": "2:05" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 26, + "frame": 2984.2, + "is_chronoboosted": false, + "time": "2:13" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 26, + "frame": 2984.2, + "is_chronoboosted": false, + "time": "2:13" + }, + { + "is_worker": false, + "name": "Extractor", + "clock_position": null, + "supply": 26, + "frame": 2991, + "is_chronoboosted": false, + "time": "2:13" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 27, + "frame": 3100.2, + "is_chronoboosted": false, + "time": "2:18" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 27, + "frame": 3172.2, + "is_chronoboosted": false, + "time": "2:21" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 29, + "frame": 3328.2, + "is_chronoboosted": false, + "time": "2:28" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 30, + "frame": 3477.2, + "is_chronoboosted": false, + "time": "2:35" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 31, + "frame": 3552.6, + "is_chronoboosted": false, + "time": "2:38" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 31, + "frame": 3610.6, + "is_chronoboosted": false, + "time": "2:41" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 35, + "frame": 4037.2, + "is_chronoboosted": false, + "time": "3:00" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 35, + "frame": 4085.8, + "is_chronoboosted": false, + "time": "3:02" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 35, + "frame": 4089.8, + "is_chronoboosted": false, + "time": "3:02" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 35, + "frame": 4092.8, + "is_chronoboosted": false, + "time": "3:02" + }, + { + "is_worker": false, + "name": "Hatchery", + "clock_position": null, + "supply": 36, + "frame": 4348, + "is_chronoboosted": false, + "time": "3:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4758.2, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4758.2, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4763.2, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4763.2, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4764.2, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4764.2, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4764.2, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4764.2, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4767.2, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4767.2, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4767.2, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4767.2, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4769.2, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4769.2, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4770.2, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4770.2, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4771.2, + "is_chronoboosted": false, + "time": "3:33" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 35, + "frame": 4771.2, + "is_chronoboosted": false, + "time": "3:33" + }, + { + "is_worker": false, + "name": "Metabolic Boost", + "clock_position": null, + "supply": 44, + "frame": 4822.4, + "is_chronoboosted": false, + "time": "3:35" + }, + { + "is_worker": false, + "name": "BanelingNest", + "clock_position": null, + "supply": 44, + "frame": 5747, + "is_chronoboosted": false, + "time": "4:16" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 43, + "frame": 5901.2, + "is_chronoboosted": false, + "time": "4:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 43, + "frame": 5901.2, + "is_chronoboosted": false, + "time": "4:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 43, + "frame": 5909.2, + "is_chronoboosted": false, + "time": "4:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 43, + "frame": 5909.2, + "is_chronoboosted": false, + "time": "4:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 43, + "frame": 5909.2, + "is_chronoboosted": false, + "time": "4:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 43, + "frame": 5909.2, + "is_chronoboosted": false, + "time": "4:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 43, + "frame": 5910.2, + "is_chronoboosted": false, + "time": "4:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 43, + "frame": 5910.2, + "is_chronoboosted": false, + "time": "4:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 43, + "frame": 5910.2, + "is_chronoboosted": false, + "time": "4:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 43, + "frame": 5910.2, + "is_chronoboosted": false, + "time": "4:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 43, + "frame": 5910.2, + "is_chronoboosted": false, + "time": "4:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 43, + "frame": 5910.2, + "is_chronoboosted": false, + "time": "4:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 43, + "frame": 5913.2, + "is_chronoboosted": false, + "time": "4:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 43, + "frame": 5913.2, + "is_chronoboosted": false, + "time": "4:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 43, + "frame": 5914.2, + "is_chronoboosted": false, + "time": "4:24" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 43, + "frame": 5914.2, + "is_chronoboosted": false, + "time": "4:24" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 51, + "frame": 5994.8, + "is_chronoboosted": false, + "time": "4:27" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 51, + "frame": 6022.8, + "is_chronoboosted": false, + "time": "4:28" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 51, + "frame": 6024.8, + "is_chronoboosted": false, + "time": "4:28" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 51, + "frame": 6024.8, + "is_chronoboosted": false, + "time": "4:28" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 51, + "frame": 6025.8, + "is_chronoboosted": false, + "time": "4:29" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 51, + "frame": 6025.8, + "is_chronoboosted": false, + "time": "4:29" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 51, + "frame": 6574.2, + "is_chronoboosted": false, + "time": "4:53" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 51, + "frame": 6574.2, + "is_chronoboosted": false, + "time": "4:53" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 51, + "frame": 6575.2, + "is_chronoboosted": false, + "time": "4:53" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 51, + "frame": 6575.2, + "is_chronoboosted": false, + "time": "4:53" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 51, + "frame": 6576.2, + "is_chronoboosted": false, + "time": "4:53" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6909.2, + "is_chronoboosted": false, + "time": "5:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6909.2, + "is_chronoboosted": false, + "time": "5:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6910.2, + "is_chronoboosted": false, + "time": "5:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6910.2, + "is_chronoboosted": false, + "time": "5:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6910.2, + "is_chronoboosted": false, + "time": "5:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6910.2, + "is_chronoboosted": false, + "time": "5:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6912.2, + "is_chronoboosted": false, + "time": "5:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6912.2, + "is_chronoboosted": false, + "time": "5:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6923.2, + "is_chronoboosted": false, + "time": "5:09" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6923.2, + "is_chronoboosted": false, + "time": "5:09" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6928.2, + "is_chronoboosted": false, + "time": "5:09" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6928.2, + "is_chronoboosted": false, + "time": "5:09" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6929.2, + "is_chronoboosted": false, + "time": "5:09" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6929.2, + "is_chronoboosted": false, + "time": "5:09" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6929.2, + "is_chronoboosted": false, + "time": "5:09" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6929.2, + "is_chronoboosted": false, + "time": "5:09" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6931.2, + "is_chronoboosted": false, + "time": "5:09" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 56, + "frame": 6931.2, + "is_chronoboosted": false, + "time": "5:09" + }, + { + "is_worker": false, + "name": "EvolutionChamber", + "clock_position": null, + "supply": 65, + "frame": 7360, + "is_chronoboosted": false, + "time": "5:28" + }, + { + "is_worker": false, + "name": "EvolutionChamber", + "clock_position": null, + "supply": 65, + "frame": 7446, + "is_chronoboosted": false, + "time": "5:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7695.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7695.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7701.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7701.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7701.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7701.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7702.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7702.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7702.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7702.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7704.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7704.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7705.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7705.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7705.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7705.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7705.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7705.2, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7706.2, + "is_chronoboosted": false, + "time": "5:44" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7706.2, + "is_chronoboosted": false, + "time": "5:44" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7706.2, + "is_chronoboosted": false, + "time": "5:44" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7706.2, + "is_chronoboosted": false, + "time": "5:44" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7708.2, + "is_chronoboosted": false, + "time": "5:44" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7708.2, + "is_chronoboosted": false, + "time": "5:44" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7708.2, + "is_chronoboosted": false, + "time": "5:44" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7708.2, + "is_chronoboosted": false, + "time": "5:44" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7709.2, + "is_chronoboosted": false, + "time": "5:44" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7709.2, + "is_chronoboosted": false, + "time": "5:44" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7711.2, + "is_chronoboosted": false, + "time": "5:44" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7711.2, + "is_chronoboosted": false, + "time": "5:44" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7712.2, + "is_chronoboosted": false, + "time": "5:44" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 63, + "frame": 7712.2, + "is_chronoboosted": false, + "time": "5:44" + }, + { + "is_worker": false, + "name": "Baneling", + "clock_position": null, + "supply": 63, + "frame": 7797.4, + "is_chronoboosted": false, + "time": "5:48" + }, + { + "is_worker": false, + "name": "Baneling", + "clock_position": null, + "supply": 63, + "frame": 7803.4, + "is_chronoboosted": false, + "time": "5:48" + }, + { + "is_worker": false, + "name": "Baneling", + "clock_position": null, + "supply": 63, + "frame": 7804.4, + "is_chronoboosted": false, + "time": "5:48" + }, + { + "is_worker": false, + "name": "Baneling", + "clock_position": null, + "supply": 63, + "frame": 7804.4, + "is_chronoboosted": false, + "time": "5:48" + }, + { + "is_worker": false, + "name": "Baneling", + "clock_position": null, + "supply": 63, + "frame": 7806.4, + "is_chronoboosted": false, + "time": "5:48" + }, + { + "is_worker": false, + "name": "Baneling", + "clock_position": null, + "supply": 63, + "frame": 7807.4, + "is_chronoboosted": false, + "time": "5:48" + }, + { + "is_worker": false, + "name": "Baneling", + "clock_position": null, + "supply": 63, + "frame": 7807.4, + "is_chronoboosted": false, + "time": "5:48" + }, + { + "is_worker": false, + "name": "Baneling", + "clock_position": null, + "supply": 63, + "frame": 7807.4, + "is_chronoboosted": false, + "time": "5:48" + }, + { + "is_worker": false, + "name": "Baneling", + "clock_position": null, + "supply": 63, + "frame": 7809.4, + "is_chronoboosted": false, + "time": "5:48" + }, + { + "is_worker": false, + "name": "Baneling", + "clock_position": null, + "supply": 63, + "frame": 7819.4, + "is_chronoboosted": false, + "time": "5:49" + }, + { + "is_worker": false, + "name": "Baneling", + "clock_position": null, + "supply": 63, + "frame": 7825.4, + "is_chronoboosted": false, + "time": "5:49" + }, + { + "is_worker": false, + "name": "Baneling", + "clock_position": null, + "supply": 63, + "frame": 7826.4, + "is_chronoboosted": false, + "time": "5:49" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 79, + "frame": 7868.2, + "is_chronoboosted": false, + "time": "5:51" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 80, + "frame": 8107.2, + "is_chronoboosted": false, + "time": "6:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 80, + "frame": 8107.2, + "is_chronoboosted": false, + "time": "6:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 80, + "frame": 8107.2, + "is_chronoboosted": false, + "time": "6:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 80, + "frame": 8107.2, + "is_chronoboosted": false, + "time": "6:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 80, + "frame": 8108.2, + "is_chronoboosted": false, + "time": "6:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 80, + "frame": 8108.2, + "is_chronoboosted": false, + "time": "6:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 80, + "frame": 8110.2, + "is_chronoboosted": false, + "time": "6:02" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 80, + "frame": 8110.2, + "is_chronoboosted": false, + "time": "6:02" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 80, + "frame": 8110.2, + "is_chronoboosted": false, + "time": "6:02" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 80, + "frame": 8110.2, + "is_chronoboosted": false, + "time": "6:02" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 80, + "frame": 8111.2, + "is_chronoboosted": false, + "time": "6:02" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 80, + "frame": 8111.2, + "is_chronoboosted": false, + "time": "6:02" + }, + { + "is_worker": false, + "name": "SporeCrawler", + "clock_position": null, + "supply": 85, + "frame": 8383, + "is_chronoboosted": false, + "time": "6:14" + }, + { + "is_worker": false, + "name": "SporeCrawler", + "clock_position": null, + "supply": 85, + "frame": 8431, + "is_chronoboosted": false, + "time": "6:16" + }, + { + "is_worker": false, + "name": "SporeCrawler", + "clock_position": null, + "supply": 85, + "frame": 8451, + "is_chronoboosted": false, + "time": "6:17" + }, + { + "is_worker": false, + "name": "SporeCrawler", + "clock_position": null, + "supply": 82, + "frame": 8553, + "is_chronoboosted": false, + "time": "6:21" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 82, + "frame": 8556.2, + "is_chronoboosted": false, + "time": "6:21" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 82, + "frame": 8561.2, + "is_chronoboosted": false, + "time": "6:22" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 82, + "frame": 8561.2, + "is_chronoboosted": false, + "time": "6:22" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 82, + "frame": 8564.2, + "is_chronoboosted": false, + "time": "6:22" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 82, + "frame": 8564.2, + "is_chronoboosted": false, + "time": "6:22" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 82, + "frame": 8566.2, + "is_chronoboosted": false, + "time": "6:22" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9582.2, + "is_chronoboosted": false, + "time": "7:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9582.2, + "is_chronoboosted": false, + "time": "7:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9582.2, + "is_chronoboosted": false, + "time": "7:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9582.2, + "is_chronoboosted": false, + "time": "7:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9584.2, + "is_chronoboosted": false, + "time": "7:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9584.2, + "is_chronoboosted": false, + "time": "7:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9584.2, + "is_chronoboosted": false, + "time": "7:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9584.2, + "is_chronoboosted": false, + "time": "7:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9585.2, + "is_chronoboosted": false, + "time": "7:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9585.2, + "is_chronoboosted": false, + "time": "7:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9586.2, + "is_chronoboosted": false, + "time": "7:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9586.2, + "is_chronoboosted": false, + "time": "7:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9586.2, + "is_chronoboosted": false, + "time": "7:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9586.2, + "is_chronoboosted": false, + "time": "7:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9586.2, + "is_chronoboosted": false, + "time": "7:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9586.2, + "is_chronoboosted": false, + "time": "7:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9588.2, + "is_chronoboosted": false, + "time": "7:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9588.2, + "is_chronoboosted": false, + "time": "7:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9589.2, + "is_chronoboosted": false, + "time": "7:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9589.2, + "is_chronoboosted": false, + "time": "7:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9591.2, + "is_chronoboosted": false, + "time": "7:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9591.2, + "is_chronoboosted": false, + "time": "7:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9591.2, + "is_chronoboosted": false, + "time": "7:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9591.2, + "is_chronoboosted": false, + "time": "7:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9592.2, + "is_chronoboosted": false, + "time": "7:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 79, + "frame": 9592.2, + "is_chronoboosted": false, + "time": "7:08" } - ], - "color": "0042FF", + ], "abilities": [ { - "name": "SpawnLarva", - "frame": 3171, - "time": "2:21" - }, - { - "name": "SpawnLarva", - "frame": 3872, - "time": "2:52" - }, + "frame": 3613, + "name": "SpawnLarva", + "time": "2:41" + }, { - "name": "SpawnLarva", - "frame": 4565, - "time": "3:23" - }, + "frame": 4351, + "name": "SpawnLarva", + "time": "3:14" + }, { - "name": "SpawnLarva", - "frame": 5294, + "frame": 5298, + "name": "SpawnLarva", "time": "3:56" - }, + }, { - "name": "SpawnLarva", - "frame": 6071, - "time": "4:31" - }, + "frame": 6206, + "name": "SpawnLarva", + "time": "4:37" + }, { - "name": "SpawnLarva", - "frame": 6409, - "time": "4:46" - }, + "frame": 6624, + "name": "SpawnLarva", + "time": "4:55" + }, { - "name": "SpawnLarva", - "frame": 6949, - "time": "5:10" - }, + "frame": 7560, + "name": "SpawnLarva", + "time": "5:37" + }, { - "name": "SpawnLarva", - "frame": 7123, - "time": "5:17" - }, + "frame": 7574, + "name": "SpawnLarva", + "time": "5:38" + }, { - "name": "SpawnLarva", - "frame": 7421, - "time": "5:31" - }, + "frame": 7621, + "name": "SpawnLarva", + "time": "5:40" + }, { - "name": "SpawnLarva", - "frame": 8101, - "time": "6:01" + "frame": 7944, + "name": "SpawnLarva", + "time": "5:54" + }, + { + "frame": 8060, + "name": "SpawnLarva", + "time": "5:59" + }, + { + "frame": 8638, + "name": "SpawnLarva", + "time": "6:25" } - ], - "result": "Loss", - "is_winner": false, - "region": "eu", - "level": 4294967295, - "pick_race": "Zerg", + ], + "name": "Slimper", + "is_human": true, + "level": 4294967295, + "handicap": 100, + "region": "eu", + "is_winner": true, + "pick_race": "Random", + "clock_position": null, + "commander": "", + "color": "B4141E", + "unitsLost": [ + { + "frame": 2676, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "1:59" + }, + { + "frame": 2808, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "2:05" + }, + { + "frame": 3471, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "2:34" + }, + { + "frame": 5949, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "4:25" + }, + { + "frame": 6707, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "4:59" + }, + { + "frame": 7920, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "5:53" + }, + { + "frame": 8006, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "5:57" + }, + { + "frame": 8111, + "killer": null, + "name": "Zergling", + "clock_position": null, + "time": "6:02" + }, + { + "frame": 8117, + "killer": null, + "name": "Zergling", + "clock_position": null, + "time": "6:02" + }, + { + "frame": 8118, + "killer": null, + "name": "Zergling", + "clock_position": null, + "time": "6:02" + }, + { + "frame": 8118, + "killer": null, + "name": "Zergling", + "clock_position": null, + "time": "6:02" + }, + { + "frame": 8120, + "killer": null, + "name": "Zergling", + "clock_position": null, + "time": "6:02" + }, + { + "frame": 8121, + "killer": null, + "name": "Zergling", + "clock_position": null, + "time": "6:02" + }, + { + "frame": 8121, + "killer": null, + "name": "Zergling", + "clock_position": null, + "time": "6:02" + }, + { + "frame": 8121, + "killer": null, + "name": "Zergling", + "clock_position": null, + "time": "6:02" + }, + { + "frame": 8123, + "killer": null, + "name": "Zergling", + "clock_position": null, + "time": "6:02" + }, + { + "frame": 8133, + "killer": null, + "name": "Zergling", + "clock_position": null, + "time": "6:03" + }, + { + "frame": 8139, + "killer": null, + "name": "Zergling", + "clock_position": null, + "time": "6:03" + }, + { + "frame": 8140, + "killer": null, + "name": "Zergling", + "clock_position": null, + "time": "6:03" + }, + { + "frame": 8266, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:09" + }, + { + "frame": 8792, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:32" + }, + { + "frame": 8844, + "killer": 2, + "name": "Baneling", + "clock_position": null, + "time": "6:34" + }, + { + "frame": 8844, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:34" + }, + { + "frame": 8857, + "killer": 1, + "name": "Baneling", + "clock_position": null, + "time": "6:35" + }, + { + "frame": 8864, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "6:35" + }, + { + "frame": 8894, + "killer": 2, + "name": "Baneling", + "clock_position": null, + "time": "6:37" + }, + { + "frame": 8912, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "6:37" + }, + { + "frame": 8919, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:38" + }, + { + "frame": 8924, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:38" + }, + { + "frame": 8925, + "killer": 1, + "name": "Baneling", + "clock_position": null, + "time": "6:38" + }, + { + "frame": 8926, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:38" + }, + { + "frame": 8927, + "killer": 1, + "name": "Baneling", + "clock_position": null, + "time": "6:38" + }, + { + "frame": 8932, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "6:38" + }, + { + "frame": 8947, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:39" + }, + { + "frame": 8958, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:39" + }, + { + "frame": 8967, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:40" + }, + { + "frame": 8995, + "killer": 2, + "name": "Baneling", + "clock_position": null, + "time": "6:41" + }, + { + "frame": 9018, + "killer": 2, + "name": "Baneling", + "clock_position": null, + "time": "6:42" + }, + { + "frame": 9026, + "killer": 2, + "name": "Baneling", + "clock_position": null, + "time": "6:42" + }, + { + "frame": 9034, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "6:43" + }, + { + "frame": 9038, + "killer": 2, + "name": "Baneling", + "clock_position": null, + "time": "6:43" + }, + { + "frame": 9046, + "killer": 2, + "name": "Baneling", + "clock_position": null, + "time": "6:43" + }, + { + "frame": 9062, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:44" + }, + { + "frame": 9072, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:45" + }, + { + "frame": 9075, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:45" + }, + { + "frame": 9140, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:48" + }, + { + "frame": 9143, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:48" + }, + { + "frame": 9193, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:50" + }, + { + "frame": 9197, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:50" + }, + { + "frame": 9235, + "killer": 1, + "name": "Baneling", + "clock_position": null, + "time": "6:52" + }, + { + "frame": 9236, + "killer": 1, + "name": "Baneling", + "clock_position": null, + "time": "6:52" + }, + { + "frame": 9245, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "6:52" + }, + { + "frame": 9417, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "7:00" + }, + { + "frame": 9488, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "7:03" + }, + { + "frame": 9609, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "7:08" + }, + { + "frame": 9628, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "7:09" + }, + { + "frame": 9691, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "7:12" + }, + { + "frame": 9711, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "7:13" + }, + { + "frame": 9717, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "7:13" + }, + { + "frame": 9718, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "7:13" + }, + { + "frame": 9740, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "7:14" + }, + { + "frame": 9744, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "7:15" + }, + { + "frame": 9772, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "7:16" + }, + { + "frame": 9784, + "killer": 2, + "name": "Zergling", + "clock_position": null, + "time": "7:16" + } + ], + "race": "Zerg", + "result": "Win", + "team": 1, + "uid": 842558 + }, + "2": { "supply": [ [ - 0, + 0, 12 - ], + ], [ - 1, + 1, 12 - ], + ], [ - 160, + 160, 11 - ], + ], [ - 320, + 320, 12 - ], + ], [ - 480, + 480, 13 - ], + ], [ - 640, + 640, 14 - ], + ], [ - 800, + 800, 14 - ], + ], [ - 960, + 960, 14 - ], + ], [ - 1120, + 1120, 13 - ], + ], [ - 1280, + 1280, 14 - ], + ], [ - 1440, + 1440, 14 - ], + ], [ - 1600, + 1600, 14 - ], + ], [ - 1760, + 1760, 15 - ], + ], [ - 1920, + 1920, 17 - ], + ], [ - 2080, + 2080, 17 - ], + ], [ - 2240, + 2240, 18 - ], + ], [ - 2400, + 2400, 20 - ], + ], [ - 2560, + 2560, 20 - ], + ], [ - 2720, + 2720, 22 - ], + ], [ - 2880, + 2880, 22 - ], + ], [ - 3040, + 3040, 22 - ], + ], [ - 3200, + 3200, 22 - ], + ], [ - 3360, + 3360, 21 - ], + ], [ - 3520, + 3520, 23 - ], + ], [ - 3680, + 3680, 24 - ], + ], [ - 3840, + 3840, 24 - ], + ], [ - 4000, + 4000, 28 - ], + ], [ - 4160, + 4160, 28 - ], + ], [ - 4320, + 4320, 29 - ], + ], [ - 4480, + 4480, 30 - ], + ], [ - 4640, + 4640, 30 - ], + ], [ - 4800, + 4800, 29 - ], + ], [ - 4960, + 4960, 28 - ], + ], [ - 5120, + 5120, 27 - ], + ], [ - 5280, + 5280, 25 - ], + ], [ - 5440, + 5440, 31 - ], + ], [ - 5600, + 5600, 36 - ], + ], [ - 5760, + 5760, 36 - ], + ], [ - 5920, + 5920, 35 - ], + ], [ - 6080, + 6080, 36 - ], + ], [ - 6240, + 6240, 41 - ], + ], [ - 6400, + 6400, 43 - ], + ], [ - 6560, + 6560, 43 - ], + ], [ - 6720, + 6720, 43 - ], + ], [ - 6880, + 6880, 44 - ], + ], [ - 7040, + 7040, 44 - ], + ], [ - 7200, + 7200, 44 - ], + ], [ - 7360, + 7360, 48 - ], + ], [ - 7520, + 7520, 54 - ], + ], [ - 7680, + 7680, 54 - ], + ], [ - 7840, + 7840, 58 - ], + ], [ - 8000, + 8000, 66 - ], + ], [ - 8160, + 8160, 66 - ], + ], [ - 8320, + 8320, 68 - ], + ], [ - 8480, + 8480, 68 - ], + ], [ - 8640, + 8640, 68 - ], + ], [ - 8800, + 8800, 61 - ], + ], [ - 8960, + 8960, 44 - ], + ], [ - 9120, + 9120, 37 - ], + ], [ - 9280, + 9280, 20 - ], + ], [ - 9440, + 9440, 20 - ], + ], [ - 9600, + 9600, 20 - ], + ], [ - 9760, + 9760, 20 - ], + ], [ - 9920, + 9920, 20 - ], + ], [ - 9947, + 9947, 20 ] - ], - "name": "BEHALKHOR", - "commander": "", + ], + "league": 0, "buildOrder": [ { - "name": "Extractor", - "is_worker": false, - "frame": 155, - "clock_position": null, - "time": "0:06", - "is_chronoboosted": false, - "supply": 12 - }, - { - "name": "Extractor", - "is_worker": false, - "frame": 187, - "clock_position": null, - "time": "0:08", - "is_chronoboosted": false, - "supply": 11 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 188.20000000000005, - "clock_position": null, - "time": "0:08", - "is_chronoboosted": false, - "supply": 11 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 322.20000000000005, - "clock_position": null, - "time": "0:14", - "is_chronoboosted": false, - "supply": 12 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 479.20000000000005, - "clock_position": null, - "time": "0:21", - "is_chronoboosted": false, - "supply": 12 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 581.2, - "clock_position": null, - "time": "0:25", - "is_chronoboosted": false, - "supply": 13 - }, - { - "name": "SpawningPool", - "is_worker": false, - "frame": 1070, - "clock_position": null, - "time": "0:47", - "is_chronoboosted": false, - "supply": 14 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 1130.2, - "clock_position": null, - "time": "0:50", - "is_chronoboosted": false, - "supply": 13 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 1331.8, - "clock_position": null, - "time": "0:59", - "is_chronoboosted": false, - "supply": 14 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 1762.2, - "clock_position": null, - "time": "1:18", - "is_chronoboosted": false, - "supply": 15 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 1770.2, - "clock_position": null, - "time": "1:19", - "is_chronoboosted": false, - "supply": 15 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 1776.2, - "clock_position": null, - "time": "1:19", - "is_chronoboosted": false, - "supply": 15 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 2113.2, - "clock_position": null, - "time": "1:34", - "is_chronoboosted": false, - "supply": 17 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 2244.6, - "clock_position": null, - "time": "1:40", - "is_chronoboosted": false, - "supply": 18 - }, - { - "name": "zerglingmovementspeed", - "is_worker": false, - "frame": 2293.4, - "clock_position": null, - "time": "1:42", - "is_chronoboosted": false, - "supply": 18 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 2665.2, - "clock_position": null, - "time": "1:58", - "is_chronoboosted": false, - "supply": 20 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 2671.2, - "clock_position": null, - "time": "1:59", - "is_chronoboosted": false, - "supply": 20 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 2766.8, - "clock_position": null, - "time": "2:03", - "is_chronoboosted": false, - "supply": 22 - }, - { - "name": "Hatchery", - "is_worker": false, - "frame": 3345, - "clock_position": null, - "time": "2:29", - "is_chronoboosted": false, - "supply": 22 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 3414.2, - "clock_position": null, - "time": "2:32", - "is_chronoboosted": false, - "supply": 21 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 3492.2, - "clock_position": null, - "time": "2:35", - "is_chronoboosted": false, - "supply": 21 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 3618.2, - "clock_position": null, - "time": "2:41", - "is_chronoboosted": false, - "supply": 23 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 3951.2, - "clock_position": null, - "time": "2:56", - "is_chronoboosted": false, - "supply": 24 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 3951.2, - "clock_position": null, - "time": "2:56", - "is_chronoboosted": false, - "supply": 24 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 3955.2, - "clock_position": null, - "time": "2:56", - "is_chronoboosted": false, - "supply": 24 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 3955.2, - "clock_position": null, - "time": "2:56", - "is_chronoboosted": false, - "supply": 24 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 3958.2, - "clock_position": null, - "time": "2:56", - "is_chronoboosted": false, - "supply": 24 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 3958.2, - "clock_position": null, - "time": "2:56", - "is_chronoboosted": false, - "supply": 24 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 3962.2, - "clock_position": null, - "time": "2:56", - "is_chronoboosted": false, - "supply": 24 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 3962.2, - "clock_position": null, - "time": "2:56", - "is_chronoboosted": false, - "supply": 24 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 4249.2, - "clock_position": null, - "time": "3:09", - "is_chronoboosted": false, - "supply": 28 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 4334.2, - "clock_position": null, - "time": "3:13", - "is_chronoboosted": false, - "supply": 29 - }, - { - "name": "Lair", - "is_worker": false, - "frame": 4380.2, - "clock_position": null, - "time": "3:15", - "is_chronoboosted": false, - "supply": 29 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 4648.8, - "clock_position": null, - "time": "3:27", - "is_chronoboosted": false, - "supply": 30 - }, - { - "name": "BanelingNest", - "is_worker": false, - "frame": 4771, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 30 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5360.2, - "clock_position": null, - "time": "3:59", - "is_chronoboosted": false, - "supply": 25 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5360.2, - "clock_position": null, - "time": "3:59", - "is_chronoboosted": false, - "supply": 25 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5364.2, - "clock_position": null, - "time": "3:59", - "is_chronoboosted": false, - "supply": 25 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5364.2, - "clock_position": null, - "time": "3:59", - "is_chronoboosted": false, - "supply": 25 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5369.2, - "clock_position": null, - "time": "3:59", - "is_chronoboosted": false, - "supply": 25 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5369.2, - "clock_position": null, - "time": "3:59", - "is_chronoboosted": false, - "supply": 25 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5372.2, - "clock_position": null, - "time": "3:59", - "is_chronoboosted": false, - "supply": 25 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5372.2, - "clock_position": null, - "time": "3:59", - "is_chronoboosted": false, - "supply": 25 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5376.2, - "clock_position": null, - "time": "4:00", - "is_chronoboosted": false, - "supply": 25 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5376.2, - "clock_position": null, - "time": "4:00", - "is_chronoboosted": false, - "supply": 25 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5379.2, - "clock_position": null, - "time": "4:00", - "is_chronoboosted": false, - "supply": 25 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5379.2, - "clock_position": null, - "time": "4:00", - "is_chronoboosted": false, - "supply": 25 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5491.2, - "clock_position": null, - "time": "4:05", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5491.2, - "clock_position": null, - "time": "4:05", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5494.2, - "clock_position": null, - "time": "4:05", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5494.2, - "clock_position": null, - "time": "4:05", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5498.2, - "clock_position": null, - "time": "4:05", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 5498.2, - "clock_position": null, - "time": "4:05", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 5532.6, - "clock_position": null, - "time": "4:06", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Spire", - "is_worker": false, - "frame": 5823, - "clock_position": null, - "time": "4:19", - "is_chronoboosted": false, - "supply": 36 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 5976.2, - "clock_position": null, - "time": "4:26", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6159.2, - "clock_position": null, - "time": "4:34", - "is_chronoboosted": false, - "supply": 36 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6165.2, - "clock_position": null, - "time": "4:35", - "is_chronoboosted": false, - "supply": 36 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6171.2, - "clock_position": null, - "time": "4:35", - "is_chronoboosted": false, - "supply": 36 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6173.2, - "clock_position": null, - "time": "4:35", - "is_chronoboosted": false, - "supply": 36 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6219.2, - "clock_position": null, - "time": "4:37", - "is_chronoboosted": false, - "supply": 36 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6290.2, - "clock_position": null, - "time": "4:40", - "is_chronoboosted": false, - "supply": 41 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6368.2, - "clock_position": null, - "time": "4:44", - "is_chronoboosted": false, - "supply": 41 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6746.2, - "clock_position": null, - "time": "5:01", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 6774.8, - "clock_position": null, - "time": "5:02", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 6889.8, - "clock_position": null, - "time": "5:07", - "is_chronoboosted": false, - "supply": 44 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 6996.8, - "clock_position": null, - "time": "5:12", - "is_chronoboosted": false, - "supply": 44 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7218.2, - "clock_position": null, - "time": "5:22", - "is_chronoboosted": false, - "supply": 44 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7226.2, - "clock_position": null, - "time": "5:22", - "is_chronoboosted": false, - "supply": 44 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7230.2, - "clock_position": null, - "time": "5:22", - "is_chronoboosted": false, - "supply": 44 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7234.2, - "clock_position": null, - "time": "5:22", - "is_chronoboosted": false, - "supply": 44 - }, - { - "name": "Mutalisk", - "is_worker": false, - "frame": 7492.4, - "clock_position": null, - "time": "5:34", - "is_chronoboosted": false, - "supply": 48 - }, - { - "name": "Mutalisk", - "is_worker": false, - "frame": 7496.4, - "clock_position": null, - "time": "5:34", - "is_chronoboosted": false, - "supply": 48 - }, - { - "name": "Mutalisk", - "is_worker": false, - "frame": 7499.4, - "clock_position": null, - "time": "5:34", - "is_chronoboosted": false, - "supply": 48 - }, - { - "name": "Mutalisk", - "is_worker": false, - "frame": 7696.4, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 54 - }, - { - "name": "Mutalisk", - "is_worker": false, - "frame": 7699.4, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 54 - }, - { - "name": "Mutalisk", - "is_worker": false, - "frame": 7935.4, - "clock_position": null, - "time": "5:54", - "is_chronoboosted": false, - "supply": 58 - }, - { - "name": "Mutalisk", - "is_worker": false, - "frame": 7938.4, - "clock_position": null, - "time": "5:54", - "is_chronoboosted": false, - "supply": 58 - }, - { - "name": "Mutalisk", - "is_worker": false, - "frame": 7941.4, - "clock_position": null, - "time": "5:54", - "is_chronoboosted": false, - "supply": 58 - }, - { - "name": "Mutalisk", - "is_worker": false, - "frame": 7945.4, - "clock_position": null, - "time": "5:54", - "is_chronoboosted": false, - "supply": 58 - }, - { - "name": "Corruptor", - "is_worker": false, - "frame": 8151.4, - "clock_position": null, - "time": "6:03", - "is_chronoboosted": false, - "supply": 66 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 8216.8, - "clock_position": null, - "time": "6:06", - "is_chronoboosted": false, - "supply": 66 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 8218.8, - "clock_position": null, - "time": "6:06", - "is_chronoboosted": false, - "supply": 66 + "is_worker": false, + "name": "Extractor", + "clock_position": null, + "supply": 12, + "frame": 155, + "is_chronoboosted": false, + "time": "0:06" + }, + { + "is_worker": false, + "name": "Extractor", + "clock_position": null, + "supply": 11, + "frame": 187, + "is_chronoboosted": false, + "time": "0:08" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 11, + "frame": 188.20000000000005, + "is_chronoboosted": false, + "time": "0:08" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 12, + "frame": 322.20000000000005, + "is_chronoboosted": false, + "time": "0:14" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 12, + "frame": 479.20000000000005, + "is_chronoboosted": false, + "time": "0:21" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 13, + "frame": 581.2, + "is_chronoboosted": false, + "time": "0:25" + }, + { + "is_worker": false, + "name": "SpawningPool", + "clock_position": null, + "supply": 14, + "frame": 1070, + "is_chronoboosted": false, + "time": "0:47" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 13, + "frame": 1130.2, + "is_chronoboosted": false, + "time": "0:50" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 14, + "frame": 1331.8, + "is_chronoboosted": false, + "time": "0:59" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 15, + "frame": 1762.2, + "is_chronoboosted": false, + "time": "1:18" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 15, + "frame": 1770.2, + "is_chronoboosted": false, + "time": "1:19" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 15, + "frame": 1776.2, + "is_chronoboosted": false, + "time": "1:19" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 17, + "frame": 2113.2, + "is_chronoboosted": false, + "time": "1:34" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 18, + "frame": 2244.6, + "is_chronoboosted": false, + "time": "1:40" + }, + { + "is_worker": false, + "name": "Metabolic Boost", + "clock_position": null, + "supply": 18, + "frame": 2293.4, + "is_chronoboosted": false, + "time": "1:42" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 20, + "frame": 2665.2, + "is_chronoboosted": false, + "time": "1:58" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 20, + "frame": 2671.2, + "is_chronoboosted": false, + "time": "1:59" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 22, + "frame": 2766.8, + "is_chronoboosted": false, + "time": "2:03" + }, + { + "is_worker": false, + "name": "Hatchery", + "clock_position": null, + "supply": 22, + "frame": 3345, + "is_chronoboosted": false, + "time": "2:29" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 21, + "frame": 3414.2, + "is_chronoboosted": false, + "time": "2:32" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 21, + "frame": 3492.2, + "is_chronoboosted": false, + "time": "2:35" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 23, + "frame": 3618.2, + "is_chronoboosted": false, + "time": "2:41" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 24, + "frame": 3951.2, + "is_chronoboosted": false, + "time": "2:56" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 24, + "frame": 3951.2, + "is_chronoboosted": false, + "time": "2:56" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 24, + "frame": 3955.2, + "is_chronoboosted": false, + "time": "2:56" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 24, + "frame": 3955.2, + "is_chronoboosted": false, + "time": "2:56" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 24, + "frame": 3958.2, + "is_chronoboosted": false, + "time": "2:56" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 24, + "frame": 3958.2, + "is_chronoboosted": false, + "time": "2:56" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 24, + "frame": 3962.2, + "is_chronoboosted": false, + "time": "2:56" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 24, + "frame": 3962.2, + "is_chronoboosted": false, + "time": "2:56" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 28, + "frame": 4249.2, + "is_chronoboosted": false, + "time": "3:09" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 29, + "frame": 4334.2, + "is_chronoboosted": false, + "time": "3:13" + }, + { + "is_worker": false, + "name": "Lair", + "clock_position": null, + "supply": 29, + "frame": 4380.2, + "is_chronoboosted": false, + "time": "3:15" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 30, + "frame": 4648.8, + "is_chronoboosted": false, + "time": "3:27" + }, + { + "is_worker": false, + "name": "BanelingNest", + "clock_position": null, + "supply": 30, + "frame": 4771, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 25, + "frame": 5360.2, + "is_chronoboosted": false, + "time": "3:59" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 25, + "frame": 5360.2, + "is_chronoboosted": false, + "time": "3:59" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 25, + "frame": 5364.2, + "is_chronoboosted": false, + "time": "3:59" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 25, + "frame": 5364.2, + "is_chronoboosted": false, + "time": "3:59" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 25, + "frame": 5369.2, + "is_chronoboosted": false, + "time": "3:59" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 25, + "frame": 5369.2, + "is_chronoboosted": false, + "time": "3:59" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 25, + "frame": 5372.2, + "is_chronoboosted": false, + "time": "3:59" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 25, + "frame": 5372.2, + "is_chronoboosted": false, + "time": "3:59" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 25, + "frame": 5376.2, + "is_chronoboosted": false, + "time": "4:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 25, + "frame": 5376.2, + "is_chronoboosted": false, + "time": "4:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 25, + "frame": 5379.2, + "is_chronoboosted": false, + "time": "4:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 25, + "frame": 5379.2, + "is_chronoboosted": false, + "time": "4:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 31, + "frame": 5491.2, + "is_chronoboosted": false, + "time": "4:05" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 31, + "frame": 5491.2, + "is_chronoboosted": false, + "time": "4:05" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 31, + "frame": 5494.2, + "is_chronoboosted": false, + "time": "4:05" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 31, + "frame": 5494.2, + "is_chronoboosted": false, + "time": "4:05" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 31, + "frame": 5498.2, + "is_chronoboosted": false, + "time": "4:05" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 31, + "frame": 5498.2, + "is_chronoboosted": false, + "time": "4:05" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 31, + "frame": 5532.6, + "is_chronoboosted": false, + "time": "4:06" + }, + { + "is_worker": false, + "name": "Spire", + "clock_position": null, + "supply": 36, + "frame": 5823, + "is_chronoboosted": false, + "time": "4:19" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 35, + "frame": 5976.2, + "is_chronoboosted": false, + "time": "4:26" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 36, + "frame": 6159.2, + "is_chronoboosted": false, + "time": "4:34" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 36, + "frame": 6165.2, + "is_chronoboosted": false, + "time": "4:35" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 36, + "frame": 6171.2, + "is_chronoboosted": false, + "time": "4:35" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 36, + "frame": 6173.2, + "is_chronoboosted": false, + "time": "4:35" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 36, + "frame": 6219.2, + "is_chronoboosted": false, + "time": "4:37" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 41, + "frame": 6290.2, + "is_chronoboosted": false, + "time": "4:40" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 41, + "frame": 6368.2, + "is_chronoboosted": false, + "time": "4:44" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 43, + "frame": 6746.2, + "is_chronoboosted": false, + "time": "5:01" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 43, + "frame": 6774.8, + "is_chronoboosted": false, + "time": "5:02" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 44, + "frame": 6889.8, + "is_chronoboosted": false, + "time": "5:07" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 44, + "frame": 6996.8, + "is_chronoboosted": false, + "time": "5:12" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 44, + "frame": 7218.2, + "is_chronoboosted": false, + "time": "5:22" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 44, + "frame": 7226.2, + "is_chronoboosted": false, + "time": "5:22" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 44, + "frame": 7230.2, + "is_chronoboosted": false, + "time": "5:22" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 44, + "frame": 7234.2, + "is_chronoboosted": false, + "time": "5:22" + }, + { + "is_worker": false, + "name": "Mutalisk", + "clock_position": null, + "supply": 48, + "frame": 7492.4, + "is_chronoboosted": false, + "time": "5:34" + }, + { + "is_worker": false, + "name": "Mutalisk", + "clock_position": null, + "supply": 48, + "frame": 7496.4, + "is_chronoboosted": false, + "time": "5:34" + }, + { + "is_worker": false, + "name": "Mutalisk", + "clock_position": null, + "supply": 48, + "frame": 7499.4, + "is_chronoboosted": false, + "time": "5:34" + }, + { + "is_worker": false, + "name": "Mutalisk", + "clock_position": null, + "supply": 54, + "frame": 7696.4, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Mutalisk", + "clock_position": null, + "supply": 54, + "frame": 7699.4, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Mutalisk", + "clock_position": null, + "supply": 58, + "frame": 7935.4, + "is_chronoboosted": false, + "time": "5:54" + }, + { + "is_worker": false, + "name": "Mutalisk", + "clock_position": null, + "supply": 58, + "frame": 7938.4, + "is_chronoboosted": false, + "time": "5:54" + }, + { + "is_worker": false, + "name": "Mutalisk", + "clock_position": null, + "supply": 58, + "frame": 7941.4, + "is_chronoboosted": false, + "time": "5:54" + }, + { + "is_worker": false, + "name": "Mutalisk", + "clock_position": null, + "supply": 58, + "frame": 7945.4, + "is_chronoboosted": false, + "time": "5:54" + }, + { + "is_worker": false, + "name": "Corruptor", + "clock_position": null, + "supply": 66, + "frame": 8151.4, + "is_chronoboosted": false, + "time": "6:03" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 66, + "frame": 8216.8, + "is_chronoboosted": false, + "time": "6:06" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 66, + "frame": 8218.8, + "is_chronoboosted": false, + "time": "6:06" + } + ], + "abilities": [ + { + "frame": 3171, + "name": "SpawnLarva", + "time": "2:21" + }, + { + "frame": 3872, + "name": "SpawnLarva", + "time": "2:52" + }, + { + "frame": 4565, + "name": "SpawnLarva", + "time": "3:23" + }, + { + "frame": 5294, + "name": "SpawnLarva", + "time": "3:56" + }, + { + "frame": 6071, + "name": "SpawnLarva", + "time": "4:31" + }, + { + "frame": 6409, + "name": "SpawnLarva", + "time": "4:46" + }, + { + "frame": 6949, + "name": "SpawnLarva", + "time": "5:10" + }, + { + "frame": 7123, + "name": "SpawnLarva", + "time": "5:17" + }, + { + "frame": 7421, + "name": "SpawnLarva", + "time": "5:31" + }, + { + "frame": 8101, + "name": "SpawnLarva", + "time": "6:01" + } + ], + "name": "BEHALKHOR", + "is_human": true, + "level": 4294967295, + "handicap": 100, + "region": "eu", + "is_winner": false, + "pick_race": "Zerg", + "clock_position": null, + "commander": "", + "color": "0042FF", + "unitsLost": [ + { + "frame": 635, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "0:28" + }, + { + "frame": 667, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "0:29" + }, + { + "frame": 2110, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "1:34" + }, + { + "frame": 4946, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "3:40" + }, + { + "frame": 4951, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "3:41" + }, + { + "frame": 5052, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "3:45" + }, + { + "frame": 5096, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "3:47" + }, + { + "frame": 5139, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "3:49" + }, + { + "frame": 5168, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "3:50" + }, + { + "frame": 5184, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "3:51" + }, + { + "frame": 5188, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "3:51" + }, + { + "frame": 5205, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "3:52" + }, + { + "frame": 5731, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "4:15" + }, + { + "frame": 7423, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "5:31" + }, + { + "frame": 8750, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:30" + }, + { + "frame": 8753, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:30" + }, + { + "frame": 8762, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:31" + }, + { + "frame": 8762, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:31" + }, + { + "frame": 8778, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:31" + }, + { + "frame": 8778, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:31" + }, + { + "frame": 8779, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:31" + }, + { + "frame": 8782, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:32" + }, + { + "frame": 8787, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:32" + }, + { + "frame": 8787, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:32" + }, + { + "frame": 8788, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:32" + }, + { + "frame": 8790, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:32" + }, + { + "frame": 8790, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:32" + }, + { + "frame": 8791, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:32" + }, + { + "frame": 8838, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:34" + }, + { + "frame": 8845, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:34" + }, + { + "frame": 8847, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:34" + }, + { + "frame": 8848, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:35" + }, + { + "frame": 8854, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:35" + }, + { + "frame": 8857, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "6:35" + }, + { + "frame": 8864, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:35" + }, + { + "frame": 8871, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:36" + }, + { + "frame": 8894, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:37" + }, + { + "frame": 8894, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:37" + }, + { + "frame": 8897, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:37" + }, + { + "frame": 8908, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:37" + }, + { + "frame": 8925, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:38" + }, + { + "frame": 8925, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:38" + }, + { + "frame": 8927, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:38" + }, + { + "frame": 8927, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:38" + }, + { + "frame": 8927, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:38" + }, + { + "frame": 8929, + "killer": 1, + "name": "Queen", + "clock_position": null, + "time": "6:38" + }, + { + "frame": 9048, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:43" + }, + { + "frame": 9058, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:44" + }, + { + "frame": 9076, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:45" + }, + { + "frame": 9087, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:45" + }, + { + "frame": 9104, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:46" + }, + { + "frame": 9117, + "killer": 1, + "name": "Queen", + "clock_position": null, + "time": "6:47" + }, + { + "frame": 9135, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:47" + }, + { + "frame": 9137, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:47" + }, + { + "frame": 9140, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:48" + }, + { + "frame": 9144, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:48" + }, + { + "frame": 9146, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:48" + }, + { + "frame": 9147, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:48" + }, + { + "frame": 9151, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:48" + }, + { + "frame": 9166, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:49" + }, + { + "frame": 9174, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:49" + }, + { + "frame": 9177, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:49" + }, + { + "frame": 9178, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:49" + }, + { + "frame": 9182, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:49" + }, + { + "frame": 9183, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:49" + }, + { + "frame": 9188, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:50" + }, + { + "frame": 9191, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:50" + }, + { + "frame": 9197, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:50" + }, + { + "frame": 9204, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "6:50" + }, + { + "frame": 9366, + "killer": 1, + "name": "Spire", + "clock_position": null, + "time": "6:58" + }, + { + "frame": 9469, + "killer": 1, + "name": "BanelingNest", + "clock_position": null, + "time": "7:02" + }, + { + "frame": 9528, + "killer": 1, + "name": "Extractor", + "clock_position": null, + "time": "7:05" + }, + { + "frame": 9574, + "killer": 1, + "name": "Lair", + "clock_position": null, + "time": "7:07" + }, + { + "frame": 9694, + "killer": 1, + "name": "Extractor", + "clock_position": null, + "time": "7:12" + }, + { + "frame": 9925, + "killer": 1, + "name": "SpawningPool", + "clock_position": null, + "time": "7:23" + }, + { + "frame": 9947, + "killer": 1, + "name": "Hatchery", + "clock_position": null, + "time": "7:24" } - ], - "clock_position": null, - "uid": 2467417, - "race": "Zerg", - "team": 2, - "handicap": 100 + ], + "race": "Zerg", + "result": "Loss", + "team": 2, + "uid": 2467417 } - }, - "buildOrderExtracted": true, - "frames": 9991 + }, + "buildOrderExtracted": true, + "build": 59587, + "frames_per_second": 22.4, + "unix_timestamp": 1510744144 } \ No newline at end of file diff --git a/tests/patch_5_0_11.json b/tests/patch_5_0_11.json new file mode 100644 index 0000000..8bc56ba --- /dev/null +++ b/tests/patch_5_0_11.json @@ -0,0 +1,5055 @@ +{ + "map": "[ESL] Gresvan", + "baseBuild": 89720, + "expansion": "LotV", + "cooperative": false, + "frames": 13704, + "message": "", + "category": "Private", + "map_hash": "6f86271a6231409aa75466193713b49ed3481aa7da4b5480e23f99efeceada56", + "include_map_details": false, + "region": "eu", + "game_type": "1v1", + "players": { + "1": { + "supply": [ + [ + 0, + 12 + ], + [ + 1, + 12 + ], + [ + 160, + 13 + ], + [ + 320, + 14 + ], + [ + 480, + 14 + ], + [ + 640, + 15 + ], + [ + 800, + 15 + ], + [ + 960, + 16 + ], + [ + 1120, + 16 + ], + [ + 1280, + 17 + ], + [ + 1440, + 18 + ], + [ + 1600, + 18 + ], + [ + 1760, + 19 + ], + [ + 1920, + 19 + ], + [ + 2080, + 20 + ], + [ + 2240, + 20 + ], + [ + 2400, + 20 + ], + [ + 2560, + 20 + ], + [ + 2720, + 22 + ], + [ + 2880, + 23 + ], + [ + 3040, + 23 + ], + [ + 3200, + 24 + ], + [ + 3360, + 24 + ], + [ + 3520, + 25 + ], + [ + 3680, + 25 + ], + [ + 3840, + 26 + ], + [ + 4000, + 26 + ], + [ + 4160, + 29 + ], + [ + 4320, + 29 + ], + [ + 4480, + 30 + ], + [ + 4640, + 36 + ], + [ + 4800, + 37 + ], + [ + 4960, + 40 + ], + [ + 5120, + 40 + ], + [ + 5280, + 42 + ], + [ + 5440, + 46 + ], + [ + 5600, + 45 + ], + [ + 5760, + 47 + ], + [ + 5920, + 49 + ], + [ + 6080, + 51 + ], + [ + 6240, + 54 + ], + [ + 6400, + 54 + ], + [ + 6560, + 58 + ], + [ + 6720, + 60 + ], + [ + 6880, + 62 + ], + [ + 7040, + 65 + ], + [ + 7200, + 67 + ], + [ + 7360, + 74 + ], + [ + 7520, + 78 + ], + [ + 7680, + 79 + ], + [ + 7840, + 82 + ], + [ + 8000, + 79 + ], + [ + 8160, + 86 + ], + [ + 8320, + 90 + ], + [ + 8480, + 92 + ], + [ + 8640, + 91 + ], + [ + 8800, + 96 + ], + [ + 8960, + 102 + ], + [ + 9120, + 103 + ], + [ + 9280, + 106 + ], + [ + 9440, + 104 + ], + [ + 9600, + 95 + ], + [ + 9760, + 93 + ], + [ + 9920, + 85 + ], + [ + 10080, + 87 + ], + [ + 10240, + 89 + ], + [ + 10400, + 91 + ], + [ + 10560, + 90 + ], + [ + 10720, + 93 + ], + [ + 10880, + 97 + ], + [ + 11040, + 102 + ], + [ + 11200, + 100 + ], + [ + 11360, + 102 + ], + [ + 11520, + 107 + ], + [ + 11680, + 110 + ], + [ + 11840, + 102 + ], + [ + 12000, + 95 + ], + [ + 12160, + 99 + ], + [ + 12320, + 101 + ], + [ + 12480, + 107 + ], + [ + 12640, + 110 + ], + [ + 12800, + 100 + ], + [ + 12960, + 104 + ], + [ + 13120, + 100 + ], + [ + 13280, + 98 + ], + [ + 13440, + 100 + ], + [ + 13586, + 100 + ] + ], + "league": 0, + "buildOrder": [ + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 12, + "frame": 13.200000000000045, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 13, + "frame": 284.20000000000005, + "is_chronoboosted": false, + "time": "0:12" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 14, + "frame": 385, + "is_chronoboosted": false, + "time": "0:17" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 14, + "frame": 555.2, + "is_chronoboosted": false, + "time": "0:24" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 15, + "frame": 868.2, + "is_chronoboosted": false, + "time": "0:38" + }, + { + "is_worker": false, + "name": "Barracks", + "clock_position": null, + "supply": 15, + "frame": 920, + "is_chronoboosted": false, + "time": "0:41" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 16, + "frame": 1010, + "is_chronoboosted": false, + "time": "0:45" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 16, + "frame": 1139.2, + "is_chronoboosted": false, + "time": "0:50" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 17, + "frame": 1434.2, + "is_chronoboosted": false, + "time": "1:04" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 18, + "frame": 1705.2, + "is_chronoboosted": false, + "time": "1:16" + }, + { + "is_worker": false, + "name": "Reaper", + "clock_position": null, + "supply": 19, + "frame": 1987.2, + "is_chronoboosted": false, + "time": "1:28" + }, + { + "is_worker": false, + "name": "Orbital Command", + "clock_position": null, + "supply": 19, + "frame": 1991.0, + "is_chronoboosted": false, + "time": "1:28" + }, + { + "is_worker": false, + "name": "CommandCenter", + "clock_position": null, + "supply": 20, + "frame": 2356, + "is_chronoboosted": false, + "time": "1:45" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 20, + "frame": 2558, + "is_chronoboosted": false, + "time": "1:54" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 20, + "frame": 2599.2, + "is_chronoboosted": false, + "time": "1:56" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 20, + "frame": 2701.8, + "is_chronoboosted": false, + "time": "2:00" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 22, + "frame": 2870.2, + "is_chronoboosted": false, + "time": "2:08" + }, + { + "is_worker": false, + "name": "Factory", + "clock_position": null, + "supply": 23, + "frame": 2978, + "is_chronoboosted": false, + "time": "2:12" + }, + { + "is_worker": false, + "name": "Bunker", + "clock_position": null, + "supply": 23, + "frame": 3150, + "is_chronoboosted": false, + "time": "2:20" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 23, + "frame": 3180.2, + "is_chronoboosted": false, + "time": "2:21" + }, + { + "is_worker": false, + "name": "BarracksReactor", + "clock_position": null, + "supply": 24, + "frame": 3242, + "is_chronoboosted": false, + "time": "2:24" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 24, + "frame": 3382, + "is_chronoboosted": false, + "time": "2:30" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 24, + "frame": 3451.2, + "is_chronoboosted": false, + "time": "2:34" + }, + { + "is_worker": false, + "name": "Barracks", + "clock_position": null, + "supply": 25, + "frame": 3600, + "is_chronoboosted": false, + "time": "2:40" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 25, + "frame": 3825.2, + "is_chronoboosted": false, + "time": "2:50" + }, + { + "is_worker": false, + "name": "Orbital Command", + "clock_position": null, + "supply": 26, + "frame": 4012.0, + "is_chronoboosted": false, + "time": "2:59" + }, + { + "is_worker": false, + "name": "FactoryTechLab", + "clock_position": null, + "supply": 26, + "frame": 4086, + "is_chronoboosted": false, + "time": "3:02" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 26, + "frame": 4090.8, + "is_chronoboosted": false, + "time": "3:02" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 26, + "frame": 4093.8, + "is_chronoboosted": false, + "time": "3:02" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 26, + "frame": 4146.2, + "is_chronoboosted": false, + "time": "3:05" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 29, + "frame": 4417.2, + "is_chronoboosted": false, + "time": "3:17" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 30, + "frame": 4489.8, + "is_chronoboosted": false, + "time": "3:20" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 30, + "frame": 4492.8, + "is_chronoboosted": false, + "time": "3:20" + }, + { + "is_worker": false, + "name": "Cyclone", + "clock_position": null, + "supply": 30, + "frame": 4526.2, + "is_chronoboosted": false, + "time": "3:22" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 30, + "frame": 4610.2, + "is_chronoboosted": false, + "time": "3:25" + }, + { + "is_worker": false, + "name": "BarracksTechLab", + "clock_position": null, + "supply": 36, + "frame": 4677, + "is_chronoboosted": false, + "time": "3:28" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 36, + "frame": 4785.2, + "is_chronoboosted": false, + "time": "3:33" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 37, + "frame": 4881.2, + "is_chronoboosted": false, + "time": "3:37" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 37, + "frame": 4951.8, + "is_chronoboosted": false, + "time": "3:41" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 37, + "frame": 4954.8, + "is_chronoboosted": false, + "time": "3:41" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 40, + "frame": 5056.2, + "is_chronoboosted": false, + "time": "3:45" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 40, + "frame": 5074, + "is_chronoboosted": false, + "time": "3:46" + }, + { + "is_worker": false, + "name": "Stimpack", + "clock_position": null, + "supply": 40, + "frame": 5136.0, + "is_chronoboosted": false, + "time": "3:49" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 40, + "frame": 5175.2, + "is_chronoboosted": false, + "time": "3:51" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 40, + "frame": 5216.8, + "is_chronoboosted": false, + "time": "3:52" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 42, + "frame": 5388.2, + "is_chronoboosted": false, + "time": "4:00" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 46, + "frame": 5493.8, + "is_chronoboosted": false, + "time": "4:05" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 46, + "frame": 5551.8, + "is_chronoboosted": false, + "time": "4:07" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 46, + "frame": 5557.2, + "is_chronoboosted": false, + "time": "4:08" + }, + { + "is_worker": false, + "name": "EngineeringBay", + "clock_position": null, + "supply": 45, + "frame": 5604, + "is_chronoboosted": false, + "time": "4:10" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 45, + "frame": 5616.8, + "is_chronoboosted": false, + "time": "4:10" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 45, + "frame": 5659.2, + "is_chronoboosted": false, + "time": "4:12" + }, + { + "is_worker": false, + "name": "Barracks", + "clock_position": null, + "supply": 45, + "frame": 5751, + "is_chronoboosted": false, + "time": "4:16" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 47, + "frame": 5828.2, + "is_chronoboosted": false, + "time": "4:20" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 47, + "frame": 5892.8, + "is_chronoboosted": false, + "time": "4:23" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 49, + "frame": 5930.2, + "is_chronoboosted": false, + "time": "4:24" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 49, + "frame": 5950.8, + "is_chronoboosted": false, + "time": "4:25" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 49, + "frame": 5955, + "is_chronoboosted": false, + "time": "4:25" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 51, + "frame": 6099.2, + "is_chronoboosted": false, + "time": "4:32" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 51, + "frame": 6153.8, + "is_chronoboosted": false, + "time": "4:34" + }, + { + "is_worker": false, + "name": "Terran Infantry Weapons Level 1", + "clock_position": null, + "supply": 51, + "frame": 6197.4, + "is_chronoboosted": false, + "time": "4:36" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 51, + "frame": 6201.2, + "is_chronoboosted": false, + "time": "4:36" + }, + { + "is_worker": false, + "name": "FactoryReactor", + "clock_position": null, + "supply": 54, + "frame": 6283, + "is_chronoboosted": false, + "time": "4:40" + }, + { + "is_worker": false, + "name": "Starport", + "clock_position": null, + "supply": 54, + "frame": 6299, + "is_chronoboosted": false, + "time": "4:41" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 54, + "frame": 6431.8, + "is_chronoboosted": false, + "time": "4:47" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 54, + "frame": 6436, + "is_chronoboosted": false, + "time": "4:47" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 54, + "frame": 6439.2, + "is_chronoboosted": false, + "time": "4:47" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 54, + "frame": 6472.2, + "is_chronoboosted": false, + "time": "4:48" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 54, + "frame": 6476, + "is_chronoboosted": false, + "time": "4:49" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 54, + "frame": 6488.8, + "is_chronoboosted": false, + "time": "4:49" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 58, + "frame": 6583, + "is_chronoboosted": false, + "time": "4:53" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 58, + "frame": 6608.8, + "is_chronoboosted": false, + "time": "4:55" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 58, + "frame": 6710.2, + "is_chronoboosted": false, + "time": "4:59" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 60, + "frame": 6743.2, + "is_chronoboosted": false, + "time": "5:01" + }, + { + "is_worker": false, + "name": "Combat Shield", + "clock_position": null, + "supply": 60, + "frame": 6805.4, + "is_chronoboosted": false, + "time": "5:03" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 60, + "frame": 6815.8, + "is_chronoboosted": false, + "time": "5:04" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 62, + "frame": 6926.8, + "is_chronoboosted": false, + "time": "5:09" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 62, + "frame": 6981.2, + "is_chronoboosted": false, + "time": "5:11" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 62, + "frame": 6998, + "is_chronoboosted": false, + "time": "5:12" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 62, + "frame": 7011.8, + "is_chronoboosted": false, + "time": "5:13" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 65, + "frame": 7047.8, + "is_chronoboosted": false, + "time": "5:14" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 65, + "frame": 7068.2, + "is_chronoboosted": false, + "time": "5:15" + }, + { + "is_worker": false, + "name": "FactoryReactor", + "clock_position": null, + "supply": 67, + "frame": 7229, + "is_chronoboosted": false, + "time": "5:22" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 67, + "frame": 7230, + "is_chronoboosted": false, + "time": "5:22" + }, + { + "is_worker": false, + "name": "Medivac", + "clock_position": null, + "supply": 67, + "frame": 7238.0, + "is_chronoboosted": false, + "time": "5:23" + }, + { + "is_worker": false, + "name": "Medivac", + "clock_position": null, + "supply": 67, + "frame": 7241.0, + "is_chronoboosted": false, + "time": "5:23" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 67, + "frame": 7242.8, + "is_chronoboosted": false, + "time": "5:23" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 67, + "frame": 7306.2, + "is_chronoboosted": false, + "time": "5:26" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 67, + "frame": 7339.2, + "is_chronoboosted": false, + "time": "5:27" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 74, + "frame": 7371, + "is_chronoboosted": false, + "time": "5:29" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 74, + "frame": 7399.8, + "is_chronoboosted": false, + "time": "5:30" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 74, + "frame": 7484.6, + "is_chronoboosted": false, + "time": "5:34" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 74, + "frame": 7510.8, + "is_chronoboosted": false, + "time": "5:35" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 78, + "frame": 7577.2, + "is_chronoboosted": false, + "time": "5:38" + }, + { + "is_worker": false, + "name": "MissileTurret", + "clock_position": null, + "supply": 78, + "frame": 7610, + "is_chronoboosted": false, + "time": "5:39" + }, + { + "is_worker": false, + "name": "MissileTurret", + "clock_position": null, + "supply": 78, + "frame": 7665, + "is_chronoboosted": false, + "time": "5:42" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 79, + "frame": 7728.6, + "is_chronoboosted": false, + "time": "5:45" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 79, + "frame": 7753.2, + "is_chronoboosted": false, + "time": "5:46" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 82, + "frame": 7890.2, + "is_chronoboosted": false, + "time": "5:52" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 82, + "frame": 7905, + "is_chronoboosted": false, + "time": "5:52" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 79, + "frame": 8024.2, + "is_chronoboosted": false, + "time": "5:58" + }, + { + "is_worker": false, + "name": "Medivac", + "clock_position": null, + "supply": 79, + "frame": 8066.0, + "is_chronoboosted": false, + "time": "6:00" + }, + { + "is_worker": false, + "name": "Medivac", + "clock_position": null, + "supply": 79, + "frame": 8068.0, + "is_chronoboosted": false, + "time": "6:00" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 79, + "frame": 8103.8, + "is_chronoboosted": false, + "time": "6:01" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 79, + "frame": 8106.8, + "is_chronoboosted": false, + "time": "6:01" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 86, + "frame": 8197.6, + "is_chronoboosted": false, + "time": "6:05" + }, + { + "is_worker": false, + "name": "Widow Mine", + "clock_position": null, + "supply": 90, + "frame": 8326.6, + "is_chronoboosted": false, + "time": "6:11" + }, + { + "is_worker": false, + "name": "Widow Mine", + "clock_position": null, + "supply": 90, + "frame": 8329.6, + "is_chronoboosted": false, + "time": "6:11" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 90, + "frame": 8398, + "is_chronoboosted": false, + "time": "6:14" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 90, + "frame": 8470, + "is_chronoboosted": false, + "time": "6:18" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 92, + "frame": 8561.2, + "is_chronoboosted": false, + "time": "6:22" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 92, + "frame": 8595.2, + "is_chronoboosted": false, + "time": "6:23" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 91, + "frame": 8663.8, + "is_chronoboosted": false, + "time": "6:26" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 91, + "frame": 8666.8, + "is_chronoboosted": false, + "time": "6:26" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 91, + "frame": 8679.6, + "is_chronoboosted": false, + "time": "6:27" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 91, + "frame": 8742.8, + "is_chronoboosted": false, + "time": "6:30" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 96, + "frame": 8832.2, + "is_chronoboosted": false, + "time": "6:34" + }, + { + "is_worker": false, + "name": "Widow Mine", + "clock_position": null, + "supply": 96, + "frame": 8855.6, + "is_chronoboosted": false, + "time": "6:35" + }, + { + "is_worker": false, + "name": "Widow Mine", + "clock_position": null, + "supply": 96, + "frame": 8858.6, + "is_chronoboosted": false, + "time": "6:35" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 96, + "frame": 8909.2, + "is_chronoboosted": false, + "time": "6:37" + }, + { + "is_worker": false, + "name": "Terran Infantry Armor Level 1", + "clock_position": null, + "supply": 102, + "frame": 8981.4, + "is_chronoboosted": false, + "time": "6:40" + }, + { + "is_worker": false, + "name": "Concussive Shells", + "clock_position": null, + "supply": 102, + "frame": 9060.8, + "is_chronoboosted": false, + "time": "6:44" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 102, + "frame": 9092.8, + "is_chronoboosted": false, + "time": "6:45" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 103, + "frame": 9154.6, + "is_chronoboosted": false, + "time": "6:48" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 103, + "frame": 9271.8, + "is_chronoboosted": false, + "time": "6:53" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 106, + "frame": 9302.8, + "is_chronoboosted": false, + "time": "6:55" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 104, + "frame": 9491.8, + "is_chronoboosted": false, + "time": "7:03" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 104, + "frame": 9502.2, + "is_chronoboosted": false, + "time": "7:04" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 95, + "frame": 9633.6, + "is_chronoboosted": false, + "time": "7:10" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 95, + "frame": 9714.6, + "is_chronoboosted": false, + "time": "7:13" + }, + { + "is_worker": false, + "name": "CommandCenter", + "clock_position": null, + "supply": 95, + "frame": 9718, + "is_chronoboosted": false, + "time": "7:13" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 93, + "frame": 9839.8, + "is_chronoboosted": false, + "time": "7:19" + }, + { + "is_worker": false, + "name": "Medivac", + "clock_position": null, + "supply": 93, + "frame": 9886.0, + "is_chronoboosted": false, + "time": "7:21" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 93, + "frame": 9890.8, + "is_chronoboosted": false, + "time": "7:21" + }, + { + "is_worker": false, + "name": "Widow Mine", + "clock_position": null, + "supply": 85, + "frame": 10011.6, + "is_chronoboosted": false, + "time": "7:26" + }, + { + "is_worker": false, + "name": "Widow Mine", + "clock_position": null, + "supply": 85, + "frame": 10013.6, + "is_chronoboosted": false, + "time": "7:27" + }, + { + "is_worker": false, + "name": "Medivac", + "clock_position": null, + "supply": 85, + "frame": 10079.0, + "is_chronoboosted": false, + "time": "7:29" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 87, + "frame": 10112.6, + "is_chronoboosted": false, + "time": "7:31" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 87, + "frame": 10180.8, + "is_chronoboosted": false, + "time": "7:34" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 87, + "frame": 10238.8, + "is_chronoboosted": false, + "time": "7:37" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 89, + "frame": 10248.2, + "is_chronoboosted": false, + "time": "7:37" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 89, + "frame": 10289.8, + "is_chronoboosted": false, + "time": "7:39" + }, + { + "is_worker": false, + "name": "Barracks", + "clock_position": null, + "supply": 91, + "frame": 10404, + "is_chronoboosted": false, + "time": "7:44" + }, + { + "is_worker": false, + "name": "Barracks", + "clock_position": null, + "supply": 91, + "frame": 10451, + "is_chronoboosted": false, + "time": "7:46" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 90, + "frame": 10578.8, + "is_chronoboosted": false, + "time": "7:52" + }, + { + "is_worker": false, + "name": "Viking", + "clock_position": null, + "supply": 90, + "frame": 10635.0, + "is_chronoboosted": false, + "time": "7:54" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 90, + "frame": 10637.8, + "is_chronoboosted": false, + "time": "7:54" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 90, + "frame": 10706.2, + "is_chronoboosted": false, + "time": "7:57" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 93, + "frame": 10804.8, + "is_chronoboosted": false, + "time": "8:02" + }, + { + "is_worker": false, + "name": "Viking", + "clock_position": null, + "supply": 93, + "frame": 10819.0, + "is_chronoboosted": false, + "time": "8:02" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 93, + "frame": 10868.2, + "is_chronoboosted": false, + "time": "8:05" + }, + { + "is_worker": false, + "name": "Siege Tank", + "clock_position": null, + "supply": 97, + "frame": 10901.2, + "is_chronoboosted": false, + "time": "8:06" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 97, + "frame": 10959.8, + "is_chronoboosted": false, + "time": "8:09" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 97, + "frame": 10961.8, + "is_chronoboosted": false, + "time": "8:09" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 97, + "frame": 10990.6, + "is_chronoboosted": false, + "time": "8:10" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 100, + "frame": 11240.2, + "is_chronoboosted": false, + "time": "8:21" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 100, + "frame": 11243.2, + "is_chronoboosted": false, + "time": "8:21" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 100, + "frame": 11289, + "is_chronoboosted": false, + "time": "8:23" + }, + { + "is_worker": false, + "name": "Viking", + "clock_position": null, + "supply": 102, + "frame": 11392.0, + "is_chronoboosted": false, + "time": "8:28" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 102, + "frame": 11407.8, + "is_chronoboosted": false, + "time": "8:29" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 102, + "frame": 11410.8, + "is_chronoboosted": false, + "time": "8:29" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 102, + "frame": 11413.8, + "is_chronoboosted": false, + "time": "8:29" + }, + { + "is_worker": false, + "name": "BarracksTechLab", + "clock_position": null, + "supply": 102, + "frame": 11476, + "is_chronoboosted": false, + "time": "8:32" + }, + { + "is_worker": false, + "name": "BarracksTechLab", + "clock_position": null, + "supply": 102, + "frame": 11494, + "is_chronoboosted": false, + "time": "8:33" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 107, + "frame": 11657.8, + "is_chronoboosted": false, + "time": "8:40" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 107, + "frame": 11672.6, + "is_chronoboosted": false, + "time": "8:41" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 110, + "frame": 11806.8, + "is_chronoboosted": false, + "time": "8:47" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 110, + "frame": 11820.8, + "is_chronoboosted": false, + "time": "8:47" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 102, + "frame": 11853.8, + "is_chronoboosted": false, + "time": "8:49" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 102, + "frame": 11948.8, + "is_chronoboosted": false, + "time": "8:53" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 102, + "frame": 11964.6, + "is_chronoboosted": false, + "time": "8:54" + }, + { + "is_worker": false, + "name": "Siege Tank", + "clock_position": null, + "supply": 95, + "frame": 12051.2, + "is_chronoboosted": false, + "time": "8:58" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 95, + "frame": 12056.8, + "is_chronoboosted": false, + "time": "8:58" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 95, + "frame": 12151.6, + "is_chronoboosted": false, + "time": "9:02" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 99, + "frame": 12205.8, + "is_chronoboosted": false, + "time": "9:04" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 99, + "frame": 12230.2, + "is_chronoboosted": false, + "time": "9:05" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 101, + "frame": 12360.6, + "is_chronoboosted": false, + "time": "9:11" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 101, + "frame": 12456.8, + "is_chronoboosted": false, + "time": "9:16" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 101, + "frame": 12458.8, + "is_chronoboosted": false, + "time": "9:16" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 101, + "frame": 12472.6, + "is_chronoboosted": false, + "time": "9:16" + }, + { + "is_worker": false, + "name": "Liberator", + "clock_position": null, + "supply": 107, + "frame": 12557.8, + "is_chronoboosted": false, + "time": "9:20" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 110, + "frame": 12702.8, + "is_chronoboosted": false, + "time": "9:27" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 110, + "frame": 12705.8, + "is_chronoboosted": false, + "time": "9:27" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 110, + "frame": 12718.6, + "is_chronoboosted": false, + "time": "9:27" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 100, + "frame": 12826.8, + "is_chronoboosted": false, + "time": "9:32" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 100, + "frame": 12855.8, + "is_chronoboosted": false, + "time": "9:33" + }, + { + "is_worker": false, + "name": "Siege Tank", + "clock_position": null, + "supply": 100, + "frame": 12898.2, + "is_chronoboosted": false, + "time": "9:35" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 100, + "frame": 12901.8, + "is_chronoboosted": false, + "time": "9:35" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 100, + "frame": 12954.8, + "is_chronoboosted": false, + "time": "9:38" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 104, + "frame": 12996.2, + "is_chronoboosted": false, + "time": "9:40" + }, + { + "is_worker": false, + "name": "Marauder", + "clock_position": null, + "supply": 100, + "frame": 13197.6, + "is_chronoboosted": false, + "time": "9:49" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 100, + "frame": 13219.8, + "is_chronoboosted": false, + "time": "9:50" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 100, + "frame": 13222.8, + "is_chronoboosted": false, + "time": "9:50" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 98, + "frame": 13399.2, + "is_chronoboosted": false, + "time": "9:58" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 98, + "frame": 13418.2, + "is_chronoboosted": false, + "time": "9:59" + } + ], + "abilities": [ + { + "frame": 2575, + "name": "CalldownMULE", + "time": "1:54" + }, + { + "frame": 4131, + "name": "CalldownMULE", + "time": "3:04" + }, + { + "frame": 4655, + "name": "CalldownMULE", + "time": "3:27" + }, + { + "frame": 5316, + "name": "KD8Charge", + "time": "3:57" + }, + { + "frame": 5441, + "name": "CalldownMULE", + "time": "4:02" + }, + { + "frame": 6027, + "name": "CalldownMULE", + "time": "4:29" + }, + { + "frame": 6858, + "name": "CalldownMULE", + "time": "5:06" + }, + { + "frame": 7742, + "name": "ScannerSweep", + "time": "5:45" + }, + { + "frame": 8348, + "name": "CalldownMULE", + "time": "6:12" + }, + { + "frame": 9168, + "name": "ScannerSweep", + "time": "6:49" + }, + { + "frame": 10363, + "name": "ScannerSweep", + "time": "7:42" + }, + { + "frame": 10975, + "name": "ScannerSweep", + "time": "8:09" + }, + { + "frame": 11537, + "name": "ScannerSweep", + "time": "8:35" + }, + { + "frame": 12616, + "name": "ScannerSweep", + "time": "9:23" + }, + { + "frame": 13548, + "name": "CalldownMULE", + "time": "10:04" + } + ], + "name": "Oliveira", + "is_human": true, + "level": 4294967295, + "handicap": 100, + "region": "eu", + "is_winner": true, + "pick_race": "Terran", + "clock_position": null, + "commander": "", + "color": "B4141E", + "unitsLost": [ + { + "frame": 4973, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "3:42" + }, + { + "frame": 5496, + "killer": 2, + "name": "Reaper", + "clock_position": null, + "time": "4:05" + }, + { + "frame": 7867, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "5:51" + }, + { + "frame": 7886, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "5:52" + }, + { + "frame": 7917, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "5:53" + }, + { + "frame": 7937, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "5:54" + }, + { + "frame": 8514, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "6:20" + }, + { + "frame": 8569, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "6:22" + }, + { + "frame": 8633, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "6:25" + }, + { + "frame": 9382, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "6:58" + }, + { + "frame": 9405, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "6:59" + }, + { + "frame": 9407, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "6:59" + }, + { + "frame": 9447, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:01" + }, + { + "frame": 9452, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:01" + }, + { + "frame": 9485, + "killer": 2, + "name": "Medivac", + "clock_position": null, + "time": "7:03" + }, + { + "frame": 9496, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:03" + }, + { + "frame": 9501, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:04" + }, + { + "frame": 9520, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:05" + }, + { + "frame": 9521, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:05" + }, + { + "frame": 9532, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:05" + }, + { + "frame": 9548, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:06" + }, + { + "frame": 9575, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:07" + }, + { + "frame": 9604, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:08" + }, + { + "frame": 9625, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:09" + }, + { + "frame": 9636, + "killer": 2, + "name": "Medivac", + "clock_position": null, + "time": "7:10" + }, + { + "frame": 9643, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:10" + }, + { + "frame": 9661, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:11" + }, + { + "frame": 9824, + "killer": 2, + "name": "Marauder", + "clock_position": null, + "time": "7:18" + }, + { + "frame": 9825, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:18" + }, + { + "frame": 9873, + "killer": 2, + "name": "Marauder", + "clock_position": null, + "time": "7:20" + }, + { + "frame": 9878, + "killer": 2, + "name": "WidowMineBurrowed", + "clock_position": null, + "time": "7:20" + }, + { + "frame": 9888, + "killer": 2, + "name": "WidowMineBurrowed", + "clock_position": null, + "time": "7:21" + }, + { + "frame": 9917, + "killer": 2, + "name": "Marauder", + "clock_position": null, + "time": "7:22" + }, + { + "frame": 9919, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:22" + }, + { + "frame": 9926, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:23" + }, + { + "frame": 9932, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:23" + }, + { + "frame": 9943, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:23" + }, + { + "frame": 9944, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:23" + }, + { + "frame": 10104, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "7:31" + }, + { + "frame": 10293, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:39" + }, + { + "frame": 10421, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "7:45" + }, + { + "frame": 10719, + "killer": 2, + "name": "WidowMineBurrowed", + "clock_position": null, + "time": "7:58" + }, + { + "frame": 10886, + "killer": 2, + "name": "WidowMineBurrowed", + "clock_position": null, + "time": "8:05" + }, + { + "frame": 11064, + "killer": 2, + "name": "WidowMineBurrowed", + "clock_position": null, + "time": "8:13" + }, + { + "frame": 11769, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "8:45" + }, + { + "frame": 11781, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "8:45" + }, + { + "frame": 11793, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "8:46" + }, + { + "frame": 11794, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "8:46" + }, + { + "frame": 11795, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "8:46" + }, + { + "frame": 11803, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "8:46" + }, + { + "frame": 11809, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "8:47" + }, + { + "frame": 11817, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "8:47" + }, + { + "frame": 11818, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "8:47" + }, + { + "frame": 11818, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "8:47" + }, + { + "frame": 11863, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "8:49" + }, + { + "frame": 11866, + "killer": 2, + "name": "Viking", + "clock_position": null, + "time": "8:49" + }, + { + "frame": 11901, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "8:51" + }, + { + "frame": 11925, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "8:52" + }, + { + "frame": 11925, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "8:52" + }, + { + "frame": 11949, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "8:53" + }, + { + "frame": 11951, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "8:53" + }, + { + "frame": 11952, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "8:53" + }, + { + "frame": 11960, + "killer": 2, + "name": "Viking", + "clock_position": null, + "time": "8:53" + }, + { + "frame": 12110, + "killer": 2, + "name": "Marauder", + "clock_position": null, + "time": "9:00" + }, + { + "frame": 12679, + "killer": 2, + "name": "Cyclone", + "clock_position": null, + "time": "9:26" + }, + { + "frame": 12684, + "killer": 2, + "name": "Marauder", + "clock_position": null, + "time": "9:26" + }, + { + "frame": 12684, + "killer": 2, + "name": "Siege Tank", + "clock_position": null, + "time": "9:26" + }, + { + "frame": 12712, + "killer": 2, + "name": "Marauder", + "clock_position": null, + "time": "9:27" + }, + { + "frame": 12730, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "9:28" + }, + { + "frame": 12754, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "9:29" + }, + { + "frame": 12796, + "killer": 2, + "name": "Marauder", + "clock_position": null, + "time": "9:31" + }, + { + "frame": 12835, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "9:32" + }, + { + "frame": 12891, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "9:35" + }, + { + "frame": 12955, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "9:38" + }, + { + "frame": 12985, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "9:39" + }, + { + "frame": 13002, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "9:40" + }, + { + "frame": 13028, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "9:41" + }, + { + "frame": 13112, + "killer": 2, + "name": "WidowMineBurrowed", + "clock_position": null, + "time": "9:45" + }, + { + "frame": 13124, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "9:45" + }, + { + "frame": 13134, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "9:46" + }, + { + "frame": 13167, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "9:47" + }, + { + "frame": 13195, + "killer": 2, + "name": "Marauder", + "clock_position": null, + "time": "9:49" + }, + { + "frame": 13229, + "killer": 2, + "name": "Marauder", + "clock_position": null, + "time": "9:50" + }, + { + "frame": 13258, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "9:51" + }, + { + "frame": 13316, + "killer": 2, + "name": "Marauder", + "clock_position": null, + "time": "9:54" + }, + { + "frame": 13402, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "9:58" + } + ], + "race": "Terran", + "result": "Win", + "team": 1, + "uid": 10400125 + }, + "2": { + "supply": [ + [ + 0, + 12 + ], + [ + 1, + 12 + ], + [ + 160, + 13 + ], + [ + 320, + 14 + ], + [ + 480, + 14 + ], + [ + 640, + 15 + ], + [ + 800, + 15 + ], + [ + 960, + 16 + ], + [ + 1120, + 17 + ], + [ + 1280, + 18 + ], + [ + 1440, + 18 + ], + [ + 1600, + 19 + ], + [ + 1760, + 20 + ], + [ + 1920, + 20 + ], + [ + 2080, + 20 + ], + [ + 2240, + 20 + ], + [ + 2400, + 21 + ], + [ + 2560, + 21 + ], + [ + 2720, + 22 + ], + [ + 2880, + 24 + ], + [ + 3040, + 24 + ], + [ + 3200, + 27 + ], + [ + 3360, + 27 + ], + [ + 3520, + 28 + ], + [ + 3680, + 30 + ], + [ + 3840, + 32 + ], + [ + 4000, + 32 + ], + [ + 4160, + 34 + ], + [ + 4320, + 35 + ], + [ + 4480, + 38 + ], + [ + 4640, + 39 + ], + [ + 4800, + 41 + ], + [ + 4960, + 43 + ], + [ + 5120, + 45 + ], + [ + 5280, + 47 + ], + [ + 5440, + 49 + ], + [ + 5600, + 51 + ], + [ + 5760, + 52 + ], + [ + 5920, + 54 + ], + [ + 6080, + 54 + ], + [ + 6240, + 58 + ], + [ + 6400, + 59 + ], + [ + 6560, + 63 + ], + [ + 6720, + 67 + ], + [ + 6880, + 67 + ], + [ + 7040, + 69 + ], + [ + 7200, + 69 + ], + [ + 7360, + 69 + ], + [ + 7520, + 69 + ], + [ + 7680, + 75 + ], + [ + 7840, + 76 + ], + [ + 8000, + 76 + ], + [ + 8160, + 80 + ], + [ + 8320, + 82 + ], + [ + 8480, + 84 + ], + [ + 8640, + 90 + ], + [ + 8800, + 94 + ], + [ + 8960, + 94 + ], + [ + 9120, + 92 + ], + [ + 9280, + 96 + ], + [ + 9440, + 91 + ], + [ + 9600, + 78 + ], + [ + 9760, + 84 + ], + [ + 9920, + 74 + ], + [ + 10080, + 72 + ], + [ + 10240, + 72 + ], + [ + 10400, + 74 + ], + [ + 10560, + 80 + ], + [ + 10720, + 80 + ], + [ + 10880, + 84 + ], + [ + 11040, + 86 + ], + [ + 11200, + 86 + ], + [ + 11360, + 89 + ], + [ + 11520, + 99 + ], + [ + 11680, + 91 + ], + [ + 11840, + 79 + ], + [ + 12000, + 55 + ], + [ + 12160, + 63 + ], + [ + 12320, + 59 + ], + [ + 12480, + 61 + ], + [ + 12640, + 65 + ], + [ + 12800, + 67 + ], + [ + 12960, + 71 + ], + [ + 13120, + 69 + ], + [ + 13280, + 60 + ], + [ + 13440, + 58 + ], + [ + 13586, + 52 + ], + [ + 13586, + 52 + ] + ], + "league": 0, + "buildOrder": [ + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 12, + "frame": 9.200000000000045, + "is_chronoboosted": false, + "time": "0:00" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 13, + "frame": 280.20000000000005, + "is_chronoboosted": false, + "time": "0:12" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 14, + "frame": 446, + "is_chronoboosted": false, + "time": "0:19" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 14, + "frame": 551.2, + "is_chronoboosted": false, + "time": "0:24" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 15, + "frame": 854.2, + "is_chronoboosted": true, + "time": "0:38" + }, + { + "is_worker": false, + "name": "Gateway", + "clock_position": null, + "supply": 15, + "frame": 867, + "is_chronoboosted": false, + "time": "0:38" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 16, + "frame": 1048.2, + "is_chronoboosted": true, + "time": "0:46" + }, + { + "is_worker": false, + "name": "Assimilator", + "clock_position": null, + "supply": 16, + "frame": 1083, + "is_chronoboosted": false, + "time": "0:48" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 17, + "frame": 1173.2, + "is_chronoboosted": false, + "time": "0:52" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 18, + "frame": 1444.2, + "is_chronoboosted": false, + "time": "1:04" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 19, + "frame": 1715.2, + "is_chronoboosted": false, + "time": "1:16" + }, + { + "is_worker": false, + "name": "CyberneticsCore", + "clock_position": null, + "supply": 20, + "frame": 1924, + "is_chronoboosted": false, + "time": "1:25" + }, + { + "is_worker": false, + "name": "Nexus", + "clock_position": null, + "supply": 20, + "frame": 2168, + "is_chronoboosted": false, + "time": "1:36" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 20, + "frame": 2282, + "is_chronoboosted": false, + "time": "1:41" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 20, + "frame": 2358.2, + "is_chronoboosted": false, + "time": "1:45" + }, + { + "is_worker": false, + "name": "Assimilator", + "clock_position": null, + "supply": 21, + "frame": 2518, + "is_chronoboosted": false, + "time": "1:52" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 21, + "frame": 2629.2, + "is_chronoboosted": false, + "time": "1:57" + }, + { + "is_worker": false, + "name": "Adept", + "clock_position": null, + "supply": 21, + "frame": 2665.0, + "is_chronoboosted": true, + "time": "1:58" + }, + { + "is_worker": false, + "name": "ShieldBattery", + "clock_position": null, + "supply": 22, + "frame": 2876, + "is_chronoboosted": false, + "time": "2:08" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 24, + "frame": 2905.2, + "is_chronoboosted": false, + "time": "2:09" + }, + { + "is_worker": false, + "name": "Adept", + "clock_position": null, + "supply": 24, + "frame": 3116.0, + "is_chronoboosted": true, + "time": "2:19" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 24, + "frame": 3176.2, + "is_chronoboosted": false, + "time": "2:21" + }, + { + "is_worker": false, + "name": "Stargate", + "clock_position": null, + "supply": 27, + "frame": 3361, + "is_chronoboosted": false, + "time": "2:30" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 27, + "frame": 3458.2, + "is_chronoboosted": false, + "time": "2:34" + }, + { + "is_worker": false, + "name": "Warp Gate", + "clock_position": null, + "supply": 27, + "frame": 3508.0, + "is_chronoboosted": false, + "time": "2:36" + }, + { + "is_worker": false, + "name": "Adept", + "clock_position": null, + "supply": 28, + "frame": 3649.0, + "is_chronoboosted": false, + "time": "2:42" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 30, + "frame": 3730.2, + "is_chronoboosted": false, + "time": "2:46" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 30, + "frame": 3809.2, + "is_chronoboosted": false, + "time": "2:50" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 32, + "frame": 4097.2, + "is_chronoboosted": true, + "time": "3:02" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 34, + "frame": 4192.2, + "is_chronoboosted": true, + "time": "3:07" + }, + { + "is_worker": false, + "name": "Phoenix", + "clock_position": null, + "supply": 35, + "frame": 4349.0, + "is_chronoboosted": false, + "time": "3:14" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 35, + "frame": 4363.2, + "is_chronoboosted": true, + "time": "3:14" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 35, + "frame": 4459.2, + "is_chronoboosted": true, + "time": "3:19" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 35, + "frame": 4476.2, + "is_chronoboosted": true, + "time": "3:19" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 39, + "frame": 4653.2, + "is_chronoboosted": false, + "time": "3:27" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 39, + "frame": 4687.2, + "is_chronoboosted": false, + "time": "3:29" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 39, + "frame": 4759, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "Phoenix", + "clock_position": null, + "supply": 41, + "frame": 4908.0, + "is_chronoboosted": true, + "time": "3:39" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 43, + "frame": 4988.2, + "is_chronoboosted": false, + "time": "3:42" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 43, + "frame": 4991.2, + "is_chronoboosted": false, + "time": "3:42" + }, + { + "is_worker": false, + "name": "Assimilator", + "clock_position": null, + "supply": 43, + "frame": 5053, + "is_chronoboosted": false, + "time": "3:45" + }, + { + "is_worker": false, + "name": "Assimilator", + "clock_position": null, + "supply": 43, + "frame": 5073, + "is_chronoboosted": false, + "time": "3:46" + }, + { + "is_worker": false, + "name": "RoboticsFacility", + "clock_position": null, + "supply": 45, + "frame": 5181, + "is_chronoboosted": false, + "time": "3:51" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 45, + "frame": 5259.2, + "is_chronoboosted": false, + "time": "3:54" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 45, + "frame": 5262.2, + "is_chronoboosted": false, + "time": "3:54" + }, + { + "is_worker": false, + "name": "Phoenix", + "clock_position": null, + "supply": 47, + "frame": 5403.0, + "is_chronoboosted": true, + "time": "4:01" + }, + { + "is_worker": false, + "name": "Gateway", + "clock_position": null, + "supply": 49, + "frame": 5526, + "is_chronoboosted": false, + "time": "4:06" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 49, + "frame": 5549.2, + "is_chronoboosted": true, + "time": "4:07" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 51, + "frame": 5651.2, + "is_chronoboosted": true, + "time": "4:12" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 52, + "frame": 5761.2, + "is_chronoboosted": true, + "time": "4:17" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 52, + "frame": 5783, + "is_chronoboosted": false, + "time": "4:18" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 52, + "frame": 5840.2, + "is_chronoboosted": true, + "time": "4:20" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 52, + "frame": 5873.2, + "is_chronoboosted": true, + "time": "4:22" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 54, + "frame": 5980, + "is_chronoboosted": false, + "time": "4:26" + }, + { + "is_worker": false, + "name": "Phoenix", + "clock_position": null, + "supply": 54, + "frame": 6184.0, + "is_chronoboosted": false, + "time": "4:36" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 54, + "frame": 6187.2, + "is_chronoboosted": false, + "time": "4:36" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 54, + "frame": 6187.2, + "is_chronoboosted": false, + "time": "4:36" + }, + { + "is_worker": false, + "name": "Observer", + "clock_position": null, + "supply": 58, + "frame": 6251.6, + "is_chronoboosted": true, + "time": "4:39" + }, + { + "is_worker": false, + "name": "RoboticsBay", + "clock_position": null, + "supply": 59, + "frame": 6402, + "is_chronoboosted": false, + "time": "4:45" + }, + { + "is_worker": false, + "name": "Forge", + "clock_position": null, + "supply": 59, + "frame": 6455, + "is_chronoboosted": false, + "time": "4:48" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 59, + "frame": 6466.2, + "is_chronoboosted": false, + "time": "4:48" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 59, + "frame": 6471.2, + "is_chronoboosted": false, + "time": "4:48" + }, + { + "is_worker": false, + "name": "Sentry", + "clock_position": null, + "supply": 59, + "frame": 6548, + "is_chronoboosted": false, + "time": "4:52" + }, + { + "is_worker": false, + "name": "Immortal", + "clock_position": null, + "supply": 63, + "frame": 6663.4, + "is_chronoboosted": true, + "time": "4:57" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 67, + "frame": 6905, + "is_chronoboosted": false, + "time": "5:08" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 67, + "frame": 6924, + "is_chronoboosted": false, + "time": "5:09" + }, + { + "is_worker": false, + "name": "Sentry", + "clock_position": null, + "supply": 67, + "frame": 6934, + "is_chronoboosted": false, + "time": "5:09" + }, + { + "is_worker": false, + "name": "Gateway", + "clock_position": null, + "supply": 69, + "frame": 7156, + "is_chronoboosted": false, + "time": "5:19" + }, + { + "is_worker": false, + "name": "Protoss Ground Weapons Level 1", + "clock_position": null, + "supply": 69, + "frame": 7169.200000000001, + "is_chronoboosted": false, + "time": "5:20" + }, + { + "is_worker": false, + "name": "Nexus", + "clock_position": null, + "supply": 69, + "frame": 7439, + "is_chronoboosted": false, + "time": "5:32" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 69, + "frame": 7516.4, + "is_chronoboosted": true, + "time": "5:35" + }, + { + "is_worker": false, + "name": "Extended Thermal Lance", + "clock_position": null, + "supply": 75, + "frame": 7693.0, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 75, + "frame": 7775.2, + "is_chronoboosted": false, + "time": "5:47" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 75, + "frame": 7778.2, + "is_chronoboosted": false, + "time": "5:47" + }, + { + "is_worker": false, + "name": "ShieldBattery", + "clock_position": null, + "supply": 76, + "frame": 8004, + "is_chronoboosted": false, + "time": "5:57" + }, + { + "is_worker": false, + "name": "ShieldBattery", + "clock_position": null, + "supply": 76, + "frame": 8043, + "is_chronoboosted": false, + "time": "5:59" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 76, + "frame": 8057.2, + "is_chronoboosted": false, + "time": "5:59" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 76, + "frame": 8060.2, + "is_chronoboosted": false, + "time": "5:59" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 76, + "frame": 8127, + "is_chronoboosted": false, + "time": "6:02" + }, + { + "is_worker": false, + "name": "Sentry", + "clock_position": null, + "supply": 76, + "frame": 8146, + "is_chronoboosted": false, + "time": "6:03" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 80, + "frame": 8163, + "is_chronoboosted": false, + "time": "6:04" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 82, + "frame": 8440.4, + "is_chronoboosted": true, + "time": "6:16" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 82, + "frame": 8479.2, + "is_chronoboosted": false, + "time": "6:18" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 84, + "frame": 8482.2, + "is_chronoboosted": false, + "time": "6:18" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 90, + "frame": 8697, + "is_chronoboosted": false, + "time": "6:28" + }, + { + "is_worker": false, + "name": "TwilightCouncil", + "clock_position": null, + "supply": 90, + "frame": 8719, + "is_chronoboosted": false, + "time": "6:29" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 90, + "frame": 8758.2, + "is_chronoboosted": false, + "time": "6:30" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 90, + "frame": 8761.2, + "is_chronoboosted": false, + "time": "6:31" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 94, + "frame": 8922, + "is_chronoboosted": false, + "time": "6:38" + }, + { + "is_worker": false, + "name": "Gateway", + "clock_position": null, + "supply": 94, + "frame": 9048, + "is_chronoboosted": false, + "time": "6:43" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 92, + "frame": 9171, + "is_chronoboosted": false, + "time": "6:49" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 92, + "frame": 9187, + "is_chronoboosted": false, + "time": "6:50" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 92, + "frame": 9256.2, + "is_chronoboosted": false, + "time": "6:53" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 92, + "frame": 9260.2, + "is_chronoboosted": false, + "time": "6:53" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 96, + "frame": 9406, + "is_chronoboosted": false, + "time": "6:59" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 78, + "frame": 9686, + "is_chronoboosted": false, + "time": "7:12" + }, + { + "is_worker": false, + "name": "Warp Prism", + "clock_position": null, + "supply": 84, + "frame": 9761.6, + "is_chronoboosted": true, + "time": "7:15" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 74, + "frame": 9992, + "is_chronoboosted": false, + "time": "7:26" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 74, + "frame": 9994, + "is_chronoboosted": false, + "time": "7:26" + }, + { + "is_worker": false, + "name": "Gateway", + "clock_position": null, + "supply": 72, + "frame": 10138, + "is_chronoboosted": false, + "time": "7:32" + }, + { + "is_worker": false, + "name": "Gateway", + "clock_position": null, + "supply": 72, + "frame": 10194, + "is_chronoboosted": false, + "time": "7:35" + }, + { + "is_worker": false, + "name": "Sentry", + "clock_position": null, + "supply": 72, + "frame": 10357, + "is_chronoboosted": false, + "time": "7:42" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 74, + "frame": 10402.4, + "is_chronoboosted": true, + "time": "7:44" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 80, + "frame": 10825, + "is_chronoboosted": false, + "time": "8:03" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 80, + "frame": 10828, + "is_chronoboosted": false, + "time": "8:03" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 80, + "frame": 10829, + "is_chronoboosted": false, + "time": "8:03" + }, + { + "is_worker": false, + "name": "Sentry", + "clock_position": null, + "supply": 84, + "frame": 10906, + "is_chronoboosted": false, + "time": "8:06" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 86, + "frame": 11084.2, + "is_chronoboosted": false, + "time": "8:14" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 86, + "frame": 11087.2, + "is_chronoboosted": false, + "time": "8:14" + }, + { + "is_worker": false, + "name": "Disruptor", + "clock_position": null, + "supply": 86, + "frame": 11245.6, + "is_chronoboosted": true, + "time": "8:22" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 89, + "frame": 11405, + "is_chronoboosted": false, + "time": "8:29" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 89, + "frame": 11405, + "is_chronoboosted": false, + "time": "8:29" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 89, + "frame": 11406, + "is_chronoboosted": false, + "time": "8:29" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 89, + "frame": 11408, + "is_chronoboosted": false, + "time": "8:29" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 89, + "frame": 11448, + "is_chronoboosted": false, + "time": "8:31" + }, + { + "is_worker": false, + "name": "Pylon", + "clock_position": null, + "supply": 89, + "frame": 11454, + "is_chronoboosted": false, + "time": "8:31" + }, + { + "is_worker": false, + "name": "Colossus", + "clock_position": null, + "supply": 79, + "frame": 11972.4, + "is_chronoboosted": true, + "time": "8:54" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 63, + "frame": 12210, + "is_chronoboosted": false, + "time": "9:05" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 63, + "frame": 12213, + "is_chronoboosted": false, + "time": "9:05" + }, + { + "is_worker": false, + "name": "Nexus", + "clock_position": null, + "supply": 59, + "frame": 12332, + "is_chronoboosted": false, + "time": "9:10" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 59, + "frame": 12403, + "is_chronoboosted": false, + "time": "9:13" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 61, + "frame": 12568, + "is_chronoboosted": false, + "time": "9:21" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 61, + "frame": 12571, + "is_chronoboosted": false, + "time": "9:21" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 65, + "frame": 12725, + "is_chronoboosted": false, + "time": "9:28" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 65, + "frame": 12728, + "is_chronoboosted": false, + "time": "9:28" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 67, + "frame": 12881.2, + "is_chronoboosted": false, + "time": "9:35" + }, + { + "is_worker": true, + "name": "Probe", + "clock_position": null, + "supply": 67, + "frame": 12885.2, + "is_chronoboosted": false, + "time": "9:35" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 67, + "frame": 12898, + "is_chronoboosted": false, + "time": "9:35" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 69, + "frame": 13222, + "is_chronoboosted": false, + "time": "9:50" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 69, + "frame": 13239, + "is_chronoboosted": false, + "time": "9:51" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 69, + "frame": 13242, + "is_chronoboosted": false, + "time": "9:51" + }, + { + "is_worker": false, + "name": "Zealot", + "clock_position": null, + "supply": 69, + "frame": 13243, + "is_chronoboosted": false, + "time": "9:51" + }, + { + "is_worker": false, + "name": "Stalker", + "clock_position": null, + "supply": 60, + "frame": 13383, + "is_chronoboosted": false, + "time": "9:57" + } + ], + "abilities": [ + { + "frame": 837, + "name": "ChronoBoostEnergyCost", + "time": "0:37" + }, + { + "frame": 2737, + "name": "ChronoBoostEnergyCost", + "time": "2:02" + }, + { + "frame": 3186, + "name": "AdeptPhaseShift", + "time": "2:22" + }, + { + "frame": 3196, + "name": "ChronoBoostEnergyCost", + "time": "2:22" + }, + { + "frame": 3451, + "name": "AdeptPhaseShift", + "time": "2:34" + }, + { + "frame": 3846, + "name": "AdeptPhaseShift", + "time": "2:51" + }, + { + "frame": 3875, + "name": "AdeptPhaseShift", + "time": "2:52" + }, + { + "frame": 4218, + "name": "ChronoBoostEnergyCost", + "time": "3:08" + }, + { + "frame": 4283, + "name": "AdeptPhaseShift", + "time": "3:11" + }, + { + "frame": 4421, + "name": "AdeptPhaseShift", + "time": "3:17" + }, + { + "frame": 4568, + "name": "AdeptPhaseShift", + "time": "3:23" + }, + { + "frame": 4719, + "name": "AdeptPhaseShift", + "time": "3:30" + }, + { + "frame": 5001, + "name": "AdeptPhaseShift", + "time": "3:43" + }, + { + "frame": 5315, + "name": "ChronoBoostEnergyCost", + "time": "3:57" + }, + { + "frame": 5348, + "name": "GravitonBeam", + "time": "3:58" + }, + { + "frame": 5559, + "name": "ChronoBoostEnergyCost", + "time": "4:08" + }, + { + "frame": 6626, + "name": "ChronoBoostEnergyCost", + "time": "4:55" + }, + { + "frame": 7555, + "name": "ChronoBoostEnergyCost", + "time": "5:37" + }, + { + "frame": 7844, + "name": "GravitonBeam", + "time": "5:50" + }, + { + "frame": 7867, + "name": "GravitonBeam", + "time": "5:51" + }, + { + "frame": 7893, + "name": "GravitonBeam", + "time": "5:52" + }, + { + "frame": 7909, + "name": "GravitonBeam", + "time": "5:53" + }, + { + "frame": 8136, + "name": "ChronoBoostEnergyCost", + "time": "6:03" + }, + { + "frame": 8493, + "name": "GravitonBeam", + "time": "6:19" + }, + { + "frame": 8548, + "name": "GravitonBeam", + "time": "6:21" + }, + { + "frame": 8610, + "name": "GravitonBeam", + "time": "6:24" + }, + { + "frame": 8725, + "name": "ChronoBoostEnergyCost", + "time": "6:29" + }, + { + "frame": 9040, + "name": "NexusMassRecall", + "time": "6:43" + }, + { + "frame": 9334, + "name": "GravitonBeam", + "time": "6:56" + }, + { + "frame": 9423, + "name": "GravitonBeam", + "time": "7:00" + }, + { + "frame": 9793, + "name": "ChronoBoostEnergyCost", + "time": "7:17" + }, + { + "frame": 9826, + "name": "GuardianShield", + "time": "7:18" + }, + { + "frame": 9833, + "name": "ForceField", + "time": "7:18" + }, + { + "frame": 10572, + "name": "ChronoBoostEnergyCost", + "time": "7:51" + }, + { + "frame": 10931, + "name": "ChronoBoostEnergyCost", + "time": "8:07" + }, + { + "frame": 11576, + "name": "GuardianShield", + "time": "8:36" + }, + { + "frame": 11605, + "name": "ForceField", + "time": "8:38" + }, + { + "frame": 11984, + "name": "ChronoBoostEnergyCost", + "time": "8:55" + }, + { + "frame": 12857, + "name": "ChronoBoostEnergyCost", + "time": "9:33" + } + ], + "name": "herO", + "is_human": true, + "level": 4294967295, + "handicap": 100, + "region": "eu", + "is_winner": false, + "pick_race": "Protoss", + "clock_position": null, + "commander": "", + "color": "0042FF", + "unitsLost": [ + { + "frame": 2921, + "killer": 1, + "name": "Probe", + "clock_position": null, + "time": "2:10" + }, + { + "frame": 7788, + "killer": 1, + "name": "Observer", + "clock_position": null, + "time": "5:47" + }, + { + "frame": 9034, + "killer": 1, + "name": "Adept", + "clock_position": null, + "time": "6:43" + }, + { + "frame": 9222, + "killer": 1, + "name": "Phoenix", + "clock_position": null, + "time": "6:51" + }, + { + "frame": 9294, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "6:54" + }, + { + "frame": 9303, + "killer": 1, + "name": "Probe", + "clock_position": null, + "time": "6:55" + }, + { + "frame": 9318, + "killer": 1, + "name": "Probe", + "clock_position": null, + "time": "6:55" + }, + { + "frame": 9363, + "killer": 1, + "name": "Probe", + "clock_position": null, + "time": "6:57" + }, + { + "frame": 9394, + "killer": 1, + "name": "ShieldBattery", + "clock_position": null, + "time": "6:59" + }, + { + "frame": 9424, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "7:00" + }, + { + "frame": 9446, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "7:01" + }, + { + "frame": 9458, + "killer": 1, + "name": "Probe", + "clock_position": null, + "time": "7:02" + }, + { + "frame": 9467, + "killer": 1, + "name": "Probe", + "clock_position": null, + "time": "7:02" + }, + { + "frame": 9488, + "killer": 1, + "name": "Probe", + "clock_position": null, + "time": "7:03" + }, + { + "frame": 9491, + "killer": 1, + "name": "Probe", + "clock_position": null, + "time": "7:03" + }, + { + "frame": 9491, + "killer": 1, + "name": "Probe", + "clock_position": null, + "time": "7:03" + }, + { + "frame": 9494, + "killer": 1, + "name": "Probe", + "clock_position": null, + "time": "7:03" + }, + { + "frame": 9497, + "killer": 1, + "name": "Probe", + "clock_position": null, + "time": "7:03" + }, + { + "frame": 9505, + "killer": 1, + "name": "Probe", + "clock_position": null, + "time": "7:04" + }, + { + "frame": 9516, + "killer": 1, + "name": "Probe", + "clock_position": null, + "time": "7:04" + }, + { + "frame": 9558, + "killer": 1, + "name": "Phoenix", + "clock_position": null, + "time": "7:06" + }, + { + "frame": 9621, + "killer": 1, + "name": "Phoenix", + "clock_position": null, + "time": "7:09" + }, + { + "frame": 9647, + "killer": 1, + "name": "ShieldBattery", + "clock_position": null, + "time": "7:10" + }, + { + "frame": 9854, + "killer": 1, + "name": "Sentry", + "clock_position": null, + "time": "7:19" + }, + { + "frame": 9854, + "killer": 1, + "name": "Sentry", + "clock_position": null, + "time": "7:19" + }, + { + "frame": 9854, + "killer": 1, + "name": "Sentry", + "clock_position": null, + "time": "7:19" + }, + { + "frame": 9868, + "killer": 1, + "name": "Nexus", + "clock_position": null, + "time": "7:20" + }, + { + "frame": 9955, + "killer": 1, + "name": "Colossus", + "clock_position": null, + "time": "7:24" + }, + { + "frame": 10790, + "killer": 1, + "name": "Phoenix", + "clock_position": null, + "time": "8:01" + }, + { + "frame": 11061, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "8:13" + }, + { + "frame": 11592, + "killer": 1, + "name": "Adept", + "clock_position": null, + "time": "8:37" + }, + { + "frame": 11646, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "8:39" + }, + { + "frame": 11650, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "8:40" + }, + { + "frame": 11661, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "8:40" + }, + { + "frame": 11714, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "8:42" + }, + { + "frame": 11772, + "killer": 1, + "name": "Warp Prism", + "clock_position": null, + "time": "8:45" + }, + { + "frame": 11788, + "killer": 1, + "name": "Adept", + "clock_position": null, + "time": "8:46" + }, + { + "frame": 11808, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "8:47" + }, + { + "frame": 11815, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "8:47" + }, + { + "frame": 11823, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "8:47" + }, + { + "frame": 11845, + "killer": 1, + "name": "Sentry", + "clock_position": null, + "time": "8:48" + }, + { + "frame": 11862, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "8:49" + }, + { + "frame": 11878, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "8:50" + }, + { + "frame": 11901, + "killer": 1, + "name": "Sentry", + "clock_position": null, + "time": "8:51" + }, + { + "frame": 11906, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "8:51" + }, + { + "frame": 11929, + "killer": 1, + "name": "Immortal", + "clock_position": null, + "time": "8:52" + }, + { + "frame": 11951, + "killer": 1, + "name": "Colossus", + "clock_position": null, + "time": "8:53" + }, + { + "frame": 11963, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "8:54" + }, + { + "frame": 11973, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "8:54" + }, + { + "frame": 12181, + "killer": 1, + "name": "Colossus", + "clock_position": null, + "time": "9:03" + }, + { + "frame": 12795, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "9:31" + }, + { + "frame": 12985, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "9:39" + }, + { + "frame": 13005, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "9:40" + }, + { + "frame": 13018, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "9:41" + }, + { + "frame": 13097, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "9:44" + }, + { + "frame": 13204, + "killer": 1, + "name": "Disruptor", + "clock_position": null, + "time": "9:49" + }, + { + "frame": 13253, + "killer": 1, + "name": "Colossus", + "clock_position": null, + "time": "9:51" + }, + { + "frame": 13258, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "9:51" + }, + { + "frame": 13304, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "9:53" + }, + { + "frame": 13325, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "9:54" + }, + { + "frame": 13472, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "10:01" + }, + { + "frame": 13497, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "10:02" + }, + { + "frame": 13515, + "killer": 1, + "name": "Zealot", + "clock_position": null, + "time": "10:03" + }, + { + "frame": 13591, + "killer": 1, + "name": "Probe", + "clock_position": null, + "time": "10:06" + }, + { + "frame": 13627, + "killer": 1, + "name": "Stalker", + "clock_position": null, + "time": "10:08" + }, + { + "frame": 13661, + "killer": 1, + "name": "ShieldBattery", + "clock_position": null, + "time": "10:09" + } + ], + "race": "Protoss", + "result": "Loss", + "team": 2, + "uid": 10400366 + } + }, + "buildOrderExtracted": true, + "build": 89720, + "frames_per_second": 22.4, + "unix_timestamp": 1676225347 +} \ No newline at end of file diff --git a/tests/tlo_v_thorzain.json b/tests/tlo_v_thorzain.json index a75a6c1..19400ed 100644 --- a/tests/tlo_v_thorzain.json +++ b/tests/tlo_v_thorzain.json @@ -1,10580 +1,10580 @@ { - "include_map_details": false, - "frames_per_second": 16, - "map": "Whirlwind LE", - "message": "", - "region": "eu", - "cooperative": false, - "category": "Ladder", - "build": 25604, - "map_hash": "46bc6a35e1d11fde0e97985ea6c2094bf4a551cc3415e03930761f574ec70182", - "baseBuild": 24944, - "game_type": "1v1", - "unix_timestamp": 1369154657, - "expansion": "HotS", + "map": "Whirlwind LE", + "baseBuild": 24944, + "expansion": "HotS", + "cooperative": false, + "frames": 20675, + "message": "", + "category": "Ladder", + "map_hash": "46bc6a35e1d11fde0e97985ea6c2094bf4a551cc3415e03930761f574ec70182", + "include_map_details": false, + "region": "eu", + "game_type": "1v1", "players": { "1": { - "is_human": true, - "league": 7, - "unitsLost": [ - { - "name": "Hellion", - "frame": 7698, - "clock_position": null, - "time": "8:01", - "killer": 2 - }, - { - "name": "Medivac", - "frame": 7719, - "clock_position": null, - "time": "8:02", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 7719, - "clock_position": null, - "time": "8:02", - "killer": 2 - }, - { - "name": "Hellion", - "frame": 7737, - "clock_position": null, - "time": "8:03", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 7813, - "clock_position": null, - "time": "8:08", - "killer": 2 - }, - { - "name": "Medivac", - "frame": 10476, - "clock_position": null, - "time": "10:54", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 10476, - "clock_position": null, - "time": "10:54", - "killer": 2 - }, - { - "name": "SiegeTankSieged", - "frame": 10725, - "clock_position": null, - "time": "11:10", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 10735, - "clock_position": null, - "time": "11:10", - "killer": 2 - }, - { - "name": "SiegeTankSieged", - "frame": 10748, - "clock_position": null, - "time": "11:11", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 10776, - "clock_position": null, - "time": "11:13", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 10805, - "clock_position": null, - "time": "11:15", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 10826, - "clock_position": null, - "time": "11:16", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 10873, - "clock_position": null, - "time": "11:19", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 10889, - "clock_position": null, - "time": "11:20", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 10911, - "clock_position": null, - "time": "11:21", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 11469, - "clock_position": null, - "time": "11:56", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 11471, - "clock_position": null, - "time": "11:56", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 11505, - "clock_position": null, - "time": "11:59", - "killer": 2 - }, - { - "name": "SiegeTankSieged", - "frame": 11940, - "clock_position": null, - "time": "12:26", - "killer": 1 - }, - { - "name": "Marine", - "frame": 13114, - "clock_position": null, - "time": "13:39", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 13138, - "clock_position": null, - "time": "13:41", - "killer": 2 - }, - { - "name": "SiegeTank", - "frame": 13143, - "clock_position": null, - "time": "13:41", - "killer": 2 - }, - { - "name": "Marine", - "frame": 13159, - "clock_position": null, - "time": "13:42", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 13191, - "clock_position": null, - "time": "13:44", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 13251, - "clock_position": null, - "time": "13:48", - "killer": 2 - }, - { - "name": "Marine", - "frame": 13269, - "clock_position": null, - "time": "13:49", - "killer": 2 - }, - { - "name": "Marine", - "frame": 13275, - "clock_position": null, - "time": "13:49", - "killer": 2 - }, - { - "name": "Viking", - "frame": 13438, - "clock_position": null, - "time": "13:59", - "killer": 2 - }, - { - "name": "SCV", - "frame": 14715, - "clock_position": null, - "time": "15:19", - "killer": 2 - }, - { - "name": "SCV", - "frame": 14720, - "clock_position": null, - "time": "15:20", - "killer": 2 - }, - { - "name": "SCV", - "frame": 14746, - "clock_position": null, - "time": "15:21", - "killer": 2 - }, - { - "name": "SCV", - "frame": 14751, - "clock_position": null, - "time": "15:21", - "killer": 2 - }, - { - "name": "SCV", - "frame": 14757, - "clock_position": null, - "time": "15:22", - "killer": 2 - }, - { - "name": "Refinery", - "frame": 14872, - "clock_position": null, - "time": "15:29", - "killer": 1 - }, - { - "name": "Refinery", - "frame": 15028, - "clock_position": null, - "time": "15:39", - "killer": 2 - }, - { - "name": "Medivac", - "frame": 15463, - "clock_position": null, - "time": "16:06", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 15463, - "clock_position": null, - "time": "16:06", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 15463, - "clock_position": null, - "time": "16:06", - "killer": 2 - }, - { - "name": "SCV", - "frame": 15562, - "clock_position": null, - "time": "16:12", - "killer": 2 - }, - { - "name": "SCV", - "frame": 15581, - "clock_position": null, - "time": "16:13", - "killer": 2 - }, - { - "name": "SCV", - "frame": 15583, - "clock_position": null, - "time": "16:13", - "killer": 2 - }, - { - "name": "SCV", - "frame": 15586, - "clock_position": null, - "time": "16:14", - "killer": 2 - }, - { - "name": "SCV", - "frame": 15589, - "clock_position": null, - "time": "16:14", - "killer": 2 - }, - { - "name": "SCV", - "frame": 15607, - "clock_position": null, - "time": "16:15", - "killer": 2 - }, - { - "name": "SCV", - "frame": 15620, - "clock_position": null, - "time": "16:16", - "killer": 2 - }, - { - "name": "SCV", - "frame": 15622, - "clock_position": null, - "time": "16:16", - "killer": 2 - }, - { - "name": "SCV", - "frame": 15625, - "clock_position": null, - "time": "16:16", - "killer": 2 - }, - { - "name": "SCV", - "frame": 15634, - "clock_position": null, - "time": "16:17", - "killer": 2 - }, - { - "name": "Refinery", - "frame": 15766, - "clock_position": null, - "time": "16:25", - "killer": 2 - }, - { - "name": "SCV", - "frame": 15921, - "clock_position": null, - "time": "16:35", - "killer": 2 - }, - { - "name": "SCV", - "frame": 16076, - "clock_position": null, - "time": "16:44", - "killer": 2 - }, - { - "name": "SCV", - "frame": 16102, - "clock_position": null, - "time": "16:46", - "killer": 2 - }, - { - "name": "SCV", - "frame": 16116, - "clock_position": null, - "time": "16:47", - "killer": 2 - }, - { - "name": "SCV", - "frame": 16225, - "clock_position": null, - "time": "16:54", - "killer": 2 - }, - { - "name": "Medivac", - "frame": 16969, - "clock_position": null, - "time": "17:40", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 17614, - "clock_position": null, - "time": "18:20", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 17706, - "clock_position": null, - "time": "18:26", - "killer": 2 - }, - { - "name": "SiegeTank", - "frame": 18868, - "clock_position": null, - "time": "19:39", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 19003, - "clock_position": null, - "time": "19:47", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 19037, - "clock_position": null, - "time": "19:49", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 19076, - "clock_position": null, - "time": "19:52", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 19096, - "clock_position": null, - "time": "19:53", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 19187, - "clock_position": null, - "time": "19:59", - "killer": 2 - }, - { - "name": "Thor", - "frame": 19221, - "clock_position": null, - "time": "20:01", - "killer": 2 - }, - { - "name": "SiegeTank", - "frame": 19224, - "clock_position": null, - "time": "20:01", - "killer": 2 - }, - { - "name": "Viking", - "frame": 19225, - "clock_position": null, - "time": "20:01", - "killer": 2 - }, - { - "name": "Medivac", - "frame": 19232, - "clock_position": null, - "time": "20:02", - "killer": 2 - }, - { - "name": "Thor", - "frame": 19250, - "clock_position": null, - "time": "20:03", - "killer": 2 - }, - { - "name": "Thor", - "frame": 19259, - "clock_position": null, - "time": "20:03", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 19259, - "clock_position": null, - "time": "20:03", - "killer": 2 - }, - { - "name": "Thor", - "frame": 19281, - "clock_position": null, - "time": "20:05", - "killer": 2 - }, - { - "name": "Thor", - "frame": 19305, - "clock_position": null, - "time": "20:06", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 19313, - "clock_position": null, - "time": "20:07", - "killer": 2 - }, - { - "name": "Viking", - "frame": 19319, - "clock_position": null, - "time": "20:07", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 19334, - "clock_position": null, - "time": "20:08", - "killer": 2 - }, - { - "name": "SiegeTank", - "frame": 19363, - "clock_position": null, - "time": "20:10", - "killer": 2 - }, - { - "name": "Viking", - "frame": 19400, - "clock_position": null, - "time": "20:12", - "killer": 2 - }, - { - "name": "Thor", - "frame": 19440, - "clock_position": null, - "time": "20:15", - "killer": 2 - }, - { - "name": "Bunker", - "frame": 19469, - "clock_position": null, - "time": "20:16", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19488, - "clock_position": null, - "time": "20:18", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19494, - "clock_position": null, - "time": "20:18", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19504, - "clock_position": null, - "time": "20:19", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19524, - "clock_position": null, - "time": "20:20", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19527, - "clock_position": null, - "time": "20:20", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19538, - "clock_position": null, - "time": "20:21", - "killer": 2 - }, - { - "name": "SupplyDepotLowered", - "frame": 19540, - "clock_position": null, - "time": "20:21", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19543, - "clock_position": null, - "time": "20:21", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19543, - "clock_position": null, - "time": "20:21", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19544, - "clock_position": null, - "time": "20:21", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19548, - "clock_position": null, - "time": "20:21", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19554, - "clock_position": null, - "time": "20:22", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19565, - "clock_position": null, - "time": "20:22", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19568, - "clock_position": null, - "time": "20:23", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19577, - "clock_position": null, - "time": "20:23", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19577, - "clock_position": null, - "time": "20:23", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19583, - "clock_position": null, - "time": "20:23", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19584, - "clock_position": null, - "time": "20:24", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19584, - "clock_position": null, - "time": "20:24", - "killer": 2 - }, - { - "name": "Medivac", - "frame": 19587, - "clock_position": null, - "time": "20:24", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19591, - "clock_position": null, - "time": "20:24", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19601, - "clock_position": null, - "time": "20:25", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19610, - "clock_position": null, - "time": "20:25", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19617, - "clock_position": null, - "time": "20:26", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19622, - "clock_position": null, - "time": "20:26", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19626, - "clock_position": null, - "time": "20:26", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19634, - "clock_position": null, - "time": "20:27", - "killer": 2 - }, - { - "name": "SupplyDepotLowered", - "frame": 19640, - "clock_position": null, - "time": "20:27", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 19644, - "clock_position": null, - "time": "20:27", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19651, - "clock_position": null, - "time": "20:28", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19652, - "clock_position": null, - "time": "20:28", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19664, - "clock_position": null, - "time": "20:29", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19664, - "clock_position": null, - "time": "20:29", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19676, - "clock_position": null, - "time": "20:29", - "killer": 2 - }, - { - "name": "Refinery", - "frame": 19684, - "clock_position": null, - "time": "20:30", - "killer": 2 - }, - { - "name": "SupplyDepotLowered", - "frame": 19694, - "clock_position": null, - "time": "20:30", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19698, - "clock_position": null, - "time": "20:31", - "killer": 2 - }, - { - "name": "SiegeTank", - "frame": 19701, - "clock_position": null, - "time": "20:31", - "killer": 2 - }, - { - "name": "Medivac", - "frame": 19780, - "clock_position": null, - "time": "20:36", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19806, - "clock_position": null, - "time": "20:37", - "killer": 2 - }, - { - "name": "SupplyDepotLowered", - "frame": 19807, - "clock_position": null, - "time": "20:37", - "killer": 2 - }, - { - "name": "Refinery", - "frame": 19811, - "clock_position": null, - "time": "20:38", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 19822, - "clock_position": null, - "time": "20:38", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19833, - "clock_position": null, - "time": "20:39", - "killer": 2 - }, - { - "name": "BarracksTechLab", - "frame": 19845, - "clock_position": null, - "time": "20:40", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19845, - "clock_position": null, - "time": "20:40", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19882, - "clock_position": null, - "time": "20:42", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19898, - "clock_position": null, - "time": "20:43", - "killer": 2 - }, - { - "name": "FactoryReactor", - "frame": 19909, - "clock_position": null, - "time": "20:44", - "killer": 2 - }, - { - "name": "Refinery", - "frame": 19918, - "clock_position": null, - "time": "20:44", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19925, - "clock_position": null, - "time": "20:45", - "killer": 2 - }, - { - "name": "SupplyDepotLowered", - "frame": 19926, - "clock_position": null, - "time": "20:45", - "killer": 2 - }, - { - "name": "SupplyDepotLowered", - "frame": 19928, - "clock_position": null, - "time": "20:45", - "killer": 2 - }, - { - "name": "BarracksTechLab", - "frame": 19935, - "clock_position": null, - "time": "20:45", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19937, - "clock_position": null, - "time": "20:46", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19940, - "clock_position": null, - "time": "20:46", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19967, - "clock_position": null, - "time": "20:47", - "killer": 2 - }, - { - "name": "SCV", - "frame": 19991, - "clock_position": null, - "time": "20:49", - "killer": 2 - }, - { - "name": "SCV", - "frame": 20013, - "clock_position": null, - "time": "20:50", - "killer": 2 - }, - { - "name": "SCV", - "frame": 20021, - "clock_position": null, - "time": "20:51", - "killer": 2 - }, - { - "name": "Medivac", - "frame": 20037, - "clock_position": null, - "time": "20:52", - "killer": 2 - }, - { - "name": "SCV", - "frame": 20042, - "clock_position": null, - "time": "20:52", - "killer": 2 - }, - { - "name": "SCV", - "frame": 20044, - "clock_position": null, - "time": "20:52", - "killer": 2 - }, - { - "name": "SupplyDepotLowered", - "frame": 20048, - "clock_position": null, - "time": "20:53", - "killer": 2 - }, - { - "name": "Factory", - "frame": 20073, - "clock_position": null, - "time": "20:54", - "killer": 2 - }, - { - "name": "SupplyDepot", - "frame": 20075, - "clock_position": null, - "time": "20:54", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 20118, - "clock_position": null, - "time": "20:57", - "killer": 2 - }, - { - "name": "SCV", - "frame": 20119, - "clock_position": null, - "time": "20:57", - "killer": 2 - }, - { - "name": "SupplyDepotLowered", - "frame": 20148, - "clock_position": null, - "time": "20:59", - "killer": 1 - }, - { - "name": "SupplyDepotLowered", - "frame": 20152, - "clock_position": null, - "time": "20:59", - "killer": 2 - }, - { - "name": "VikingAssault", - "frame": 20174, - "clock_position": null, - "time": "21:00", - "killer": 2 - }, - { - "name": "SupplyDepotLowered", - "frame": 20198, - "clock_position": null, - "time": "21:02", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 20241, - "clock_position": null, - "time": "21:05", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 20251, - "clock_position": null, - "time": "21:05", - "killer": 2 - }, - { - "name": "SCV", - "frame": 20255, - "clock_position": null, - "time": "21:05", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 20259, - "clock_position": null, - "time": "21:06", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 20266, - "clock_position": null, - "time": "21:06", - "killer": 2 - }, - { - "name": "SCV", - "frame": 20269, - "clock_position": null, - "time": "21:06", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 20272, - "clock_position": null, - "time": "21:07", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 20278, - "clock_position": null, - "time": "21:07", - "killer": 2 - }, - { - "name": "SupplyDepotLowered", - "frame": 20326, - "clock_position": null, - "time": "21:10", - "killer": 2 - }, - { - "name": "Hellbat", - "frame": 20340, - "clock_position": null, - "time": "21:11", - "killer": 2 - }, - { - "name": "VikingAssault", - "frame": 20416, - "clock_position": null, - "time": "21:16", - "killer": 2 - }, - { - "name": "Starport", - "frame": 20420, - "clock_position": null, - "time": "21:16", - "killer": 2 - }, - { - "name": "VikingAssault", - "frame": 20432, - "clock_position": null, - "time": "21:17", - "killer": 2 - }, - { - "name": "Viking", - "frame": 20443, - "clock_position": null, - "time": "21:17", - "killer": 2 - }, - { - "name": "Barracks", - "frame": 20454, - "clock_position": null, - "time": "21:18", - "killer": 2 - }, - { - "name": "Factory", - "frame": 20547, - "clock_position": null, - "time": "21:24", - "killer": 2 - } - ], - "color": "B4141E", - "abilities": [ - { - "name": "CalldownMULE", - "frame": 4317, - "time": "4:29" - }, - { - "name": "CalldownMULE", - "frame": 4388, - "time": "4:34" - }, - { - "name": "CalldownMULE", - "frame": 5749, - "time": "5:59" - }, - { - "name": "CalldownMULE", - "frame": 5794, - "time": "6:02" - }, - { - "name": "CalldownMULE", - "frame": 7240, - "time": "7:32" - }, - { - "name": "CalldownMULE", - "frame": 7240, - "time": "7:32" - }, - { - "name": "CalldownMULE", - "frame": 9060, - "time": "9:26" - }, - { - "name": "CalldownMULE", - "frame": 9063, - "time": "9:26" - }, - { - "name": "CalldownMULE", - "frame": 9069, - "time": "9:26" - }, - { - "name": "ScannerSweep", - "frame": 9656, - "time": "10:03" - }, - { - "name": "CalldownMULE", - "frame": 10925, - "time": "11:22" - }, - { - "name": "CalldownMULE", - "frame": 10928, - "time": "11:23" - }, - { - "name": "CalldownMULE", - "frame": 10934, - "time": "11:23" - }, - { - "name": "ScannerSweep", - "frame": 11581, - "time": "12:03" - }, - { - "name": "ScannerSweep", - "frame": 11662, - "time": "12:08" - }, - { - "name": "ScannerSweep", - "frame": 11730, - "time": "12:13" - }, - { - "name": "ScannerSweep", - "frame": 12754, - "time": "13:17" - }, - { - "name": "ScannerSweep", - "frame": 13800, - "time": "14:22" - }, - { - "name": "ScannerSweep", - "frame": 13839, - "time": "14:24" - }, - { - "name": "CalldownMULE", - "frame": 16233, - "time": "16:54" - }, - { - "name": "CalldownMULE", - "frame": 16236, - "time": "16:54" - }, - { - "name": "CalldownMULE", - "frame": 16239, - "time": "16:54" - }, - { - "name": "CalldownMULE", - "frame": 16242, - "time": "16:55" - }, - { - "name": "CalldownMULE", - "frame": 16245, - "time": "16:55" - }, - { - "name": "CalldownMULE", - "frame": 16247, - "time": "16:55" - }, - { - "name": "ScannerSweep", - "frame": 16408, - "time": "17:05" - }, - { - "name": "ScannerSweep", - "frame": 16661, - "time": "17:21" - }, - { - "name": "ScannerSweep", - "frame": 16765, - "time": "17:27" - }, - { - "name": "ScannerSweep", - "frame": 17856, - "time": "18:36" - }, - { - "name": "ScannerSweep", - "frame": 17899, - "time": "18:38" - }, - { - "name": "ExtraSupplies", - "frame": 18152, - "time": "18:54" - }, - { - "name": "ScannerSweep", - "frame": 18607, - "time": "19:22" - }, - { - "name": "ScannerSweep", - "frame": 18810, - "time": "19:35" - }, - { - "name": "ScannerSweep", - "frame": 18939, - "time": "19:43" - }, - { - "name": "ScannerSweep", - "frame": 20517, - "time": "21:22" - } - ], - "result": "Loss", - "is_winner": false, - "region": "eu", - "level": 53, - "pick_race": "Terran", "supply": [ [ - 0, + 0, 6 - ], + ], [ - 1, + 1, 6 - ], + ], [ - 160, + 160, 7 - ], + ], [ - 320, + 320, 8 - ], + ], [ - 480, + 480, 8 - ], + ], [ - 640, + 640, 9 - ], + ], [ - 800, + 800, 9 - ], + ], [ - 960, + 960, 10 - ], + ], [ - 1120, + 1120, 11 - ], + ], [ - 1280, + 1280, 11 - ], + ], [ - 1440, + 1440, 12 - ], + ], [ - 1600, + 1600, 12 - ], + ], [ - 1760, + 1760, 13 - ], + ], [ - 1920, + 1920, 13 - ], + ], [ - 2080, + 2080, 14 - ], + ], [ - 2240, + 2240, 14 - ], + ], [ - 2400, + 2400, 15 - ], + ], [ - 2560, + 2560, 16 - ], + ], [ - 2720, + 2720, 16 - ], + ], [ - 2880, + 2880, 17 - ], + ], [ - 3040, + 3040, 17 - ], + ], [ - 3200, + 3200, 18 - ], + ], [ - 3360, + 3360, 18 - ], + ], [ - 3520, + 3520, 19 - ], + ], [ - 3680, + 3680, 19 - ], + ], [ - 3840, + 3840, 20 - ], + ], [ - 4000, + 4000, 20 - ], + ], [ - 4160, + 4160, 20 - ], + ], [ - 4320, + 4320, 22 - ], + ], [ - 4480, + 4480, 23 - ], + ], [ - 4640, + 4640, 24 - ], + ], [ - 4800, + 4800, 25 - ], + ], [ - 4960, + 4960, 27 - ], + ], [ - 5120, + 5120, 27 - ], + ], [ - 5280, + 5280, 29 - ], + ], [ - 5440, + 5440, 30 - ], + ], [ - 5600, + 5600, 31 - ], + ], [ - 5760, + 5760, 37 - ], + ], [ - 5920, + 5920, 38 - ], + ], [ - 6080, + 6080, 40 - ], + ], [ - 6240, + 6240, 40 - ], + ], [ - 6400, + 6400, 43 - ], + ], [ - 6560, + 6560, 50 - ], + ], [ - 6720, + 6720, 50 - ], + ], [ - 6880, + 6880, 52 - ], + ], [ - 7040, + 7040, 53 - ], + ], [ - 7200, + 7200, 56 - ], + ], [ - 7360, + 7360, 61 - ], + ], [ - 7520, + 7520, 62 - ], + ], [ - 7680, + 7680, 67 - ], + ], [ - 7840, + 7840, 61 - ], + ], [ - 8000, + 8000, 63 - ], + ], [ - 8160, + 8160, 63 - ], + ], [ - 8320, + 8320, 67 - ], + ], [ - 8480, + 8480, 74 - ], + ], [ - 8640, + 8640, 75 - ], + ], [ - 8800, + 8800, 77 - ], + ], [ - 8960, + 8960, 77 - ], + ], [ - 9120, + 9120, 85 - ], + ], [ - 9280, + 9280, 88 - ], + ], [ - 9440, + 9440, 89 - ], + ], [ - 9600, + 9600, 94 - ], + ], [ - 9760, + 9760, 95 - ], + ], [ - 9920, + 9920, 94 - ], + ], [ - 10080, + 10080, 101 - ], + ], [ - 10240, + 10240, 101 - ], + ], [ - 10400, + 10400, 104 - ], + ], [ - 10560, + 10560, 100 - ], + ], [ - 10720, + 10720, 100 - ], + ], [ - 10880, + 10880, 95 - ], + ], [ - 11040, + 11040, 94 - ], + ], [ - 11200, + 11200, 94 - ], + ], [ - 11360, + 11360, 95 - ], + ], [ - 11520, + 11520, 90 - ], + ], [ - 11680, + 11680, 103 - ], + ], [ - 11840, + 11840, 107 - ], + ], [ - 12000, + 12000, 104 - ], + ], [ - 12160, + 12160, 112 - ], + ], [ - 12320, + 12320, 121 - ], + ], [ - 12480, + 12480, 123 - ], + ], [ - 12640, + 12640, 128 - ], + ], [ - 12800, + 12800, 129 - ], + ], [ - 12960, + 12960, 130 - ], + ], [ - 13120, + 13120, 129 - ], + ], [ - 13280, + 13280, 127 - ], + ], [ - 13440, + 13440, 137 - ], + ], [ - 13600, + 13600, 139 - ], + ], [ - 13760, + 13760, 143 - ], + ], [ - 13920, + 13920, 147 - ], + ], [ - 14080, + 14080, 147 - ], + ], [ - 14240, + 14240, 149 - ], + ], [ - 14400, + 14400, 153 - ], + ], [ - 14560, + 14560, 153 - ], + ], [ - 14720, + 14720, 152 - ], + ], [ - 14880, + 14880, 148 - ], + ], [ - 15040, + 15040, 148 - ], + ], [ - 15200, + 15200, 152 - ], + ], [ - 15360, + 15360, 152 - ], + ], [ - 15520, + 15520, 146 - ], + ], [ - 15680, + 15680, 136 - ], + ], [ - 15840, + 15840, 136 - ], + ], [ - 16000, + 16000, 151 - ], + ], [ - 16160, + 16160, 151 - ], + ], [ - 16320, + 16320, 152 - ], + ], [ - 16480, + 16480, 155 - ], + ], [ - 16640, + 16640, 159 - ], + ], [ - 16800, + 16800, 159 - ], + ], [ - 16960, + 16960, 159 - ], + ], [ - 17120, + 17120, 157 - ], + ], [ - 17280, + 17280, 157 - ], + ], [ - 17440, + 17440, 181 - ], + ], [ - 17600, + 17600, 181 - ], + ], [ - 17760, + 17760, 178 - ], + ], [ - 17920, + 17920, 178 - ], + ], [ - 18080, + 18080, 180 - ], + ], [ - 18240, + 18240, 186 - ], + ], [ - 18400, + 18400, 188 - ], + ], [ - 18560, + 18560, 188 - ], + ], [ - 18720, + 18720, 188 - ], + ], [ - 18880, + 18880, 185 - ], + ], [ - 19040, + 19040, 181 - ], + ], [ - 19200, + 19200, 193 - ], + ], [ - 19360, + 19360, 148 - ], + ], [ - 19520, + 19520, 140 - ], + ], [ - 19680, + 19680, 109 - ], + ], [ - 19840, + 19840, 110 - ], + ], [ - 20000, + 20000, 102 - ], + ], [ - 20160, + 20160, 87 - ], + ], [ - 20320, + 20320, 83 - ], + ], [ - 20480, + 20480, 79 - ], + ], [ - 20640, + 20640, 75 - ], + ], [ - 20644, + 20644, 75 - ], + ], [ - 20644, + 20644, 75 ] - ], - "name": "EGThorZaINRC", - "commander": null, + ], + "league": 7, "buildOrder": [ { - "name": "SCV", - "is_worker": true, - "frame": 22, - "clock_position": null, - "time": "0:01", - "is_chronoboosted": false, - "supply": 6 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 293, - "clock_position": null, - "time": "0:18", - "is_chronoboosted": false, - "supply": 7 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 564, - "clock_position": null, - "time": "0:35", - "is_chronoboosted": false, - "supply": 8 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 835, - "clock_position": null, - "time": "0:52", - "is_chronoboosted": false, - "supply": 9 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 928, - "clock_position": null, - "time": "0:58", - "is_chronoboosted": false, - "supply": 9 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 1106, - "clock_position": null, - "time": "1:09", - "is_chronoboosted": false, - "supply": 10 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 1408, - "clock_position": null, - "time": "1:28", - "is_chronoboosted": false, - "supply": 11 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 1679, - "clock_position": null, - "time": "1:44", - "is_chronoboosted": false, - "supply": 12 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 1950, - "clock_position": null, - "time": "2:01", - "is_chronoboosted": false, - "supply": 13 - }, - { - "name": "CommandCenter", - "is_worker": false, - "frame": 2177, - "clock_position": null, - "time": "2:16", - "is_chronoboosted": false, - "supply": 14 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 2284, - "clock_position": null, - "time": "2:22", - "is_chronoboosted": false, - "supply": 14 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 2555, - "clock_position": null, - "time": "2:39", - "is_chronoboosted": false, - "supply": 15 - }, - { - "name": "Barracks", - "is_worker": false, - "frame": 2647, - "clock_position": null, - "time": "2:45", - "is_chronoboosted": false, - "supply": 16 - }, - { - "name": "Refinery", - "is_worker": false, - "frame": 2783, - "clock_position": null, - "time": "2:53", - "is_chronoboosted": false, - "supply": 16 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 2860, - "clock_position": null, - "time": "2:58", - "is_chronoboosted": false, - "supply": 16 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 3131, - "clock_position": null, - "time": "3:15", - "is_chronoboosted": false, - "supply": 17 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 3406, - "clock_position": null, - "time": "3:32", - "is_chronoboosted": false, - "supply": 18 - }, - { - "name": "OrbitalCommand", - "is_worker": false, - "frame": 3729, - "clock_position": null, - "time": "3:53", - "is_chronoboosted": false, - "supply": 19 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 3777, - "clock_position": null, - "time": "3:56", - "is_chronoboosted": false, - "supply": 19 - }, - { - "name": "OrbitalCommand", - "is_worker": false, - "frame": 3799, - "clock_position": null, - "time": "3:57", - "is_chronoboosted": false, - "supply": 19 - }, - { - "name": "Refinery", - "is_worker": false, - "frame": 3900, - "clock_position": null, - "time": "4:03", - "is_chronoboosted": false, - "supply": 20 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 4176, - "clock_position": null, - "time": "4:21", - "is_chronoboosted": false, - "supply": 20 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 4315, - "clock_position": null, - "time": "4:29", - "is_chronoboosted": false, - "supply": 20 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 4382, - "clock_position": null, - "time": "4:33", - "is_chronoboosted": false, - "supply": 22 - }, - { - "name": "Factory", - "is_worker": false, - "frame": 4515, - "clock_position": null, - "time": "4:42", - "is_chronoboosted": false, - "supply": 23 - }, - { - "name": "BarracksReactor", - "is_worker": false, - "frame": 4582, - "clock_position": null, - "time": "4:46", - "is_chronoboosted": false, - "supply": 23 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 4586, - "clock_position": null, - "time": "4:46", - "is_chronoboosted": false, - "supply": 23 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 4653, - "clock_position": null, - "time": "4:50", - "is_chronoboosted": false, - "supply": 24 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 4672, - "clock_position": null, - "time": "4:52", - "is_chronoboosted": false, - "supply": 24 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 4857, - "clock_position": null, - "time": "5:03", - "is_chronoboosted": false, - "supply": 25 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 4924, - "clock_position": null, - "time": "5:07", - "is_chronoboosted": false, - "supply": 25 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 5128, - "clock_position": null, - "time": "5:20", - "is_chronoboosted": false, - "supply": 27 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 5190, - "clock_position": null, - "time": "5:24", - "is_chronoboosted": false, - "supply": 27 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 5195, - "clock_position": null, - "time": "5:24", - "is_chronoboosted": false, - "supply": 27 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 5399, - "clock_position": null, - "time": "5:37", - "is_chronoboosted": false, - "supply": 29 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 5466, - "clock_position": null, - "time": "5:41", - "is_chronoboosted": false, - "supply": 30 - }, - { - "name": "Armory", - "is_worker": false, - "frame": 5488, - "clock_position": null, - "time": "5:43", - "is_chronoboosted": false, - "supply": 30 - }, - { - "name": "Starport", - "is_worker": false, - "frame": 5574, - "clock_position": null, - "time": "5:48", - "is_chronoboosted": false, - "supply": 30 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 5670, - "clock_position": null, - "time": "5:54", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Hellion", - "is_worker": false, - "frame": 5701, - "clock_position": null, - "time": "5:56", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Hellion", - "is_worker": false, - "frame": 5704, - "clock_position": null, - "time": "5:56", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Bunker", - "is_worker": false, - "frame": 5717, - "clock_position": null, - "time": "5:57", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 5746, - "clock_position": null, - "time": "5:59", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 5834, - "clock_position": null, - "time": "6:04", - "is_chronoboosted": false, - "supply": 37 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 5949, - "clock_position": null, - "time": "6:11", - "is_chronoboosted": false, - "supply": 38 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 6008, - "clock_position": null, - "time": "6:15", - "is_chronoboosted": false, - "supply": 38 - }, - { - "name": "Factory", - "is_worker": false, - "frame": 6066, - "clock_position": null, - "time": "6:19", - "is_chronoboosted": false, - "supply": 38 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 6070, - "clock_position": null, - "time": "6:19", - "is_chronoboosted": false, - "supply": 38 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 6281, - "clock_position": null, - "time": "6:32", - "is_chronoboosted": false, - "supply": 40 - }, - { - "name": "Medivac", - "is_worker": false, - "frame": 6393, - "clock_position": null, - "time": "6:39", - "is_chronoboosted": false, - "supply": 40 - }, - { - "name": "Marine", - "is_worker": false, - "frame": 6441, - "clock_position": null, - "time": "6:42", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 6475, - "clock_position": null, - "time": "6:44", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 6492, - "clock_position": null, - "time": "6:45", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 6534, - "clock_position": null, - "time": "6:48", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 6537, - "clock_position": null, - "time": "6:48", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 6557, - "clock_position": null, - "time": "6:49", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 6725, - "clock_position": null, - "time": "7:00", - "is_chronoboosted": false, - "supply": 50 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 6763, - "clock_position": null, - "time": "7:02", - "is_chronoboosted": false, - "supply": 50 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 6828, - "clock_position": null, - "time": "7:06", - "is_chronoboosted": false, - "supply": 50 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 7034, - "clock_position": null, - "time": "7:19", - "is_chronoboosted": false, - "supply": 52 - }, - { - "name": "FactoryTechLab", - "is_worker": false, - "frame": 7066, - "clock_position": null, - "time": "7:21", - "is_chronoboosted": false, - "supply": 53 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 7099, - "clock_position": null, - "time": "7:23", - "is_chronoboosted": false, - "supply": 53 - }, - { - "name": "Medivac", - "is_worker": false, - "frame": 7164, - "clock_position": null, - "time": "7:27", - "is_chronoboosted": false, - "supply": 53 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 7201, - "clock_position": null, - "time": "7:30", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 7204, - "clock_position": null, - "time": "7:30", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "CommandCenter", - "is_worker": false, - "frame": 7277, - "clock_position": null, - "time": "7:34", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 7305, - "clock_position": null, - "time": "7:36", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 7313, - "clock_position": null, - "time": "7:37", - "is_chronoboosted": false, - "supply": 56 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 7370, - "clock_position": null, - "time": "7:40", - "is_chronoboosted": false, - "supply": 61 - }, - { - "name": "SiegeTank", - "is_worker": false, - "frame": 7575, - "clock_position": null, - "time": "7:53", - "is_chronoboosted": false, - "supply": 62 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 7576, - "clock_position": null, - "time": "7:53", - "is_chronoboosted": false, - "supply": 62 - }, - { - "name": "TerranVehicleWeaponsLevel1", - "is_worker": false, - "frame": 7631, - "clock_position": null, - "time": "7:56", - "is_chronoboosted": false, - "supply": 62 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 7641, - "clock_position": null, - "time": "7:57", - "is_chronoboosted": false, - "supply": 62 - }, - { - "name": "Refinery", - "is_worker": false, - "frame": 7686, - "clock_position": null, - "time": "8:00", - "is_chronoboosted": false, - "supply": 67 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 7825, - "clock_position": null, - "time": "8:09", - "is_chronoboosted": false, - "supply": 67 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 7828, - "clock_position": null, - "time": "8:09", - "is_chronoboosted": false, - "supply": 67 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 7847, - "clock_position": null, - "time": "8:10", - "is_chronoboosted": false, - "supply": 61 - }, - { - "name": "Refinery", - "is_worker": false, - "frame": 7898, - "clock_position": null, - "time": "8:13", - "is_chronoboosted": false, - "supply": 61 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 7912, - "clock_position": null, - "time": "8:14", - "is_chronoboosted": false, - "supply": 61 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 7978, - "clock_position": null, - "time": "8:18", - "is_chronoboosted": false, - "supply": 61 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 8066, - "clock_position": null, - "time": "8:24", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 8188, - "clock_position": null, - "time": "8:31", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "SiegeTank", - "is_worker": false, - "frame": 8294, - "clock_position": null, - "time": "8:38", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "VikingFighter", - "is_worker": false, - "frame": 8444, - "clock_position": null, - "time": "8:47", - "is_chronoboosted": false, - "supply": 67 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 8453, - "clock_position": null, - "time": "8:48", - "is_chronoboosted": false, - "supply": 67 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 8455, - "clock_position": null, - "time": "8:48", - "is_chronoboosted": false, - "supply": 67 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 8478, - "clock_position": null, - "time": "8:49", - "is_chronoboosted": false, - "supply": 67 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 8481, - "clock_position": null, - "time": "8:50", - "is_chronoboosted": false, - "supply": 74 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 8539, - "clock_position": null, - "time": "8:53", - "is_chronoboosted": false, - "supply": 74 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 8749, - "clock_position": null, - "time": "9:06", - "is_chronoboosted": false, - "supply": 75 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 8752, - "clock_position": null, - "time": "9:07", - "is_chronoboosted": false, - "supply": 75 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 8995, - "clock_position": null, - "time": "9:22", - "is_chronoboosted": false, - "supply": 77 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 8998, - "clock_position": null, - "time": "9:22", - "is_chronoboosted": false, - "supply": 77 - }, - { - "name": "OrbitalCommand", - "is_worker": false, - "frame": 9017, - "clock_position": null, - "time": "9:23", - "is_chronoboosted": false, - "supply": 77 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 9020, - "clock_position": null, - "time": "9:23", - "is_chronoboosted": false, - "supply": 77 - }, - { - "name": "SiegeTank", - "is_worker": false, - "frame": 9116, - "clock_position": null, - "time": "9:29", - "is_chronoboosted": false, - "supply": 77 - }, - { - "name": "VikingFighter", - "is_worker": false, - "frame": 9173, - "clock_position": null, - "time": "9:33", - "is_chronoboosted": false, - "supply": 85 - }, - { - "name": "BarracksReactor", - "is_worker": false, - "frame": 9243, - "clock_position": null, - "time": "9:37", - "is_chronoboosted": false, - "supply": 85 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 9274, - "clock_position": null, - "time": "9:39", - "is_chronoboosted": false, - "supply": 85 - }, - { - "name": "Factory", - "is_worker": false, - "frame": 9387, - "clock_position": null, - "time": "9:46", - "is_chronoboosted": false, - "supply": 88 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 9417, - "clock_position": null, - "time": "9:48", - "is_chronoboosted": false, - "supply": 88 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 9439, - "clock_position": null, - "time": "9:49", - "is_chronoboosted": false, - "supply": 88 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 9513, - "clock_position": null, - "time": "9:54", - "is_chronoboosted": false, - "supply": 89 - }, - { - "name": "EngineeringBay", - "is_worker": false, - "frame": 9521, - "clock_position": null, - "time": "9:55", - "is_chronoboosted": false, - "supply": 89 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 9521, - "clock_position": null, - "time": "9:55", - "is_chronoboosted": false, - "supply": 89 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 9561, - "clock_position": null, - "time": "9:57", - "is_chronoboosted": false, - "supply": 89 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 9607, - "clock_position": null, - "time": "10:00", - "is_chronoboosted": false, - "supply": 94 - }, - { - "name": "OrbitalCommand", - "is_worker": false, - "frame": 9751, - "clock_position": null, - "time": "10:09", - "is_chronoboosted": false, - "supply": 94 - }, - { - "name": "Factory", - "is_worker": false, - "frame": 9973, - "clock_position": null, - "time": "10:23", - "is_chronoboosted": false, - "supply": 94 - }, - { - "name": "Factory", - "is_worker": false, - "frame": 10020, - "clock_position": null, - "time": "10:26", - "is_chronoboosted": false, - "supply": 94 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 10039, - "clock_position": null, - "time": "10:27", - "is_chronoboosted": false, - "supply": 94 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 10042, - "clock_position": null, - "time": "10:27", - "is_chronoboosted": false, - "supply": 94 - }, - { - "name": "SiegeTank", - "is_worker": false, - "frame": 10047, - "clock_position": null, - "time": "10:27", - "is_chronoboosted": false, - "supply": 94 - }, - { - "name": "Refinery", - "is_worker": false, - "frame": 10116, - "clock_position": null, - "time": "10:32", - "is_chronoboosted": false, - "supply": 101 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 10144, - "clock_position": null, - "time": "10:34", - "is_chronoboosted": false, - "supply": 101 - }, - { - "name": "Refinery", - "is_worker": false, - "frame": 10165, - "clock_position": null, - "time": "10:35", - "is_chronoboosted": false, - "supply": 101 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 10258, - "clock_position": null, - "time": "10:41", - "is_chronoboosted": false, - "supply": 101 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 10261, - "clock_position": null, - "time": "10:41", - "is_chronoboosted": false, - "supply": 101 - }, - { - "name": "TerranVehicleAndShipArmorsLevel1", - "is_worker": false, - "frame": 10284, - "clock_position": null, - "time": "10:42", - "is_chronoboosted": false, - "supply": 101 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 10357, - "clock_position": null, - "time": "10:47", - "is_chronoboosted": false, - "supply": 101 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 10723, - "clock_position": null, - "time": "11:10", - "is_chronoboosted": false, - "supply": 100 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 10725, - "clock_position": null, - "time": "11:10", - "is_chronoboosted": false, - "supply": 100 - }, - { - "name": "SiegeTank", - "is_worker": false, - "frame": 10766, - "clock_position": null, - "time": "11:12", - "is_chronoboosted": false, - "supply": 100 - }, - { - "name": "Medivac", - "is_worker": false, - "frame": 10821, - "clock_position": null, - "time": "11:16", - "is_chronoboosted": false, - "supply": 100 - }, - { - "name": "Medivac", - "is_worker": false, - "frame": 10824, - "clock_position": null, - "time": "11:16", - "is_chronoboosted": false, - "supply": 100 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 10965, - "clock_position": null, - "time": "11:25", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 10970, - "clock_position": null, - "time": "11:25", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 10973, - "clock_position": null, - "time": "11:25", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "CommandCenter", - "is_worker": false, - "frame": 10981, - "clock_position": null, - "time": "11:26", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "FactoryReactor", - "is_worker": false, - "frame": 11012, - "clock_position": null, - "time": "11:28", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "FactoryTechLab", - "is_worker": false, - "frame": 11024, - "clock_position": null, - "time": "11:29", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "FactoryTechLab", - "is_worker": false, - "frame": 11026, - "clock_position": null, - "time": "11:29", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "CommandCenter", - "is_worker": false, - "frame": 11080, - "clock_position": null, - "time": "11:32", - "is_chronoboosted": false, - "supply": 94 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 11236, - "clock_position": null, - "time": "11:42", - "is_chronoboosted": false, - "supply": 94 - }, - { - "name": "SiegeTank", - "is_worker": false, - "frame": 11297, - "clock_position": null, - "time": "11:46", - "is_chronoboosted": false, - "supply": 94 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 11378, - "clock_position": null, - "time": "11:51", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Armory", - "is_worker": false, - "frame": 11407, - "clock_position": null, - "time": "11:52", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 11541, - "clock_position": null, - "time": "12:01", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 11544, - "clock_position": null, - "time": "12:01", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "SiegeTank", - "is_worker": false, - "frame": 11558, - "clock_position": null, - "time": "12:02", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "SiegeTank", - "is_worker": false, - "frame": 11558, - "clock_position": null, - "time": "12:02", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "SiegeTank", - "is_worker": false, - "frame": 11561, - "clock_position": null, - "time": "12:02", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "VikingFighter", - "is_worker": false, - "frame": 11763, - "clock_position": null, - "time": "12:15", - "is_chronoboosted": false, - "supply": 103 - }, - { - "name": "VikingFighter", - "is_worker": false, - "frame": 11766, - "clock_position": null, - "time": "12:15", - "is_chronoboosted": false, - "supply": 103 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 12115, - "clock_position": null, - "time": "12:37", - "is_chronoboosted": false, - "supply": 104 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 12118, - "clock_position": null, - "time": "12:37", - "is_chronoboosted": false, - "supply": 104 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 12129, - "clock_position": null, - "time": "12:38", - "is_chronoboosted": false, - "supply": 104 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 12132, - "clock_position": null, - "time": "12:38", - "is_chronoboosted": false, - "supply": 104 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 12194, - "clock_position": null, - "time": "12:42", - "is_chronoboosted": false, - "supply": 112 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 12194, - "clock_position": null, - "time": "12:42", - "is_chronoboosted": false, - "supply": 112 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 12197, - "clock_position": null, - "time": "12:42", - "is_chronoboosted": false, - "supply": 112 - }, - { - "name": "Thor", - "is_worker": false, - "frame": 12277, - "clock_position": null, - "time": "12:47", - "is_chronoboosted": false, - "supply": 112 - }, - { - "name": "Starport", - "is_worker": false, - "frame": 12300, - "clock_position": null, - "time": "12:48", - "is_chronoboosted": false, - "supply": 112 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 12465, - "clock_position": null, - "time": "12:59", - "is_chronoboosted": false, - "supply": 121 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 12465, - "clock_position": null, - "time": "12:59", - "is_chronoboosted": false, - "supply": 121 - }, - { - "name": "VikingFighter", - "is_worker": false, - "frame": 12509, - "clock_position": null, - "time": "13:01", - "is_chronoboosted": false, - "supply": 123 - }, - { - "name": "VikingFighter", - "is_worker": false, - "frame": 12512, - "clock_position": null, - "time": "13:02", - "is_chronoboosted": false, - "supply": 123 - }, - { - "name": "TerranShipWeaponsLevel1", - "is_worker": false, - "frame": 12534, - "clock_position": null, - "time": "13:03", - "is_chronoboosted": false, - "supply": 123 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 12568, - "clock_position": null, - "time": "13:05", - "is_chronoboosted": false, - "supply": 123 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 12736, - "clock_position": null, - "time": "13:16", - "is_chronoboosted": false, - "supply": 128 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 12939, - "clock_position": null, - "time": "13:28", - "is_chronoboosted": false, - "supply": 129 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 13164, - "clock_position": null, - "time": "13:42", - "is_chronoboosted": false, - "supply": 129 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 13167, - "clock_position": null, - "time": "13:42", - "is_chronoboosted": false, - "supply": 129 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 13167, - "clock_position": null, - "time": "13:42", - "is_chronoboosted": false, - "supply": 129 - }, - { - "name": "VikingFighter", - "is_worker": false, - "frame": 13215, - "clock_position": null, - "time": "13:45", - "is_chronoboosted": false, - "supply": 129 - }, - { - "name": "VikingFighter", - "is_worker": false, - "frame": 13218, - "clock_position": null, - "time": "13:46", - "is_chronoboosted": false, - "supply": 129 - }, - { - "name": "Thor", - "is_worker": false, - "frame": 13367, - "clock_position": null, - "time": "13:55", - "is_chronoboosted": false, - "supply": 127 - }, - { - "name": "Thor", - "is_worker": false, - "frame": 13375, - "clock_position": null, - "time": "13:55", - "is_chronoboosted": false, - "supply": 127 - }, - { - "name": "VikingFighter", - "is_worker": false, - "frame": 13524, - "clock_position": null, - "time": "14:05", - "is_chronoboosted": false, - "supply": 137 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 13758, - "clock_position": null, - "time": "14:19", - "is_chronoboosted": false, - "supply": 139 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 13758, - "clock_position": null, - "time": "14:19", - "is_chronoboosted": false, - "supply": 139 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 13761, - "clock_position": null, - "time": "14:20", - "is_chronoboosted": false, - "supply": 143 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 13763, - "clock_position": null, - "time": "14:20", - "is_chronoboosted": false, - "supply": 143 - }, - { - "name": "Refinery", - "is_worker": false, - "frame": 13871, - "clock_position": null, - "time": "14:26", - "is_chronoboosted": false, - "supply": 143 - }, - { - "name": "OrbitalCommand", - "is_worker": false, - "frame": 13928, - "clock_position": null, - "time": "14:30", - "is_chronoboosted": false, - "supply": 147 - }, - { - "name": "Refinery", - "is_worker": false, - "frame": 13963, - "clock_position": null, - "time": "14:32", - "is_chronoboosted": false, - "supply": 147 - }, - { - "name": "TerranVehicleAndShipArmorsLevel2", - "is_worker": false, - "frame": 14011, - "clock_position": null, - "time": "14:35", - "is_chronoboosted": false, - "supply": 147 - }, - { - "name": "VikingFighter", - "is_worker": false, - "frame": 14195, - "clock_position": null, - "time": "14:47", - "is_chronoboosted": false, - "supply": 147 - }, - { - "name": "VikingFighter", - "is_worker": false, - "frame": 14309, - "clock_position": null, - "time": "14:54", - "is_chronoboosted": false, - "supply": 149 - }, - { - "name": "VikingFighter", - "is_worker": false, - "frame": 14309, - "clock_position": null, - "time": "14:54", - "is_chronoboosted": false, - "supply": 149 - }, - { - "name": "StarportReactor", - "is_worker": false, - "frame": 14906, - "clock_position": null, - "time": "15:31", - "is_chronoboosted": false, - "supply": 148 - }, - { - "name": "Starport", - "is_worker": false, - "frame": 14946, - "clock_position": null, - "time": "15:34", - "is_chronoboosted": false, - "supply": 148 - }, - { - "name": "Starport", - "is_worker": false, - "frame": 14973, - "clock_position": null, - "time": "15:35", - "is_chronoboosted": false, - "supply": 148 - }, - { - "name": "CommandCenter", - "is_worker": false, - "frame": 14982, - "clock_position": null, - "time": "15:36", - "is_chronoboosted": false, - "supply": 148 - }, - { - "name": "CommandCenter", - "is_worker": false, - "frame": 14987, - "clock_position": null, - "time": "15:36", - "is_chronoboosted": false, - "supply": 148 - }, - { - "name": "VikingFighter", - "is_worker": false, - "frame": 15057, - "clock_position": null, - "time": "15:41", - "is_chronoboosted": false, - "supply": 148 - }, - { - "name": "VikingFighter", - "is_worker": false, - "frame": 15060, - "clock_position": null, - "time": "15:41", - "is_chronoboosted": false, - "supply": 148 - }, - { - "name": "Refinery", - "is_worker": false, - "frame": 15356, - "clock_position": null, - "time": "15:59", - "is_chronoboosted": false, - "supply": 152 - }, - { - "name": "Refinery", - "is_worker": false, - "frame": 15394, - "clock_position": null, - "time": "16:02", - "is_chronoboosted": false, - "supply": 152 - }, - { - "name": "PlanetaryFortress", - "is_worker": false, - "frame": 15414, - "clock_position": null, - "time": "16:03", - "is_chronoboosted": false, - "supply": 152 - }, - { - "name": "Refinery", - "is_worker": false, - "frame": 15843, - "clock_position": null, - "time": "16:30", - "is_chronoboosted": false, - "supply": 136 - }, - { - "name": "Medivac", - "is_worker": false, - "frame": 15946, - "clock_position": null, - "time": "16:36", - "is_chronoboosted": false, - "supply": 136 - }, - { - "name": "Medivac", - "is_worker": false, - "frame": 15955, - "clock_position": null, - "time": "16:37", - "is_chronoboosted": false, - "supply": 136 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 15972, - "clock_position": null, - "time": "16:38", - "is_chronoboosted": false, - "supply": 136 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 15974, - "clock_position": null, - "time": "16:38", - "is_chronoboosted": false, - "supply": 136 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 15977, - "clock_position": null, - "time": "16:38", - "is_chronoboosted": false, - "supply": 136 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 15980, - "clock_position": null, - "time": "16:38", - "is_chronoboosted": false, - "supply": 136 - }, - { - "name": "Medivac", - "is_worker": false, - "frame": 15986, - "clock_position": null, - "time": "16:39", - "is_chronoboosted": false, - "supply": 136 - }, - { - "name": "Medivac", - "is_worker": false, - "frame": 15994, - "clock_position": null, - "time": "16:39", - "is_chronoboosted": false, - "supply": 136 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 16112, - "clock_position": null, - "time": "16:47", - "is_chronoboosted": false, - "supply": 151 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 16118, - "clock_position": null, - "time": "16:47", - "is_chronoboosted": false, - "supply": 151 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 16118, - "clock_position": null, - "time": "16:47", - "is_chronoboosted": false, - "supply": 151 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 16174, - "clock_position": null, - "time": "16:50", - "is_chronoboosted": false, - "supply": 151 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 16222, - "clock_position": null, - "time": "16:53", - "is_chronoboosted": false, - "supply": 151 - }, - { - "name": "TerranShipWeaponsLevel2", - "is_worker": false, - "frame": 16315, - "clock_position": null, - "time": "16:59", - "is_chronoboosted": false, - "supply": 151 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 16383, - "clock_position": null, - "time": "17:03", - "is_chronoboosted": false, - "supply": 152 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 16389, - "clock_position": null, - "time": "17:04", - "is_chronoboosted": false, - "supply": 152 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 16389, - "clock_position": null, - "time": "17:04", - "is_chronoboosted": false, - "supply": 152 - }, - { - "name": "VikingFighter", - "is_worker": false, - "frame": 16495, - "clock_position": null, - "time": "17:10", - "is_chronoboosted": false, - "supply": 155 - }, - { - "name": "VikingFighter", - "is_worker": false, - "frame": 16495, - "clock_position": null, - "time": "17:10", - "is_chronoboosted": false, - "supply": 155 - }, - { - "name": "OrbitalCommand", - "is_worker": false, - "frame": 16708, - "clock_position": null, - "time": "17:24", - "is_chronoboosted": false, - "supply": 159 - }, - { - "name": "OrbitalCommand", - "is_worker": false, - "frame": 16710, - "clock_position": null, - "time": "17:24", - "is_chronoboosted": false, - "supply": 159 - }, - { - "name": "StarportTechLab", - "is_worker": false, - "frame": 17280, - "clock_position": null, - "time": "18:00", - "is_chronoboosted": false, - "supply": 157 - }, - { - "name": "Thor", - "is_worker": false, - "frame": 17308, - "clock_position": null, - "time": "18:01", - "is_chronoboosted": false, - "supply": 157 - }, - { - "name": "Thor", - "is_worker": false, - "frame": 17313, - "clock_position": null, - "time": "18:02", - "is_chronoboosted": false, - "supply": 157 - }, - { - "name": "Thor", - "is_worker": false, - "frame": 17313, - "clock_position": null, - "time": "18:02", - "is_chronoboosted": false, - "supply": 157 - }, - { - "name": "TerranVehicleWeaponsLevel2", - "is_worker": false, - "frame": 17347, - "clock_position": null, - "time": "18:04", - "is_chronoboosted": false, - "supply": 157 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 17406, - "clock_position": null, - "time": "18:07", - "is_chronoboosted": false, - "supply": 157 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 17409, - "clock_position": null, - "time": "18:08", - "is_chronoboosted": false, - "supply": 157 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 17412, - "clock_position": null, - "time": "18:08", - "is_chronoboosted": false, - "supply": 157 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 17415, - "clock_position": null, - "time": "18:08", - "is_chronoboosted": false, - "supply": 157 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 17420, - "clock_position": null, - "time": "18:08", - "is_chronoboosted": false, - "supply": 157 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 17423, - "clock_position": null, - "time": "18:08", - "is_chronoboosted": false, - "supply": 157 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 17615, - "clock_position": null, - "time": "18:20", - "is_chronoboosted": false, - "supply": 181 - }, - { - "name": "Barracks", - "is_worker": false, - "frame": 17711, - "clock_position": null, - "time": "18:26", - "is_chronoboosted": false, - "supply": 181 - }, - { - "name": "Barracks", - "is_worker": false, - "frame": 17733, - "clock_position": null, - "time": "18:28", - "is_chronoboosted": false, - "supply": 181 - }, - { - "name": "GhostAcademy", - "is_worker": false, - "frame": 17738, - "clock_position": null, - "time": "18:28", - "is_chronoboosted": false, - "supply": 181 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 18079, - "clock_position": null, - "time": "18:49", - "is_chronoboosted": false, - "supply": 178 - }, - { - "name": "TerranBuildingArmor", - "is_worker": false, - "frame": 18188, - "clock_position": null, - "time": "18:56", - "is_chronoboosted": false, - "supply": 180 - }, - { - "name": "SupplyDepot", - "is_worker": false, - "frame": 18213, - "clock_position": null, - "time": "18:58", - "is_chronoboosted": false, - "supply": 180 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 18216, - "clock_position": null, - "time": "18:58", - "is_chronoboosted": false, - "supply": 180 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 18216, - "clock_position": null, - "time": "18:58", - "is_chronoboosted": false, - "supply": 180 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 18217, - "clock_position": null, - "time": "18:58", - "is_chronoboosted": false, - "supply": 180 - }, - { - "name": "RavenCorvidReactor", - "is_worker": false, - "frame": 18374, - "clock_position": null, - "time": "19:08", - "is_chronoboosted": false, - "supply": 186 - }, - { - "name": "Raven", - "is_worker": false, - "frame": 18377, - "clock_position": null, - "time": "19:08", - "is_chronoboosted": false, - "supply": 186 - }, - { - "name": "StarportTechLab", - "is_worker": false, - "frame": 18454, - "clock_position": null, - "time": "19:13", - "is_chronoboosted": false, - "supply": 188 - }, - { - "name": "BarracksTechLab", - "is_worker": false, - "frame": 18664, - "clock_position": null, - "time": "19:26", - "is_chronoboosted": false, - "supply": 188 - }, - { - "name": "GhostMoebiusReactor", - "is_worker": false, - "frame": 18697, - "clock_position": null, - "time": "19:28", - "is_chronoboosted": false, - "supply": 188 - }, - { - "name": "BarracksTechLab", - "is_worker": false, - "frame": 18757, - "clock_position": null, - "time": "19:32", - "is_chronoboosted": false, - "supply": 188 - }, - { - "name": "Thor", - "is_worker": false, - "frame": 19150, - "clock_position": null, - "time": "19:56", - "is_chronoboosted": false, - "supply": 181 - }, - { - "name": "Thor", - "is_worker": false, - "frame": 19153, - "clock_position": null, - "time": "19:57", - "is_chronoboosted": false, - "supply": 181 - }, - { - "name": "Banshee", - "is_worker": false, - "frame": 19468, - "clock_position": null, - "time": "20:16", - "is_chronoboosted": false, - "supply": 148 - }, - { - "name": "Banshee", - "is_worker": false, - "frame": 19471, - "clock_position": null, - "time": "20:16", - "is_chronoboosted": false, - "supply": 148 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 19696, - "clock_position": null, - "time": "20:31", - "is_chronoboosted": false, - "supply": 109 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 19699, - "clock_position": null, - "time": "20:31", - "is_chronoboosted": false, - "supply": 109 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 19704, - "clock_position": null, - "time": "20:31", - "is_chronoboosted": false, - "supply": 109 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 19730, - "clock_position": null, - "time": "20:33", - "is_chronoboosted": false, - "supply": 109 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 19733, - "clock_position": null, - "time": "20:33", - "is_chronoboosted": false, - "supply": 109 - }, - { - "name": "SCV", - "is_worker": true, - "frame": 19735, - "clock_position": null, - "time": "20:33", - "is_chronoboosted": false, - "supply": 109 - }, - { - "name": "Hellbat", - "is_worker": false, - "frame": 19974, - "clock_position": null, - "time": "20:48", - "is_chronoboosted": false, - "supply": 110 - } - ], - "clock_position": null, - "uid": 463666, - "race": "Terran", - "team": 1, - "handicap": 100 - }, - "2": { - "is_human": true, - "league": 7, - "unitsLost": [ - { - "name": "Drone", - "frame": 3513, - "clock_position": null, - "time": "3:39", - "killer": null - }, - { - "name": "Drone", - "frame": 3655, - "clock_position": null, - "time": "3:48", - "killer": null - }, - { - "name": "Drone", - "frame": 4621, - "clock_position": null, - "time": "4:48", - "killer": null - }, - { - "name": "Extractor", - "frame": 5105, - "clock_position": null, - "time": "5:19", - "killer": 2 - }, - { - "name": "Drone", - "frame": 6597, - "clock_position": null, - "time": "6:52", - "killer": null - }, - { - "name": "EvolutionChamber", - "frame": 6934, - "clock_position": null, - "time": "7:13", - "killer": 2 - }, - { - "name": "EvolutionChamber", - "frame": 6934, - "clock_position": null, - "time": "7:13", - "killer": 2 - }, - { - "name": "Drone", - "frame": 6955, - "clock_position": null, - "time": "7:14", - "killer": null - }, - { - "name": "Drone", - "frame": 7022, - "clock_position": null, - "time": "7:18", - "killer": null - }, - { - "name": "Drone", - "frame": 7043, - "clock_position": null, - "time": "7:20", - "killer": null - }, - { - "name": "Overlord", - "frame": 7085, - "clock_position": null, - "time": "7:22", - "killer": 1 - }, - { - "name": "Drone", - "frame": 7177, - "clock_position": null, - "time": "7:28", - "killer": null - }, - { - "name": "Drone", - "frame": 7410, - "clock_position": null, - "time": "7:43", - "killer": null - }, - { - "name": "Zergling", - "frame": 7482, - "clock_position": null, - "time": "7:47", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 7488, - "clock_position": null, - "time": "7:48", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 7589, - "clock_position": null, - "time": "7:54", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 7650, - "clock_position": null, - "time": "7:58", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 7650, - "clock_position": null, - "time": "7:58", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8466, - "clock_position": null, - "time": "8:49", - "killer": null - }, - { - "name": "Drone", - "frame": 8487, - "clock_position": null, - "time": "8:50", - "killer": null - }, - { - "name": "Drone", - "frame": 8610, - "clock_position": null, - "time": "8:58", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8775, - "clock_position": null, - "time": "9:08", - "killer": null - }, - { - "name": "Drone", - "frame": 8805, - "clock_position": null, - "time": "9:10", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8840, - "clock_position": null, - "time": "9:12", - "killer": 1 - }, - { - "name": "Drone", - "frame": 8840, - "clock_position": null, - "time": "9:12", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9032, - "clock_position": null, - "time": "9:24", - "killer": null - }, - { - "name": "Overlord", - "frame": 9530, - "clock_position": null, - "time": "9:55", - "killer": 1 - }, - { - "name": "Drone", - "frame": 9969, - "clock_position": null, - "time": "10:23", - "killer": null - }, - { - "name": "Overlord", - "frame": 10364, - "clock_position": null, - "time": "10:47", - "killer": 1 - }, - { - "name": "Drone", - "frame": 10368, - "clock_position": null, - "time": "10:48", - "killer": null - }, - { - "name": "Drone", - "frame": 10372, - "clock_position": null, - "time": "10:48", - "killer": null - }, - { - "name": "Overlord", - "frame": 10543, - "clock_position": null, - "time": "10:58", - "killer": 1 - }, - { - "name": "Drone", - "frame": 10564, - "clock_position": null, - "time": "11:00", - "killer": 1 - }, - { - "name": "Drone", - "frame": 10565, - "clock_position": null, - "time": "11:00", - "killer": 1 - }, - { - "name": "Drone", - "frame": 10578, - "clock_position": null, - "time": "11:01", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10596, - "clock_position": null, - "time": "11:02", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10627, - "clock_position": null, - "time": "11:04", - "killer": 1 - }, - { - "name": "Drone", - "frame": 10629, - "clock_position": null, - "time": "11:04", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10631, - "clock_position": null, - "time": "11:04", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10669, - "clock_position": null, - "time": "11:06", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10669, - "clock_position": null, - "time": "11:06", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10669, - "clock_position": null, - "time": "11:06", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10669, - "clock_position": null, - "time": "11:06", - "killer": 1 - }, - { - "name": "Drone", - "frame": 10671, - "clock_position": null, - "time": "11:06", - "killer": 1 - }, - { - "name": "Drone", - "frame": 10671, - "clock_position": null, - "time": "11:06", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10675, - "clock_position": null, - "time": "11:07", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10675, - "clock_position": null, - "time": "11:07", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10675, - "clock_position": null, - "time": "11:07", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10681, - "clock_position": null, - "time": "11:07", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10681, - "clock_position": null, - "time": "11:07", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10681, - "clock_position": null, - "time": "11:07", - "killer": 1 - }, - { - "name": "Drone", - "frame": 10693, - "clock_position": null, - "time": "11:08", - "killer": 1 - }, - { - "name": "Drone", - "frame": 10693, - "clock_position": null, - "time": "11:08", - "killer": 1 - }, - { - "name": "Drone", - "frame": 10693, - "clock_position": null, - "time": "11:08", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10701, - "clock_position": null, - "time": "11:08", - "killer": 1 - }, - { - "name": "Drone", - "frame": 10703, - "clock_position": null, - "time": "11:08", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10703, - "clock_position": null, - "time": "11:08", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10703, - "clock_position": null, - "time": "11:08", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10703, - "clock_position": null, - "time": "11:08", - "killer": 1 - }, - { - "name": "Drone", - "frame": 10705, - "clock_position": null, - "time": "11:09", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 10724, - "clock_position": null, - "time": "11:10", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10724, - "clock_position": null, - "time": "11:10", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10729, - "clock_position": null, - "time": "11:10", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10731, - "clock_position": null, - "time": "11:10", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10735, - "clock_position": null, - "time": "11:10", - "killer": 1 - }, - { - "name": "Drone", - "frame": 10737, - "clock_position": null, - "time": "11:11", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10765, - "clock_position": null, - "time": "11:12", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10768, - "clock_position": null, - "time": "11:13", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10768, - "clock_position": null, - "time": "11:13", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10773, - "clock_position": null, - "time": "11:13", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 10773, - "clock_position": null, - "time": "11:13", - "killer": 1 - }, - { - "name": "Drone", - "frame": 10833, - "clock_position": null, - "time": "11:17", - "killer": null - }, - { - "name": "Drone", - "frame": 10933, - "clock_position": null, - "time": "11:23", - "killer": null - }, - { - "name": "Drone", - "frame": 11028, - "clock_position": null, - "time": "11:29", - "killer": null - }, - { - "name": "Drone", - "frame": 11047, - "clock_position": null, - "time": "11:30", - "killer": null - }, - { - "name": "Zergling", - "frame": 11335, - "clock_position": null, - "time": "11:48", - "killer": null - }, - { - "name": "Zergling", - "frame": 11338, - "clock_position": null, - "time": "11:48", - "killer": null - }, - { - "name": "Zergling", - "frame": 11338, - "clock_position": null, - "time": "11:48", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11344, - "clock_position": null, - "time": "11:49", - "killer": null - }, - { - "name": "Zergling", - "frame": 11344, - "clock_position": null, - "time": "11:49", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11344, - "clock_position": null, - "time": "11:49", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11346, - "clock_position": null, - "time": "11:49", - "killer": null - }, - { - "name": "Zergling", - "frame": 11356, - "clock_position": null, - "time": "11:49", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11370, - "clock_position": null, - "time": "11:50", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11371, - "clock_position": null, - "time": "11:50", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11372, - "clock_position": null, - "time": "11:50", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11373, - "clock_position": null, - "time": "11:50", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11378, - "clock_position": null, - "time": "11:51", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11390, - "clock_position": null, - "time": "11:51", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11403, - "clock_position": null, - "time": "11:52", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11403, - "clock_position": null, - "time": "11:52", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11403, - "clock_position": null, - "time": "11:52", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11403, - "clock_position": null, - "time": "11:52", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11410, - "clock_position": null, - "time": "11:53", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11424, - "clock_position": null, - "time": "11:54", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11436, - "clock_position": null, - "time": "11:54", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11442, - "clock_position": null, - "time": "11:55", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11443, - "clock_position": null, - "time": "11:55", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11443, - "clock_position": null, - "time": "11:55", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11468, - "clock_position": null, - "time": "11:56", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11468, - "clock_position": null, - "time": "11:56", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11495, - "clock_position": null, - "time": "11:58", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11499, - "clock_position": null, - "time": "11:58", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11510, - "clock_position": null, - "time": "11:59", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11512, - "clock_position": null, - "time": "11:59", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11527, - "clock_position": null, - "time": "12:00", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 11594, - "clock_position": null, - "time": "12:04", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 11615, - "clock_position": null, - "time": "12:05", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 11639, - "clock_position": null, - "time": "12:07", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 11687, - "clock_position": null, - "time": "12:10", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 11706, - "clock_position": null, - "time": "12:11", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 11775, - "clock_position": null, - "time": "12:15", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11920, - "clock_position": null, - "time": "12:25", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11920, - "clock_position": null, - "time": "12:25", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11920, - "clock_position": null, - "time": "12:25", - "killer": 1 - }, - { - "name": "Baneling", - "frame": 11920, - "clock_position": null, - "time": "12:25", - "killer": 2 - }, - { - "name": "Baneling", - "frame": 11921, - "clock_position": null, - "time": "12:25", - "killer": 2 - }, - { - "name": "Baneling", - "frame": 11921, - "clock_position": null, - "time": "12:25", - "killer": 2 - }, - { - "name": "Baneling", - "frame": 11921, - "clock_position": null, - "time": "12:25", - "killer": 2 - }, - { - "name": "Zergling", - "frame": 11940, - "clock_position": null, - "time": "12:26", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11990, - "clock_position": null, - "time": "12:29", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 11993, - "clock_position": null, - "time": "12:29", - "killer": 1 - }, - { - "name": "Overlord", - "frame": 12024, - "clock_position": null, - "time": "12:31", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12665, - "clock_position": null, - "time": "13:11", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12667, - "clock_position": null, - "time": "13:11", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12678, - "clock_position": null, - "time": "13:12", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12681, - "clock_position": null, - "time": "13:12", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12682, - "clock_position": null, - "time": "13:12", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12686, - "clock_position": null, - "time": "13:12", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12693, - "clock_position": null, - "time": "13:13", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12695, - "clock_position": null, - "time": "13:13", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12697, - "clock_position": null, - "time": "13:13", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12697, - "clock_position": null, - "time": "13:13", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12714, - "clock_position": null, - "time": "13:14", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12723, - "clock_position": null, - "time": "13:15", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12728, - "clock_position": null, - "time": "13:15", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12728, - "clock_position": null, - "time": "13:15", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12728, - "clock_position": null, - "time": "13:15", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 12765, - "clock_position": null, - "time": "13:17", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 12821, - "clock_position": null, - "time": "13:21", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12898, - "clock_position": null, - "time": "13:26", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12916, - "clock_position": null, - "time": "13:27", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12921, - "clock_position": null, - "time": "13:27", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12921, - "clock_position": null, - "time": "13:27", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12929, - "clock_position": null, - "time": "13:28", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 12934, - "clock_position": null, - "time": "13:28", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 13015, - "clock_position": null, - "time": "13:33", - "killer": 1 - }, - { - "name": "Queen", - "frame": 13060, - "clock_position": null, - "time": "13:36", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 13124, - "clock_position": null, - "time": "13:40", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 13124, - "clock_position": null, - "time": "13:40", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 13124, - "clock_position": null, - "time": "13:40", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 13126, - "clock_position": null, - "time": "13:40", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 13126, - "clock_position": null, - "time": "13:40", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 13156, - "clock_position": null, - "time": "13:42", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 13156, - "clock_position": null, - "time": "13:42", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 13167, - "clock_position": null, - "time": "13:42", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 13172, - "clock_position": null, - "time": "13:43", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 13187, - "clock_position": null, - "time": "13:44", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 13187, - "clock_position": null, - "time": "13:44", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 13187, - "clock_position": null, - "time": "13:44", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 13193, - "clock_position": null, - "time": "13:44", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 13197, - "clock_position": null, - "time": "13:44", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 13202, - "clock_position": null, - "time": "13:45", - "killer": 1 - }, - { - "name": "Corruptor", - "frame": 13333, - "clock_position": null, - "time": "13:53", - "killer": 1 - }, - { - "name": "SporeCrawler", - "frame": 13738, - "clock_position": null, - "time": "14:18", - "killer": 2 - }, - { - "name": "Drone", - "frame": 14412, - "clock_position": null, - "time": "15:00", - "killer": 1 - }, - { - "name": "Drone", - "frame": 14412, - "clock_position": null, - "time": "15:00", - "killer": 1 - }, - { - "name": "Drone", - "frame": 14418, - "clock_position": null, - "time": "15:01", - "killer": 1 - }, - { - "name": "Drone", - "frame": 14418, - "clock_position": null, - "time": "15:01", - "killer": 1 - }, - { - "name": "Drone", - "frame": 14418, - "clock_position": null, - "time": "15:01", - "killer": 1 - }, - { - "name": "Drone", - "frame": 14430, - "clock_position": null, - "time": "15:01", - "killer": 1 - }, - { - "name": "Drone", - "frame": 14437, - "clock_position": null, - "time": "15:02", - "killer": 1 - }, - { - "name": "Drone", - "frame": 14444, - "clock_position": null, - "time": "15:02", - "killer": 1 - }, - { - "name": "Drone", - "frame": 14451, - "clock_position": null, - "time": "15:03", - "killer": 1 - }, - { - "name": "Drone", - "frame": 14461, - "clock_position": null, - "time": "15:03", - "killer": null - }, - { - "name": "Drone", - "frame": 14471, - "clock_position": null, - "time": "15:04", - "killer": 1 - }, - { - "name": "Drone", - "frame": 14535, - "clock_position": null, - "time": "15:08", - "killer": null - }, - { - "name": "Drone", - "frame": 14559, - "clock_position": null, - "time": "15:09", - "killer": null - }, - { - "name": "Drone", - "frame": 14613, - "clock_position": null, - "time": "15:13", - "killer": null - }, - { - "name": "Drone", - "frame": 14751, - "clock_position": null, - "time": "15:21", - "killer": null - }, - { - "name": "Drone", - "frame": 14774, - "clock_position": null, - "time": "15:23", - "killer": null - }, - { - "name": "Zergling", - "frame": 15158, - "clock_position": null, - "time": "15:47", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15158, - "clock_position": null, - "time": "15:47", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15207, - "clock_position": null, - "time": "15:50", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15207, - "clock_position": null, - "time": "15:50", - "killer": 1 - }, - { - "name": "Overlord", - "frame": 15247, - "clock_position": null, - "time": "15:52", - "killer": 1 - }, - { - "name": "Drone", - "frame": 15431, - "clock_position": null, - "time": "16:04", - "killer": null - }, - { - "name": "Zergling", - "frame": 15693, - "clock_position": null, - "time": "16:20", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15732, - "clock_position": null, - "time": "16:23", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15746, - "clock_position": null, - "time": "16:24", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15748, - "clock_position": null, - "time": "16:24", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15771, - "clock_position": null, - "time": "16:25", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15784, - "clock_position": null, - "time": "16:26", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15798, - "clock_position": null, - "time": "16:27", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15803, - "clock_position": null, - "time": "16:27", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15817, - "clock_position": null, - "time": "16:28", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15839, - "clock_position": null, - "time": "16:29", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15840, - "clock_position": null, - "time": "16:30", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15857, - "clock_position": null, - "time": "16:31", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15870, - "clock_position": null, - "time": "16:31", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15879, - "clock_position": null, - "time": "16:32", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15881, - "clock_position": null, - "time": "16:32", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15883, - "clock_position": null, - "time": "16:32", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15886, - "clock_position": null, - "time": "16:32", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15896, - "clock_position": null, - "time": "16:33", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 15910, - "clock_position": null, - "time": "16:34", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 16082, - "clock_position": null, - "time": "16:45", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 16139, - "clock_position": null, - "time": "16:48", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 16229, - "clock_position": null, - "time": "16:54", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 16814, - "clock_position": null, - "time": "17:30", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 16885, - "clock_position": null, - "time": "17:35", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 16948, - "clock_position": null, - "time": "17:39", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 17051, - "clock_position": null, - "time": "17:45", - "killer": 1 - }, - { - "name": "Queen", - "frame": 17118, - "clock_position": null, - "time": "17:49", - "killer": 1 - }, - { - "name": "Overlord", - "frame": 17205, - "clock_position": null, - "time": "17:55", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 18638, - "clock_position": null, - "time": "19:24", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 18673, - "clock_position": null, - "time": "19:27", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 18707, - "clock_position": null, - "time": "19:29", - "killer": 1 - }, - { - "name": "CreepTumorBurrowed", - "frame": 18805, - "clock_position": null, - "time": "19:35", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19048, - "clock_position": null, - "time": "19:50", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19048, - "clock_position": null, - "time": "19:50", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19049, - "clock_position": null, - "time": "19:50", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19062, - "clock_position": null, - "time": "19:51", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19063, - "clock_position": null, - "time": "19:51", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19080, - "clock_position": null, - "time": "19:52", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19081, - "clock_position": null, - "time": "19:52", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19081, - "clock_position": null, - "time": "19:52", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19081, - "clock_position": null, - "time": "19:52", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19087, - "clock_position": null, - "time": "19:52", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19114, - "clock_position": null, - "time": "19:54", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19119, - "clock_position": null, - "time": "19:54", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19127, - "clock_position": null, - "time": "19:55", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19142, - "clock_position": null, - "time": "19:56", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19146, - "clock_position": null, - "time": "19:56", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19152, - "clock_position": null, - "time": "19:57", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19152, - "clock_position": null, - "time": "19:57", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19152, - "clock_position": null, - "time": "19:57", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19159, - "clock_position": null, - "time": "19:57", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19176, - "clock_position": null, - "time": "19:58", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19176, - "clock_position": null, - "time": "19:58", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19179, - "clock_position": null, - "time": "19:58", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19185, - "clock_position": null, - "time": "19:59", - "killer": 1 - }, - { - "name": "Corruptor", - "frame": 19185, - "clock_position": null, - "time": "19:59", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19191, - "clock_position": null, - "time": "19:59", - "killer": 1 - }, - { - "name": "Corruptor", - "frame": 19220, - "clock_position": null, - "time": "20:01", - "killer": 1 - }, - { - "name": "Corruptor", - "frame": 19221, - "clock_position": null, - "time": "20:01", - "killer": 1 - }, - { - "name": "Corruptor", - "frame": 19256, - "clock_position": null, - "time": "20:03", - "killer": 1 - }, - { - "name": "Ultralisk", - "frame": 19269, - "clock_position": null, - "time": "20:04", - "killer": 1 - }, - { - "name": "Corruptor", - "frame": 19283, - "clock_position": null, - "time": "20:05", - "killer": 1 - }, - { - "name": "Ultralisk", - "frame": 19356, - "clock_position": null, - "time": "20:09", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19601, - "clock_position": null, - "time": "20:25", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19601, - "clock_position": null, - "time": "20:25", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19602, - "clock_position": null, - "time": "20:25", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19602, - "clock_position": null, - "time": "20:25", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19602, - "clock_position": null, - "time": "20:25", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19607, - "clock_position": null, - "time": "20:25", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19633, - "clock_position": null, - "time": "20:27", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19633, - "clock_position": null, - "time": "20:27", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19633, - "clock_position": null, - "time": "20:27", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19641, - "clock_position": null, - "time": "20:27", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19729, - "clock_position": null, - "time": "20:33", - "killer": 1 - }, - { - "name": "Drone", - "frame": 19729, - "clock_position": null, - "time": "20:33", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 20007, - "clock_position": null, - "time": "20:50", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 20078, - "clock_position": null, - "time": "20:54", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 20094, - "clock_position": null, - "time": "20:55", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 20137, - "clock_position": null, - "time": "20:58", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 20154, - "clock_position": null, - "time": "20:59", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 20154, - "clock_position": null, - "time": "20:59", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 20176, - "clock_position": null, - "time": "21:01", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 20198, - "clock_position": null, - "time": "21:02", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 20220, - "clock_position": null, - "time": "21:03", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 20242, - "clock_position": null, - "time": "21:05", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 20265, - "clock_position": null, - "time": "21:06", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 20288, - "clock_position": null, - "time": "21:08", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 20324, - "clock_position": null, - "time": "21:10", - "killer": 1 - }, - { - "name": "Zergling", - "frame": 20358, - "clock_position": null, - "time": "21:12", - "killer": 1 - }, - { - "name": "Ultralisk", - "frame": 20560, - "clock_position": null, - "time": "21:25", - "killer": 1 - }, - { - "name": "Ultralisk", - "frame": 20642, - "clock_position": null, - "time": "21:30", - "killer": 1 - } - ], - "color": "0042FF", - "abilities": [ - { - "name": "SpawnLarva", - "frame": 4340, - "time": "4:31" - }, - { - "name": "SpawnLarva", - "frame": 5170, - "time": "5:23" - }, - { - "name": "SpawnLarva", - "frame": 5181, - "time": "5:23" - }, - { - "name": "SpawnLarva", - "frame": 5921, - "time": "6:10" - }, - { - "name": "SpawnLarva", - "frame": 5926, - "time": "6:10" - }, - { - "name": "SpawnLarva", - "frame": 6610, - "time": "6:53" - }, - { - "name": "SpawnLarva", - "frame": 6624, - "time": "6:54" - }, - { - "name": "SpawnLarva", - "frame": 7299, + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 6, + "frame": 22, + "is_chronoboosted": false, + "time": "0:01" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 7, + "frame": 293, + "is_chronoboosted": false, + "time": "0:18" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 8, + "frame": 564, + "is_chronoboosted": false, + "time": "0:35" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 9, + "frame": 835, + "is_chronoboosted": false, + "time": "0:52" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 9, + "frame": 928, + "is_chronoboosted": false, + "time": "0:58" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 10, + "frame": 1106, + "is_chronoboosted": false, + "time": "1:09" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 11, + "frame": 1408, + "is_chronoboosted": false, + "time": "1:28" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 12, + "frame": 1679, + "is_chronoboosted": false, + "time": "1:44" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 13, + "frame": 1950, + "is_chronoboosted": false, + "time": "2:01" + }, + { + "is_worker": false, + "name": "CommandCenter", + "clock_position": null, + "supply": 14, + "frame": 2177, + "is_chronoboosted": false, + "time": "2:16" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 14, + "frame": 2284, + "is_chronoboosted": false, + "time": "2:22" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 15, + "frame": 2555, + "is_chronoboosted": false, + "time": "2:39" + }, + { + "is_worker": false, + "name": "Barracks", + "clock_position": null, + "supply": 16, + "frame": 2647, + "is_chronoboosted": false, + "time": "2:45" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 16, + "frame": 2783, + "is_chronoboosted": false, + "time": "2:53" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 16, + "frame": 2860, + "is_chronoboosted": false, + "time": "2:58" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 17, + "frame": 3131, + "is_chronoboosted": false, + "time": "3:15" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 18, + "frame": 3406, + "is_chronoboosted": false, + "time": "3:32" + }, + { + "is_worker": false, + "name": "OrbitalCommand", + "clock_position": null, + "supply": 19, + "frame": 3729, + "is_chronoboosted": false, + "time": "3:53" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 19, + "frame": 3777, + "is_chronoboosted": false, + "time": "3:56" + }, + { + "is_worker": false, + "name": "OrbitalCommand", + "clock_position": null, + "supply": 19, + "frame": 3799, + "is_chronoboosted": false, + "time": "3:57" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 20, + "frame": 3900, + "is_chronoboosted": false, + "time": "4:03" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 20, + "frame": 4176, + "is_chronoboosted": false, + "time": "4:21" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 20, + "frame": 4315, + "is_chronoboosted": false, + "time": "4:29" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 22, + "frame": 4382, + "is_chronoboosted": false, + "time": "4:33" + }, + { + "is_worker": false, + "name": "Factory", + "clock_position": null, + "supply": 23, + "frame": 4515, + "is_chronoboosted": false, + "time": "4:42" + }, + { + "is_worker": false, + "name": "BarracksReactor", + "clock_position": null, + "supply": 23, + "frame": 4582, + "is_chronoboosted": false, + "time": "4:46" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 23, + "frame": 4586, + "is_chronoboosted": false, + "time": "4:46" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 24, + "frame": 4653, + "is_chronoboosted": false, + "time": "4:50" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 24, + "frame": 4672, + "is_chronoboosted": false, + "time": "4:52" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 25, + "frame": 4857, + "is_chronoboosted": false, + "time": "5:03" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 25, + "frame": 4924, + "is_chronoboosted": false, + "time": "5:07" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 27, + "frame": 5128, + "is_chronoboosted": false, + "time": "5:20" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 27, + "frame": 5190, + "is_chronoboosted": false, + "time": "5:24" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 27, + "frame": 5195, + "is_chronoboosted": false, + "time": "5:24" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 29, + "frame": 5399, + "is_chronoboosted": false, + "time": "5:37" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 30, + "frame": 5466, + "is_chronoboosted": false, + "time": "5:41" + }, + { + "is_worker": false, + "name": "Armory", + "clock_position": null, + "supply": 30, + "frame": 5488, + "is_chronoboosted": false, + "time": "5:43" + }, + { + "is_worker": false, + "name": "Starport", + "clock_position": null, + "supply": 30, + "frame": 5574, + "is_chronoboosted": false, + "time": "5:48" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 31, + "frame": 5670, + "is_chronoboosted": false, + "time": "5:54" + }, + { + "is_worker": false, + "name": "Hellion", + "clock_position": null, + "supply": 31, + "frame": 5701, + "is_chronoboosted": false, + "time": "5:56" + }, + { + "is_worker": false, + "name": "Hellion", + "clock_position": null, + "supply": 31, + "frame": 5704, + "is_chronoboosted": false, + "time": "5:56" + }, + { + "is_worker": false, + "name": "Bunker", + "clock_position": null, + "supply": 31, + "frame": 5717, + "is_chronoboosted": false, + "time": "5:57" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 31, + "frame": 5746, + "is_chronoboosted": false, + "time": "5:59" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 37, + "frame": 5834, + "is_chronoboosted": false, + "time": "6:04" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 38, + "frame": 5949, + "is_chronoboosted": false, + "time": "6:11" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 38, + "frame": 6008, + "is_chronoboosted": false, + "time": "6:15" + }, + { + "is_worker": false, + "name": "Factory", + "clock_position": null, + "supply": 38, + "frame": 6066, + "is_chronoboosted": false, + "time": "6:19" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 38, + "frame": 6070, + "is_chronoboosted": false, + "time": "6:19" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 40, + "frame": 6281, + "is_chronoboosted": false, + "time": "6:32" + }, + { + "is_worker": false, + "name": "Medivac", + "clock_position": null, + "supply": 40, + "frame": 6393, + "is_chronoboosted": false, + "time": "6:39" + }, + { + "is_worker": false, + "name": "Marine", + "clock_position": null, + "supply": 43, + "frame": 6441, + "is_chronoboosted": false, + "time": "6:42" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 43, + "frame": 6475, + "is_chronoboosted": false, + "time": "6:44" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 43, + "frame": 6492, + "is_chronoboosted": false, + "time": "6:45" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 43, + "frame": 6534, + "is_chronoboosted": false, + "time": "6:48" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 43, + "frame": 6537, + "is_chronoboosted": false, + "time": "6:48" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 43, + "frame": 6557, + "is_chronoboosted": false, + "time": "6:49" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 50, + "frame": 6725, + "is_chronoboosted": false, + "time": "7:00" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 50, + "frame": 6763, + "is_chronoboosted": false, + "time": "7:02" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 50, + "frame": 6828, + "is_chronoboosted": false, + "time": "7:06" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 52, + "frame": 7034, + "is_chronoboosted": false, + "time": "7:19" + }, + { + "is_worker": false, + "name": "FactoryTechLab", + "clock_position": null, + "supply": 53, + "frame": 7066, + "is_chronoboosted": false, + "time": "7:21" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 53, + "frame": 7099, + "is_chronoboosted": false, + "time": "7:23" + }, + { + "is_worker": false, + "name": "Medivac", + "clock_position": null, + "supply": 53, + "frame": 7164, + "is_chronoboosted": false, + "time": "7:27" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 56, + "frame": 7201, + "is_chronoboosted": false, + "time": "7:30" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 56, + "frame": 7204, + "is_chronoboosted": false, + "time": "7:30" + }, + { + "is_worker": false, + "name": "CommandCenter", + "clock_position": null, + "supply": 56, + "frame": 7277, + "is_chronoboosted": false, + "time": "7:34" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 56, + "frame": 7305, + "is_chronoboosted": false, "time": "7:36" - }, - { - "name": "SpawnLarva", - "frame": 7569, + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 56, + "frame": 7313, + "is_chronoboosted": false, + "time": "7:37" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 61, + "frame": 7370, + "is_chronoboosted": false, + "time": "7:40" + }, + { + "is_worker": false, + "name": "SiegeTank", + "clock_position": null, + "supply": 62, + "frame": 7575, + "is_chronoboosted": false, "time": "7:53" - }, - { - "name": "SpawnLarva", - "frame": 7851, + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 62, + "frame": 7576, + "is_chronoboosted": false, + "time": "7:53" + }, + { + "is_worker": false, + "name": "TerranVehicleWeaponsLevel1", + "clock_position": null, + "supply": 62, + "frame": 7631, + "is_chronoboosted": false, + "time": "7:56" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 62, + "frame": 7641, + "is_chronoboosted": false, + "time": "7:57" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 67, + "frame": 7686, + "is_chronoboosted": false, + "time": "8:00" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 67, + "frame": 7825, + "is_chronoboosted": false, + "time": "8:09" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 67, + "frame": 7828, + "is_chronoboosted": false, + "time": "8:09" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 61, + "frame": 7847, + "is_chronoboosted": false, "time": "8:10" - }, - { - "name": "SpawnLarva", - "frame": 8056, - "time": "8:23" - }, - { - "name": "SpawnLarva", - "frame": 8062, - "time": "8:23" - }, - { - "name": "SpawnLarva", - "frame": 8250, - "time": "8:35" - }, - { - "name": "SpawnLarva", - "frame": 8469, + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 61, + "frame": 7898, + "is_chronoboosted": false, + "time": "8:13" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 61, + "frame": 7912, + "is_chronoboosted": false, + "time": "8:14" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 61, + "frame": 7978, + "is_chronoboosted": false, + "time": "8:18" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 63, + "frame": 8066, + "is_chronoboosted": false, + "time": "8:24" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 63, + "frame": 8188, + "is_chronoboosted": false, + "time": "8:31" + }, + { + "is_worker": false, + "name": "SiegeTank", + "clock_position": null, + "supply": 63, + "frame": 8294, + "is_chronoboosted": false, + "time": "8:38" + }, + { + "is_worker": false, + "name": "VikingFighter", + "clock_position": null, + "supply": 67, + "frame": 8444, + "is_chronoboosted": false, + "time": "8:47" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 67, + "frame": 8453, + "is_chronoboosted": false, + "time": "8:48" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 67, + "frame": 8455, + "is_chronoboosted": false, + "time": "8:48" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 67, + "frame": 8478, + "is_chronoboosted": false, "time": "8:49" - }, - { - "name": "SpawnLarva", - "frame": 8807, - "time": "9:10" - }, - { - "name": "SpawnLarva", - "frame": 9038, - "time": "9:24" - }, - { - "name": "SpawnLarva", - "frame": 9220, - "time": "9:36" - }, - { - "name": "SpawnLarva", - "frame": 9783, - "time": "10:11" - }, - { - "name": "SpawnLarva", - "frame": 9808, - "time": "10:13" - }, - { - "name": "SpawnLarva", - "frame": 9997, - "time": "10:24" - }, - { - "name": "QueenTransfusion", - "frame": 10703, - "time": "11:08" - }, - { - "name": "QueenTransfusion", - "frame": 10768, - "time": "11:13" - }, - { - "name": "QueenTransfusion", - "frame": 10807, - "time": "11:15" - }, - { - "name": "QueenTransfusion", - "frame": 10830, + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 74, + "frame": 8481, + "is_chronoboosted": false, + "time": "8:50" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 74, + "frame": 8539, + "is_chronoboosted": false, + "time": "8:53" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 75, + "frame": 8749, + "is_chronoboosted": false, + "time": "9:06" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 75, + "frame": 8752, + "is_chronoboosted": false, + "time": "9:07" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 77, + "frame": 8995, + "is_chronoboosted": false, + "time": "9:22" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 77, + "frame": 8998, + "is_chronoboosted": false, + "time": "9:22" + }, + { + "is_worker": false, + "name": "OrbitalCommand", + "clock_position": null, + "supply": 77, + "frame": 9017, + "is_chronoboosted": false, + "time": "9:23" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 77, + "frame": 9020, + "is_chronoboosted": false, + "time": "9:23" + }, + { + "is_worker": false, + "name": "SiegeTank", + "clock_position": null, + "supply": 77, + "frame": 9116, + "is_chronoboosted": false, + "time": "9:29" + }, + { + "is_worker": false, + "name": "VikingFighter", + "clock_position": null, + "supply": 85, + "frame": 9173, + "is_chronoboosted": false, + "time": "9:33" + }, + { + "is_worker": false, + "name": "BarracksReactor", + "clock_position": null, + "supply": 85, + "frame": 9243, + "is_chronoboosted": false, + "time": "9:37" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 85, + "frame": 9274, + "is_chronoboosted": false, + "time": "9:39" + }, + { + "is_worker": false, + "name": "Factory", + "clock_position": null, + "supply": 88, + "frame": 9387, + "is_chronoboosted": false, + "time": "9:46" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 88, + "frame": 9417, + "is_chronoboosted": false, + "time": "9:48" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 88, + "frame": 9439, + "is_chronoboosted": false, + "time": "9:49" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 89, + "frame": 9513, + "is_chronoboosted": false, + "time": "9:54" + }, + { + "is_worker": false, + "name": "EngineeringBay", + "clock_position": null, + "supply": 89, + "frame": 9521, + "is_chronoboosted": false, + "time": "9:55" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 89, + "frame": 9521, + "is_chronoboosted": false, + "time": "9:55" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 89, + "frame": 9561, + "is_chronoboosted": false, + "time": "9:57" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 94, + "frame": 9607, + "is_chronoboosted": false, + "time": "10:00" + }, + { + "is_worker": false, + "name": "OrbitalCommand", + "clock_position": null, + "supply": 94, + "frame": 9751, + "is_chronoboosted": false, + "time": "10:09" + }, + { + "is_worker": false, + "name": "Factory", + "clock_position": null, + "supply": 94, + "frame": 9973, + "is_chronoboosted": false, + "time": "10:23" + }, + { + "is_worker": false, + "name": "Factory", + "clock_position": null, + "supply": 94, + "frame": 10020, + "is_chronoboosted": false, + "time": "10:26" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 94, + "frame": 10039, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 94, + "frame": 10042, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "SiegeTank", + "clock_position": null, + "supply": 94, + "frame": 10047, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 101, + "frame": 10116, + "is_chronoboosted": false, + "time": "10:32" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 101, + "frame": 10144, + "is_chronoboosted": false, + "time": "10:34" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 101, + "frame": 10165, + "is_chronoboosted": false, + "time": "10:35" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 101, + "frame": 10258, + "is_chronoboosted": false, + "time": "10:41" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 101, + "frame": 10261, + "is_chronoboosted": false, + "time": "10:41" + }, + { + "is_worker": false, + "name": "TerranVehicleAndShipArmorsLevel1", + "clock_position": null, + "supply": 101, + "frame": 10284, + "is_chronoboosted": false, + "time": "10:42" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 101, + "frame": 10357, + "is_chronoboosted": false, + "time": "10:47" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 100, + "frame": 10723, + "is_chronoboosted": false, + "time": "11:10" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 100, + "frame": 10725, + "is_chronoboosted": false, + "time": "11:10" + }, + { + "is_worker": false, + "name": "SiegeTank", + "clock_position": null, + "supply": 100, + "frame": 10766, + "is_chronoboosted": false, + "time": "11:12" + }, + { + "is_worker": false, + "name": "Medivac", + "clock_position": null, + "supply": 100, + "frame": 10821, + "is_chronoboosted": false, "time": "11:16" - }, - { - "name": "SpawnLarva", - "frame": 10939, - "time": "11:23" - }, - { - "name": "SpawnLarva", - "frame": 10950, - "time": "11:24" - }, - { - "name": "SpawnLarva", - "frame": 10962, + }, + { + "is_worker": false, + "name": "Medivac", + "clock_position": null, + "supply": 100, + "frame": 10824, + "is_chronoboosted": false, + "time": "11:16" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 95, + "frame": 10965, + "is_chronoboosted": false, "time": "11:25" - }, - { - "name": "SpawnLarva", - "frame": 11232, - "time": "11:42" - }, - { - "name": "SpawnLarva", - "frame": 11243, + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 95, + "frame": 10970, + "is_chronoboosted": false, + "time": "11:25" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 95, + "frame": 10973, + "is_chronoboosted": false, + "time": "11:25" + }, + { + "is_worker": false, + "name": "CommandCenter", + "clock_position": null, + "supply": 95, + "frame": 10981, + "is_chronoboosted": false, + "time": "11:26" + }, + { + "is_worker": false, + "name": "FactoryReactor", + "clock_position": null, + "supply": 95, + "frame": 11012, + "is_chronoboosted": false, + "time": "11:28" + }, + { + "is_worker": false, + "name": "FactoryTechLab", + "clock_position": null, + "supply": 95, + "frame": 11024, + "is_chronoboosted": false, + "time": "11:29" + }, + { + "is_worker": false, + "name": "FactoryTechLab", + "clock_position": null, + "supply": 95, + "frame": 11026, + "is_chronoboosted": false, + "time": "11:29" + }, + { + "is_worker": false, + "name": "CommandCenter", + "clock_position": null, + "supply": 94, + "frame": 11080, + "is_chronoboosted": false, + "time": "11:32" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 94, + "frame": 11236, + "is_chronoboosted": false, "time": "11:42" - }, - { - "name": "SpawnLarva", - "frame": 11634, - "time": "12:07" - }, + }, + { + "is_worker": false, + "name": "SiegeTank", + "clock_position": null, + "supply": 94, + "frame": 11297, + "is_chronoboosted": false, + "time": "11:46" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 95, + "frame": 11378, + "is_chronoboosted": false, + "time": "11:51" + }, + { + "is_worker": false, + "name": "Armory", + "clock_position": null, + "supply": 95, + "frame": 11407, + "is_chronoboosted": false, + "time": "11:52" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 90, + "frame": 11541, + "is_chronoboosted": false, + "time": "12:01" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 90, + "frame": 11544, + "is_chronoboosted": false, + "time": "12:01" + }, + { + "is_worker": false, + "name": "SiegeTank", + "clock_position": null, + "supply": 90, + "frame": 11558, + "is_chronoboosted": false, + "time": "12:02" + }, + { + "is_worker": false, + "name": "SiegeTank", + "clock_position": null, + "supply": 90, + "frame": 11558, + "is_chronoboosted": false, + "time": "12:02" + }, + { + "is_worker": false, + "name": "SiegeTank", + "clock_position": null, + "supply": 90, + "frame": 11561, + "is_chronoboosted": false, + "time": "12:02" + }, + { + "is_worker": false, + "name": "VikingFighter", + "clock_position": null, + "supply": 103, + "frame": 11763, + "is_chronoboosted": false, + "time": "12:15" + }, + { + "is_worker": false, + "name": "VikingFighter", + "clock_position": null, + "supply": 103, + "frame": 11766, + "is_chronoboosted": false, + "time": "12:15" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 104, + "frame": 12115, + "is_chronoboosted": false, + "time": "12:37" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 104, + "frame": 12118, + "is_chronoboosted": false, + "time": "12:37" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 104, + "frame": 12129, + "is_chronoboosted": false, + "time": "12:38" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 104, + "frame": 12132, + "is_chronoboosted": false, + "time": "12:38" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 112, + "frame": 12194, + "is_chronoboosted": false, + "time": "12:42" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 112, + "frame": 12194, + "is_chronoboosted": false, + "time": "12:42" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 112, + "frame": 12197, + "is_chronoboosted": false, + "time": "12:42" + }, + { + "is_worker": false, + "name": "Thor", + "clock_position": null, + "supply": 112, + "frame": 12277, + "is_chronoboosted": false, + "time": "12:47" + }, + { + "is_worker": false, + "name": "Starport", + "clock_position": null, + "supply": 112, + "frame": 12300, + "is_chronoboosted": false, + "time": "12:48" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 121, + "frame": 12465, + "is_chronoboosted": false, + "time": "12:59" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 121, + "frame": 12465, + "is_chronoboosted": false, + "time": "12:59" + }, + { + "is_worker": false, + "name": "VikingFighter", + "clock_position": null, + "supply": 123, + "frame": 12509, + "is_chronoboosted": false, + "time": "13:01" + }, + { + "is_worker": false, + "name": "VikingFighter", + "clock_position": null, + "supply": 123, + "frame": 12512, + "is_chronoboosted": false, + "time": "13:02" + }, + { + "is_worker": false, + "name": "TerranShipWeaponsLevel1", + "clock_position": null, + "supply": 123, + "frame": 12534, + "is_chronoboosted": false, + "time": "13:03" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 123, + "frame": 12568, + "is_chronoboosted": false, + "time": "13:05" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 128, + "frame": 12736, + "is_chronoboosted": false, + "time": "13:16" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 129, + "frame": 12939, + "is_chronoboosted": false, + "time": "13:28" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 129, + "frame": 13164, + "is_chronoboosted": false, + "time": "13:42" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 129, + "frame": 13167, + "is_chronoboosted": false, + "time": "13:42" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 129, + "frame": 13167, + "is_chronoboosted": false, + "time": "13:42" + }, + { + "is_worker": false, + "name": "VikingFighter", + "clock_position": null, + "supply": 129, + "frame": 13215, + "is_chronoboosted": false, + "time": "13:45" + }, + { + "is_worker": false, + "name": "VikingFighter", + "clock_position": null, + "supply": 129, + "frame": 13218, + "is_chronoboosted": false, + "time": "13:46" + }, + { + "is_worker": false, + "name": "Thor", + "clock_position": null, + "supply": 127, + "frame": 13367, + "is_chronoboosted": false, + "time": "13:55" + }, + { + "is_worker": false, + "name": "Thor", + "clock_position": null, + "supply": 127, + "frame": 13375, + "is_chronoboosted": false, + "time": "13:55" + }, + { + "is_worker": false, + "name": "VikingFighter", + "clock_position": null, + "supply": 137, + "frame": 13524, + "is_chronoboosted": false, + "time": "14:05" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 139, + "frame": 13758, + "is_chronoboosted": false, + "time": "14:19" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 139, + "frame": 13758, + "is_chronoboosted": false, + "time": "14:19" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 143, + "frame": 13761, + "is_chronoboosted": false, + "time": "14:20" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 143, + "frame": 13763, + "is_chronoboosted": false, + "time": "14:20" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 143, + "frame": 13871, + "is_chronoboosted": false, + "time": "14:26" + }, + { + "is_worker": false, + "name": "OrbitalCommand", + "clock_position": null, + "supply": 147, + "frame": 13928, + "is_chronoboosted": false, + "time": "14:30" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 147, + "frame": 13963, + "is_chronoboosted": false, + "time": "14:32" + }, + { + "is_worker": false, + "name": "TerranVehicleAndShipArmorsLevel2", + "clock_position": null, + "supply": 147, + "frame": 14011, + "is_chronoboosted": false, + "time": "14:35" + }, + { + "is_worker": false, + "name": "VikingFighter", + "clock_position": null, + "supply": 147, + "frame": 14195, + "is_chronoboosted": false, + "time": "14:47" + }, + { + "is_worker": false, + "name": "VikingFighter", + "clock_position": null, + "supply": 149, + "frame": 14309, + "is_chronoboosted": false, + "time": "14:54" + }, + { + "is_worker": false, + "name": "VikingFighter", + "clock_position": null, + "supply": 149, + "frame": 14309, + "is_chronoboosted": false, + "time": "14:54" + }, + { + "is_worker": false, + "name": "StarportReactor", + "clock_position": null, + "supply": 148, + "frame": 14906, + "is_chronoboosted": false, + "time": "15:31" + }, + { + "is_worker": false, + "name": "Starport", + "clock_position": null, + "supply": 148, + "frame": 14946, + "is_chronoboosted": false, + "time": "15:34" + }, + { + "is_worker": false, + "name": "Starport", + "clock_position": null, + "supply": 148, + "frame": 14973, + "is_chronoboosted": false, + "time": "15:35" + }, + { + "is_worker": false, + "name": "CommandCenter", + "clock_position": null, + "supply": 148, + "frame": 14982, + "is_chronoboosted": false, + "time": "15:36" + }, + { + "is_worker": false, + "name": "CommandCenter", + "clock_position": null, + "supply": 148, + "frame": 14987, + "is_chronoboosted": false, + "time": "15:36" + }, + { + "is_worker": false, + "name": "VikingFighter", + "clock_position": null, + "supply": 148, + "frame": 15057, + "is_chronoboosted": false, + "time": "15:41" + }, + { + "is_worker": false, + "name": "VikingFighter", + "clock_position": null, + "supply": 148, + "frame": 15060, + "is_chronoboosted": false, + "time": "15:41" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 152, + "frame": 15356, + "is_chronoboosted": false, + "time": "15:59" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 152, + "frame": 15394, + "is_chronoboosted": false, + "time": "16:02" + }, + { + "is_worker": false, + "name": "PlanetaryFortress", + "clock_position": null, + "supply": 152, + "frame": 15414, + "is_chronoboosted": false, + "time": "16:03" + }, + { + "is_worker": false, + "name": "Refinery", + "clock_position": null, + "supply": 136, + "frame": 15843, + "is_chronoboosted": false, + "time": "16:30" + }, + { + "is_worker": false, + "name": "Medivac", + "clock_position": null, + "supply": 136, + "frame": 15946, + "is_chronoboosted": false, + "time": "16:36" + }, + { + "is_worker": false, + "name": "Medivac", + "clock_position": null, + "supply": 136, + "frame": 15955, + "is_chronoboosted": false, + "time": "16:37" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 136, + "frame": 15972, + "is_chronoboosted": false, + "time": "16:38" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 136, + "frame": 15974, + "is_chronoboosted": false, + "time": "16:38" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 136, + "frame": 15977, + "is_chronoboosted": false, + "time": "16:38" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 136, + "frame": 15980, + "is_chronoboosted": false, + "time": "16:38" + }, + { + "is_worker": false, + "name": "Medivac", + "clock_position": null, + "supply": 136, + "frame": 15986, + "is_chronoboosted": false, + "time": "16:39" + }, + { + "is_worker": false, + "name": "Medivac", + "clock_position": null, + "supply": 136, + "frame": 15994, + "is_chronoboosted": false, + "time": "16:39" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 151, + "frame": 16112, + "is_chronoboosted": false, + "time": "16:47" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 151, + "frame": 16118, + "is_chronoboosted": false, + "time": "16:47" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 151, + "frame": 16118, + "is_chronoboosted": false, + "time": "16:47" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 151, + "frame": 16174, + "is_chronoboosted": false, + "time": "16:50" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 151, + "frame": 16222, + "is_chronoboosted": false, + "time": "16:53" + }, + { + "is_worker": false, + "name": "TerranShipWeaponsLevel2", + "clock_position": null, + "supply": 151, + "frame": 16315, + "is_chronoboosted": false, + "time": "16:59" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 152, + "frame": 16383, + "is_chronoboosted": false, + "time": "17:03" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 152, + "frame": 16389, + "is_chronoboosted": false, + "time": "17:04" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 152, + "frame": 16389, + "is_chronoboosted": false, + "time": "17:04" + }, + { + "is_worker": false, + "name": "VikingFighter", + "clock_position": null, + "supply": 155, + "frame": 16495, + "is_chronoboosted": false, + "time": "17:10" + }, + { + "is_worker": false, + "name": "VikingFighter", + "clock_position": null, + "supply": 155, + "frame": 16495, + "is_chronoboosted": false, + "time": "17:10" + }, + { + "is_worker": false, + "name": "OrbitalCommand", + "clock_position": null, + "supply": 159, + "frame": 16708, + "is_chronoboosted": false, + "time": "17:24" + }, + { + "is_worker": false, + "name": "OrbitalCommand", + "clock_position": null, + "supply": 159, + "frame": 16710, + "is_chronoboosted": false, + "time": "17:24" + }, + { + "is_worker": false, + "name": "StarportTechLab", + "clock_position": null, + "supply": 157, + "frame": 17280, + "is_chronoboosted": false, + "time": "18:00" + }, + { + "is_worker": false, + "name": "Thor", + "clock_position": null, + "supply": 157, + "frame": 17308, + "is_chronoboosted": false, + "time": "18:01" + }, + { + "is_worker": false, + "name": "Thor", + "clock_position": null, + "supply": 157, + "frame": 17313, + "is_chronoboosted": false, + "time": "18:02" + }, + { + "is_worker": false, + "name": "Thor", + "clock_position": null, + "supply": 157, + "frame": 17313, + "is_chronoboosted": false, + "time": "18:02" + }, + { + "is_worker": false, + "name": "TerranVehicleWeaponsLevel2", + "clock_position": null, + "supply": 157, + "frame": 17347, + "is_chronoboosted": false, + "time": "18:04" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 157, + "frame": 17406, + "is_chronoboosted": false, + "time": "18:07" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 157, + "frame": 17409, + "is_chronoboosted": false, + "time": "18:08" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 157, + "frame": 17412, + "is_chronoboosted": false, + "time": "18:08" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 157, + "frame": 17415, + "is_chronoboosted": false, + "time": "18:08" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 157, + "frame": 17420, + "is_chronoboosted": false, + "time": "18:08" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 157, + "frame": 17423, + "is_chronoboosted": false, + "time": "18:08" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 181, + "frame": 17615, + "is_chronoboosted": false, + "time": "18:20" + }, + { + "is_worker": false, + "name": "Barracks", + "clock_position": null, + "supply": 181, + "frame": 17711, + "is_chronoboosted": false, + "time": "18:26" + }, + { + "is_worker": false, + "name": "Barracks", + "clock_position": null, + "supply": 181, + "frame": 17733, + "is_chronoboosted": false, + "time": "18:28" + }, + { + "is_worker": false, + "name": "GhostAcademy", + "clock_position": null, + "supply": 181, + "frame": 17738, + "is_chronoboosted": false, + "time": "18:28" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 178, + "frame": 18079, + "is_chronoboosted": false, + "time": "18:49" + }, + { + "is_worker": false, + "name": "TerranBuildingArmor", + "clock_position": null, + "supply": 180, + "frame": 18188, + "is_chronoboosted": false, + "time": "18:56" + }, + { + "is_worker": false, + "name": "SupplyDepot", + "clock_position": null, + "supply": 180, + "frame": 18213, + "is_chronoboosted": false, + "time": "18:58" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 180, + "frame": 18216, + "is_chronoboosted": false, + "time": "18:58" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 180, + "frame": 18216, + "is_chronoboosted": false, + "time": "18:58" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 180, + "frame": 18217, + "is_chronoboosted": false, + "time": "18:58" + }, + { + "is_worker": false, + "name": "RavenCorvidReactor", + "clock_position": null, + "supply": 186, + "frame": 18374, + "is_chronoboosted": false, + "time": "19:08" + }, + { + "is_worker": false, + "name": "Raven", + "clock_position": null, + "supply": 186, + "frame": 18377, + "is_chronoboosted": false, + "time": "19:08" + }, + { + "is_worker": false, + "name": "StarportTechLab", + "clock_position": null, + "supply": 188, + "frame": 18454, + "is_chronoboosted": false, + "time": "19:13" + }, + { + "is_worker": false, + "name": "BarracksTechLab", + "clock_position": null, + "supply": 188, + "frame": 18664, + "is_chronoboosted": false, + "time": "19:26" + }, + { + "is_worker": false, + "name": "GhostMoebiusReactor", + "clock_position": null, + "supply": 188, + "frame": 18697, + "is_chronoboosted": false, + "time": "19:28" + }, + { + "is_worker": false, + "name": "BarracksTechLab", + "clock_position": null, + "supply": 188, + "frame": 18757, + "is_chronoboosted": false, + "time": "19:32" + }, + { + "is_worker": false, + "name": "Thor", + "clock_position": null, + "supply": 181, + "frame": 19150, + "is_chronoboosted": false, + "time": "19:56" + }, + { + "is_worker": false, + "name": "Thor", + "clock_position": null, + "supply": 181, + "frame": 19153, + "is_chronoboosted": false, + "time": "19:57" + }, + { + "is_worker": false, + "name": "Banshee", + "clock_position": null, + "supply": 148, + "frame": 19468, + "is_chronoboosted": false, + "time": "20:16" + }, + { + "is_worker": false, + "name": "Banshee", + "clock_position": null, + "supply": 148, + "frame": 19471, + "is_chronoboosted": false, + "time": "20:16" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 109, + "frame": 19696, + "is_chronoboosted": false, + "time": "20:31" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 109, + "frame": 19699, + "is_chronoboosted": false, + "time": "20:31" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 109, + "frame": 19704, + "is_chronoboosted": false, + "time": "20:31" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 109, + "frame": 19730, + "is_chronoboosted": false, + "time": "20:33" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 109, + "frame": 19733, + "is_chronoboosted": false, + "time": "20:33" + }, + { + "is_worker": true, + "name": "SCV", + "clock_position": null, + "supply": 109, + "frame": 19735, + "is_chronoboosted": false, + "time": "20:33" + }, + { + "is_worker": false, + "name": "Hellbat", + "clock_position": null, + "supply": 110, + "frame": 19974, + "is_chronoboosted": false, + "time": "20:48" + } + ], + "abilities": [ { - "name": "SpawnLarva", - "frame": 12048, - "time": "12:33" - }, + "frame": 4317, + "name": "CalldownMULE", + "time": "4:29" + }, { - "name": "SpawnLarva", - "frame": 12059, - "time": "12:33" - }, + "frame": 4388, + "name": "CalldownMULE", + "time": "4:34" + }, { - "name": "SpawnLarva", - "frame": 12453, - "time": "12:58" - }, + "frame": 5749, + "name": "CalldownMULE", + "time": "5:59" + }, { - "name": "SpawnLarva", - "frame": 12776, - "time": "13:18" - }, + "frame": 5794, + "name": "CalldownMULE", + "time": "6:02" + }, { - "name": "SpawnLarva", - "frame": 12787, - "time": "13:19" - }, + "frame": 7240, + "name": "CalldownMULE", + "time": "7:32" + }, { - "name": "QueenTransfusion", - "frame": 13021, - "time": "13:33" - }, + "frame": 7240, + "name": "CalldownMULE", + "time": "7:32" + }, { - "name": "SpawnLarva", - "frame": 13603, - "time": "14:10" - }, + "frame": 9060, + "name": "CalldownMULE", + "time": "9:26" + }, { - "name": "SpawnLarva", - "frame": 13763, - "time": "14:20" - }, + "frame": 9063, + "name": "CalldownMULE", + "time": "9:26" + }, { - "name": "SpawnLarva", - "frame": 14140, - "time": "14:43" - }, + "frame": 9069, + "name": "CalldownMULE", + "time": "9:26" + }, { - "name": "SpawnLarva", - "frame": 14289, - "time": "14:53" - }, + "frame": 9656, + "name": "ScannerSweep", + "time": "10:03" + }, { - "name": "SpawnLarva", - "frame": 14323, - "time": "14:55" - }, + "frame": 10925, + "name": "CalldownMULE", + "time": "11:22" + }, { - "name": "SpawnLarva", - "frame": 14717, - "time": "15:19" - }, + "frame": 10928, + "name": "CalldownMULE", + "time": "11:23" + }, { - "name": "QueenTransfusion", - "frame": 14981, - "time": "15:36" - }, + "frame": 10934, + "name": "CalldownMULE", + "time": "11:23" + }, { - "name": "SpawnLarva", - "frame": 14998, - "time": "15:37" - }, + "frame": 11581, + "name": "ScannerSweep", + "time": "12:03" + }, { - "name": "SpawnLarva", - "frame": 15041, - "time": "15:40" - }, + "frame": 11662, + "name": "ScannerSweep", + "time": "12:08" + }, { - "name": "SpawnLarva", - "frame": 15069, - "time": "15:41" - }, + "frame": 11730, + "name": "ScannerSweep", + "time": "12:13" + }, { - "name": "SpawnLarva", - "frame": 15086, - "time": "15:42" - }, + "frame": 12754, + "name": "ScannerSweep", + "time": "13:17" + }, { - "name": "SpawnLarva", - "frame": 15744, - "time": "16:24" - }, + "frame": 13800, + "name": "ScannerSweep", + "time": "14:22" + }, { - "name": "SpawnLarva", - "frame": 15794, - "time": "16:27" - }, + "frame": 13839, + "name": "ScannerSweep", + "time": "14:24" + }, { - "name": "SpawnLarva", - "frame": 15997, - "time": "16:39" - }, + "frame": 16233, + "name": "CalldownMULE", + "time": "16:54" + }, { - "name": "SpawnLarva", - "frame": 17043, - "time": "17:45" - }, + "frame": 16236, + "name": "CalldownMULE", + "time": "16:54" + }, { - "name": "SpawnLarva", - "frame": 17069, - "time": "17:46" - }, + "frame": 16239, + "name": "CalldownMULE", + "time": "16:54" + }, { - "name": "SpawnLarva", - "frame": 17249, - "time": "17:58" - }, + "frame": 16242, + "name": "CalldownMULE", + "time": "16:55" + }, { - "name": "QueenTransfusion", - "frame": 17553, - "time": "18:17" - }, + "frame": 16245, + "name": "CalldownMULE", + "time": "16:55" + }, { - "name": "SpawnLarva", - "frame": 18000, - "time": "18:45" - }, + "frame": 16247, + "name": "CalldownMULE", + "time": "16:55" + }, { - "name": "QueenTransfusion", - "frame": 19148, - "time": "19:56" - }, + "frame": 16408, + "name": "ScannerSweep", + "time": "17:05" + }, { - "name": "QueenTransfusion", - "frame": 19153, - "time": "19:57" - }, + "frame": 16661, + "name": "ScannerSweep", + "time": "17:21" + }, { - "name": "QueenTransfusion", - "frame": 19164, - "time": "19:57" - }, + "frame": 16765, + "name": "ScannerSweep", + "time": "17:27" + }, { - "name": "QueenTransfusion", - "frame": 19173, - "time": "19:58" - }, + "frame": 17856, + "name": "ScannerSweep", + "time": "18:36" + }, { - "name": "QueenTransfusion", - "frame": 19187, - "time": "19:59" - }, + "frame": 17899, + "name": "ScannerSweep", + "time": "18:38" + }, { - "name": "QueenTransfusion", - "frame": 19190, - "time": "19:59" - }, + "frame": 18152, + "name": "ExtraSupplies", + "time": "18:54" + }, { - "name": "QueenTransfusion", - "frame": 19195, - "time": "19:59" - }, + "frame": 18607, + "name": "ScannerSweep", + "time": "19:22" + }, { - "name": "QueenTransfusion", - "frame": 19198, - "time": "19:59" - }, + "frame": 18810, + "name": "ScannerSweep", + "time": "19:35" + }, { - "name": "QueenTransfusion", - "frame": 19201, - "time": "20:00" - }, + "frame": 18939, + "name": "ScannerSweep", + "time": "19:43" + }, { - "name": "QueenTransfusion", - "frame": 19207, - "time": "20:00" - }, + "frame": 20517, + "name": "ScannerSweep", + "time": "21:22" + } + ], + "name": "EGThorZaINRC", + "is_human": true, + "level": 53, + "handicap": 100, + "region": "eu", + "is_winner": false, + "pick_race": "Terran", + "clock_position": null, + "commander": null, + "color": "B4141E", + "unitsLost": [ { - "name": "QueenTransfusion", - "frame": 19209, - "time": "20:00" - }, + "frame": 7698, + "killer": 2, + "name": "Hellion", + "clock_position": null, + "time": "8:01" + }, + { + "frame": 7719, + "killer": 2, + "name": "Medivac", + "clock_position": null, + "time": "8:02" + }, + { + "frame": 7719, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "8:02" + }, + { + "frame": 7737, + "killer": 2, + "name": "Hellion", + "clock_position": null, + "time": "8:03" + }, + { + "frame": 7813, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "8:08" + }, + { + "frame": 10476, + "killer": 2, + "name": "Medivac", + "clock_position": null, + "time": "10:54" + }, + { + "frame": 10476, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "10:54" + }, + { + "frame": 10725, + "killer": 2, + "name": "SiegeTankSieged", + "clock_position": null, + "time": "11:10" + }, + { + "frame": 10735, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "11:10" + }, + { + "frame": 10748, + "killer": 2, + "name": "SiegeTankSieged", + "clock_position": null, + "time": "11:11" + }, + { + "frame": 10776, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "11:13" + }, { - "name": "QueenTransfusion", - "frame": 19215, - "time": "20:00" - }, + "frame": 10805, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "11:15" + }, { - "name": "QueenTransfusion", - "frame": 19252, + "frame": 10826, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "11:16" + }, + { + "frame": 10873, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "11:19" + }, + { + "frame": 10889, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "11:20" + }, + { + "frame": 10911, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "11:21" + }, + { + "frame": 11469, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "11:56" + }, + { + "frame": 11471, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "11:56" + }, + { + "frame": 11505, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "11:59" + }, + { + "frame": 11940, + "killer": 1, + "name": "SiegeTankSieged", + "clock_position": null, + "time": "12:26" + }, + { + "frame": 13114, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "13:39" + }, + { + "frame": 13138, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "13:41" + }, + { + "frame": 13143, + "killer": 2, + "name": "SiegeTank", + "clock_position": null, + "time": "13:41" + }, + { + "frame": 13159, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "13:42" + }, + { + "frame": 13191, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "13:44" + }, + { + "frame": 13251, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "13:48" + }, + { + "frame": 13269, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "13:49" + }, + { + "frame": 13275, + "killer": 2, + "name": "Marine", + "clock_position": null, + "time": "13:49" + }, + { + "frame": 13438, + "killer": 2, + "name": "Viking", + "clock_position": null, + "time": "13:59" + }, + { + "frame": 14715, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "15:19" + }, + { + "frame": 14720, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "15:20" + }, + { + "frame": 14746, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "15:21" + }, + { + "frame": 14751, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "15:21" + }, + { + "frame": 14757, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "15:22" + }, + { + "frame": 14872, + "killer": 1, + "name": "Refinery", + "clock_position": null, + "time": "15:29" + }, + { + "frame": 15028, + "killer": 2, + "name": "Refinery", + "clock_position": null, + "time": "15:39" + }, + { + "frame": 15463, + "killer": 2, + "name": "Medivac", + "clock_position": null, + "time": "16:06" + }, + { + "frame": 15463, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "16:06" + }, + { + "frame": 15463, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "16:06" + }, + { + "frame": 15562, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "16:12" + }, + { + "frame": 15581, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "16:13" + }, + { + "frame": 15583, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "16:13" + }, + { + "frame": 15586, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "16:14" + }, + { + "frame": 15589, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "16:14" + }, + { + "frame": 15607, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "16:15" + }, + { + "frame": 15620, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "16:16" + }, + { + "frame": 15622, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "16:16" + }, + { + "frame": 15625, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "16:16" + }, + { + "frame": 15634, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "16:17" + }, + { + "frame": 15766, + "killer": 2, + "name": "Refinery", + "clock_position": null, + "time": "16:25" + }, + { + "frame": 15921, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "16:35" + }, + { + "frame": 16076, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "16:44" + }, + { + "frame": 16102, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "16:46" + }, + { + "frame": 16116, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "16:47" + }, + { + "frame": 16225, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "16:54" + }, + { + "frame": 16969, + "killer": 2, + "name": "Medivac", + "clock_position": null, + "time": "17:40" + }, + { + "frame": 17614, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "18:20" + }, + { + "frame": 17706, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "18:26" + }, + { + "frame": 18868, + "killer": 2, + "name": "SiegeTank", + "clock_position": null, + "time": "19:39" + }, + { + "frame": 19003, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "19:47" + }, + { + "frame": 19037, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "19:49" + }, + { + "frame": 19076, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "19:52" + }, + { + "frame": 19096, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "19:53" + }, + { + "frame": 19187, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "19:59" + }, + { + "frame": 19221, + "killer": 2, + "name": "Thor", + "clock_position": null, + "time": "20:01" + }, + { + "frame": 19224, + "killer": 2, + "name": "SiegeTank", + "clock_position": null, + "time": "20:01" + }, + { + "frame": 19225, + "killer": 2, + "name": "Viking", + "clock_position": null, + "time": "20:01" + }, + { + "frame": 19232, + "killer": 2, + "name": "Medivac", + "clock_position": null, + "time": "20:02" + }, + { + "frame": 19250, + "killer": 2, + "name": "Thor", + "clock_position": null, "time": "20:03" - }, + }, { - "name": "QueenTransfusion", - "frame": 19257, + "frame": 19259, + "killer": 2, + "name": "Thor", + "clock_position": null, "time": "20:03" - }, + }, { - "name": "QueenTransfusion", - "frame": 19313, + "frame": 19259, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "20:03" + }, + { + "frame": 19281, + "killer": 2, + "name": "Thor", + "clock_position": null, + "time": "20:05" + }, + { + "frame": 19305, + "killer": 2, + "name": "Thor", + "clock_position": null, + "time": "20:06" + }, + { + "frame": 19313, + "killer": 2, + "name": "Hellbat", + "clock_position": null, "time": "20:07" - }, + }, { - "name": "QueenTransfusion", - "frame": 20020, + "frame": 19319, + "killer": 2, + "name": "Viking", + "clock_position": null, + "time": "20:07" + }, + { + "frame": 19334, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "20:08" + }, + { + "frame": 19363, + "killer": 2, + "name": "SiegeTank", + "clock_position": null, + "time": "20:10" + }, + { + "frame": 19400, + "killer": 2, + "name": "Viking", + "clock_position": null, + "time": "20:12" + }, + { + "frame": 19440, + "killer": 2, + "name": "Thor", + "clock_position": null, + "time": "20:15" + }, + { + "frame": 19469, + "killer": 2, + "name": "Bunker", + "clock_position": null, + "time": "20:16" + }, + { + "frame": 19488, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:18" + }, + { + "frame": 19494, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:18" + }, + { + "frame": 19504, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:19" + }, + { + "frame": 19524, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:20" + }, + { + "frame": 19527, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:20" + }, + { + "frame": 19538, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:21" + }, + { + "frame": 19540, + "killer": 2, + "name": "SupplyDepotLowered", + "clock_position": null, + "time": "20:21" + }, + { + "frame": 19543, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:21" + }, + { + "frame": 19543, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:21" + }, + { + "frame": 19544, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:21" + }, + { + "frame": 19548, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:21" + }, + { + "frame": 19554, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:22" + }, + { + "frame": 19565, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:22" + }, + { + "frame": 19568, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:23" + }, + { + "frame": 19577, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:23" + }, + { + "frame": 19577, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:23" + }, + { + "frame": 19583, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:23" + }, + { + "frame": 19584, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:24" + }, + { + "frame": 19584, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:24" + }, + { + "frame": 19587, + "killer": 2, + "name": "Medivac", + "clock_position": null, + "time": "20:24" + }, + { + "frame": 19591, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:24" + }, + { + "frame": 19601, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:25" + }, + { + "frame": 19610, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:25" + }, + { + "frame": 19617, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:26" + }, + { + "frame": 19622, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:26" + }, + { + "frame": 19626, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:26" + }, + { + "frame": 19634, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:27" + }, + { + "frame": 19640, + "killer": 2, + "name": "SupplyDepotLowered", + "clock_position": null, + "time": "20:27" + }, + { + "frame": 19644, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "20:27" + }, + { + "frame": 19651, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:28" + }, + { + "frame": 19652, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:28" + }, + { + "frame": 19664, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:29" + }, + { + "frame": 19664, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:29" + }, + { + "frame": 19676, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:29" + }, + { + "frame": 19684, + "killer": 2, + "name": "Refinery", + "clock_position": null, + "time": "20:30" + }, + { + "frame": 19694, + "killer": 2, + "name": "SupplyDepotLowered", + "clock_position": null, + "time": "20:30" + }, + { + "frame": 19698, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:31" + }, + { + "frame": 19701, + "killer": 2, + "name": "SiegeTank", + "clock_position": null, + "time": "20:31" + }, + { + "frame": 19780, + "killer": 2, + "name": "Medivac", + "clock_position": null, + "time": "20:36" + }, + { + "frame": 19806, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:37" + }, + { + "frame": 19807, + "killer": 2, + "name": "SupplyDepotLowered", + "clock_position": null, + "time": "20:37" + }, + { + "frame": 19811, + "killer": 2, + "name": "Refinery", + "clock_position": null, + "time": "20:38" + }, + { + "frame": 19822, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "20:38" + }, + { + "frame": 19833, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:39" + }, + { + "frame": 19845, + "killer": 2, + "name": "BarracksTechLab", + "clock_position": null, + "time": "20:40" + }, + { + "frame": 19845, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:40" + }, + { + "frame": 19882, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:42" + }, + { + "frame": 19898, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:43" + }, + { + "frame": 19909, + "killer": 2, + "name": "FactoryReactor", + "clock_position": null, + "time": "20:44" + }, + { + "frame": 19918, + "killer": 2, + "name": "Refinery", + "clock_position": null, + "time": "20:44" + }, + { + "frame": 19925, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:45" + }, + { + "frame": 19926, + "killer": 2, + "name": "SupplyDepotLowered", + "clock_position": null, + "time": "20:45" + }, + { + "frame": 19928, + "killer": 2, + "name": "SupplyDepotLowered", + "clock_position": null, + "time": "20:45" + }, + { + "frame": 19935, + "killer": 2, + "name": "BarracksTechLab", + "clock_position": null, + "time": "20:45" + }, + { + "frame": 19937, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:46" + }, + { + "frame": 19940, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:46" + }, + { + "frame": 19967, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:47" + }, + { + "frame": 19991, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:49" + }, + { + "frame": 20013, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:50" + }, + { + "frame": 20021, + "killer": 2, + "name": "SCV", + "clock_position": null, "time": "20:51" - }, - { - "name": "QueenTransfusion", - "frame": 20360, - "time": "21:12" - }, - { - "name": "QueenTransfusion", - "frame": 20498, - "time": "21:21" - }, - { - "name": "QueenTransfusion", - "frame": 20503, - "time": "21:21" - }, - { - "name": "QueenTransfusion", - "frame": 20506, - "time": "21:21" - }, - { - "name": "QueenTransfusion", - "frame": 20509, - "time": "21:21" - }, - { - "name": "QueenTransfusion", - "frame": 20515, - "time": "21:22" - }, - { - "name": "QueenTransfusion", - "frame": 20540, - "time": "21:23" - }, - { - "name": "QueenTransfusion", - "frame": 20543, - "time": "21:23" - }, - { - "name": "QueenTransfusion", - "frame": 20546, - "time": "21:24" - }, - { - "name": "QueenTransfusion", - "frame": 20551, - "time": "21:24" - }, - { - "name": "QueenTransfusion", - "frame": 20557, + }, + { + "frame": 20037, + "killer": 2, + "name": "Medivac", + "clock_position": null, + "time": "20:52" + }, + { + "frame": 20042, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:52" + }, + { + "frame": 20044, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:52" + }, + { + "frame": 20048, + "killer": 2, + "name": "SupplyDepotLowered", + "clock_position": null, + "time": "20:53" + }, + { + "frame": 20073, + "killer": 2, + "name": "Factory", + "clock_position": null, + "time": "20:54" + }, + { + "frame": 20075, + "killer": 2, + "name": "SupplyDepot", + "clock_position": null, + "time": "20:54" + }, + { + "frame": 20118, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "20:57" + }, + { + "frame": 20119, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "20:57" + }, + { + "frame": 20148, + "killer": 1, + "name": "SupplyDepotLowered", + "clock_position": null, + "time": "20:59" + }, + { + "frame": 20152, + "killer": 2, + "name": "SupplyDepotLowered", + "clock_position": null, + "time": "20:59" + }, + { + "frame": 20174, + "killer": 2, + "name": "VikingAssault", + "clock_position": null, + "time": "21:00" + }, + { + "frame": 20198, + "killer": 2, + "name": "SupplyDepotLowered", + "clock_position": null, + "time": "21:02" + }, + { + "frame": 20241, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "21:05" + }, + { + "frame": 20251, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "21:05" + }, + { + "frame": 20255, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "21:05" + }, + { + "frame": 20259, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "21:06" + }, + { + "frame": 20266, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "21:06" + }, + { + "frame": 20269, + "killer": 2, + "name": "SCV", + "clock_position": null, + "time": "21:06" + }, + { + "frame": 20272, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "21:07" + }, + { + "frame": 20278, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "21:07" + }, + { + "frame": 20326, + "killer": 2, + "name": "SupplyDepotLowered", + "clock_position": null, + "time": "21:10" + }, + { + "frame": 20340, + "killer": 2, + "name": "Hellbat", + "clock_position": null, + "time": "21:11" + }, + { + "frame": 20416, + "killer": 2, + "name": "VikingAssault", + "clock_position": null, + "time": "21:16" + }, + { + "frame": 20420, + "killer": 2, + "name": "Starport", + "clock_position": null, + "time": "21:16" + }, + { + "frame": 20432, + "killer": 2, + "name": "VikingAssault", + "clock_position": null, + "time": "21:17" + }, + { + "frame": 20443, + "killer": 2, + "name": "Viking", + "clock_position": null, + "time": "21:17" + }, + { + "frame": 20454, + "killer": 2, + "name": "Barracks", + "clock_position": null, + "time": "21:18" + }, + { + "frame": 20547, + "killer": 2, + "name": "Factory", + "clock_position": null, "time": "21:24" - }, - { - "name": "QueenTransfusion", - "frame": 20560, - "time": "21:25" - }, - { - "name": "QueenTransfusion", - "frame": 20562, - "time": "21:25" - }, - { - "name": "QueenTransfusion", - "frame": 20571, - "time": "21:25" - }, - { - "name": "QueenTransfusion", - "frame": 20577, - "time": "21:26" } - ], - "result": "Win", - "is_winner": true, - "region": "eu", - "level": 37, - "pick_race": "Zerg", + ], + "race": "Terran", + "result": "Loss", + "team": 1, + "uid": 463666 + }, + "2": { "supply": [ [ - 0, + 0, 6 - ], + ], [ - 1, + 1, 6 - ], + ], [ - 160, + 160, 7 - ], + ], [ - 320, + 320, 8 - ], + ], [ - 480, + 480, 8 - ], + ], [ - 640, + 640, 9 - ], + ], [ - 800, + 800, 9 - ], + ], [ - 960, + 960, 10 - ], + ], [ - 1120, + 1120, 10 - ], + ], [ - 1280, + 1280, 12 - ], + ], [ - 1440, + 1440, 13 - ], + ], [ - 1600, + 1600, 14 - ], + ], [ - 1760, + 1760, 15 - ], + ], [ - 1920, + 1920, 15 - ], + ], [ - 2080, + 2080, 14 - ], + ], [ - 2240, + 2240, 15 - ], + ], [ - 2400, + 2400, 15 - ], + ], [ - 2560, + 2560, 15 - ], + ], [ - 2720, + 2720, 16 - ], + ], [ - 2880, + 2880, 17 - ], + ], [ - 3040, + 3040, 17 - ], + ], [ - 3200, + 3200, 17 - ], + ], [ - 3360, + 3360, 18 - ], + ], [ - 3520, + 3520, 19 - ], + ], [ - 3680, + 3680, 22 - ], + ], [ - 3840, + 3840, 24 - ], + ], [ - 4000, + 4000, 26 - ], + ], [ - 4160, + 4160, 26 - ], + ], [ - 4320, + 4320, 27 - ], + ], [ - 4480, + 4480, 31 - ], + ], [ - 4640, + 4640, 35 - ], + ], [ - 4800, + 4800, 35 - ], + ], [ - 4960, + 4960, 35 - ], + ], [ - 5120, + 5120, 37 - ], + ], [ - 5280, + 5280, 40 - ], + ], [ - 5440, + 5440, 41 - ], + ], [ - 5600, + 5600, 40 - ], + ], [ - 5760, + 5760, 43 - ], + ], [ - 5920, + 5920, 44 - ], + ], [ - 6080, + 6080, 48 - ], + ], [ - 6240, + 6240, 49 - ], + ], [ - 6400, + 6400, 51 - ], + ], [ - 6560, + 6560, 49 - ], + ], [ - 6720, + 6720, 52 - ], + ], [ - 6880, + 6880, 54 - ], + ], [ - 7040, + 7040, 58 - ], + ], [ - 7200, + 7200, 58 - ], + ], [ - 7360, + 7360, 58 - ], + ], [ - 7520, + 7520, 62 - ], + ], [ - 7680, + 7680, 62 - ], + ], [ - 7840, + 7840, 63 - ], + ], [ - 8000, + 8000, 68 - ], + ], [ - 8160, + 8160, 71 - ], + ], [ - 8320, + 8320, 69 - ], + ], [ - 8480, + 8480, 71 - ], + ], [ - 8640, + 8640, 74 - ], + ], [ - 8800, + 8800, 75 - ], + ], [ - 8960, + 8960, 77 - ], + ], [ - 9120, + 9120, 80 - ], + ], [ - 9280, + 9280, 79 - ], + ], [ - 9440, + 9440, 83 - ], + ], [ - 9600, + 9600, 83 - ], + ], [ - 9760, + 9760, 89 - ], + ], [ - 9920, + 9920, 90 - ], + ], [ - 10080, + 10080, 93 - ], + ], [ - 10240, + 10240, 96 - ], + ], [ - 10400, + 10400, 95 - ], + ], [ - 10560, + 10560, 99 - ], + ], [ - 10720, + 10720, 84 - ], + ], [ - 10880, + 10880, 82 - ], + ], [ - 11040, + 11040, 85 - ], + ], [ - 11200, + 11200, 89 - ], + ], [ - 11360, + 11360, 90 - ], + ], [ - 11520, + 11520, 82 - ], + ], [ - 11680, + 11680, 90 - ], + ], [ - 11840, + 11840, 93 - ], + ], [ - 12000, + 12000, 95 - ], + ], [ - 12160, + 12160, 102 - ], + ], [ - 12320, + 12320, 104 - ], + ], [ - 12480, + 12480, 109 - ], + ], [ - 12640, + 12640, 113 - ], + ], [ - 12800, + 12800, 109 - ], + ], [ - 12960, + 12960, 112 - ], + ], [ - 13120, + 13120, 115 - ], + ], [ - 13280, + 13280, 111 - ], + ], [ - 13440, + 13440, 115 - ], + ], [ - 13600, + 13600, 116 - ], + ], [ - 13760, + 13760, 113 - ], + ], [ - 13920, + 13920, 114 - ], + ], [ - 14080, + 14080, 118 - ], + ], [ - 14240, + 14240, 125 - ], + ], [ - 14400, + 14400, 124 - ], + ], [ - 14560, + 14560, 114 - ], + ], [ - 14720, + 14720, 116 - ], + ], [ - 14880, + 14880, 120 - ], + ], [ - 15040, + 15040, 121 - ], + ], [ - 15200, + 15200, 120 - ], + ], [ - 15360, + 15360, 119 - ], + ], [ - 15520, + 15520, 131 - ], + ], [ - 15680, + 15680, 131 - ], + ], [ - 15840, + 15840, 132 - ], + ], [ - 16000, + 16000, 133 - ], + ], [ - 16160, + 16160, 138 - ], + ], [ - 16320, + 16320, 144 - ], + ], [ - 16480, + 16480, 149 - ], + ], [ - 16640, + 16640, 155 - ], + ], [ - 16800, + 16800, 161 - ], + ], [ - 16960, + 16960, 161 - ], + ], [ - 17120, + 17120, 159 - ], + ], [ - 17280, + 17280, 165 - ], + ], [ - 17440, + 17440, 165 - ], + ], [ - 17600, + 17600, 171 - ], + ], [ - 17760, + 17760, 177 - ], + ], [ - 17920, + 17920, 177 - ], + ], [ - 18080, + 18080, 183 - ], + ], [ - 18240, + 18240, 189 - ], + ], [ - 18400, + 18400, 189 - ], + ], [ - 18560, + 18560, 200 - ], + ], [ - 18720, + 18720, 200 - ], + ], [ - 18880, + 18880, 200 - ], + ], [ - 19040, + 19040, 200 - ], + ], [ - 19200, + 19200, 174 - ], + ], [ - 19360, + 19360, 172 - ], + ], [ - 19520, + 19520, 172 - ], + ], [ - 19680, + 19680, 168 - ], + ], [ - 19840, + 19840, 166 - ], + ], [ - 20000, + 20000, 166 - ], + ], [ - 20160, + 20160, 163 - ], + ], [ - 20320, + 20320, 160 - ], + ], [ - 20480, + 20480, 159 - ], + ], [ - 20640, + 20640, 153 - ], + ], [ - 20644, + 20644, 147 ] - ], - "name": "LiquidTLO", - "commander": null, + ], + "league": 7, "buildOrder": [ { - "name": "Drone", - "is_worker": true, - "frame": 19, - "clock_position": null, - "time": "0:01", - "is_chronoboosted": false, - "supply": 6 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 264, - "clock_position": null, - "time": "0:16", - "is_chronoboosted": false, - "supply": 7 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 483, - "clock_position": null, - "time": "0:30", - "is_chronoboosted": false, - "supply": 8 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 745, - "clock_position": null, - "time": "0:46", - "is_chronoboosted": false, - "supply": 9 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 894, - "clock_position": null, - "time": "0:55", - "is_chronoboosted": false, - "supply": 9 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 1175, - "clock_position": null, - "time": "1:13", - "is_chronoboosted": false, - "supply": 10 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 1203, - "clock_position": null, - "time": "1:15", - "is_chronoboosted": false, - "supply": 10 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 1282, - "clock_position": null, - "time": "1:20", - "is_chronoboosted": false, - "supply": 12 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 1474, - "clock_position": null, - "time": "1:32", - "is_chronoboosted": false, - "supply": 13 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 1713, - "clock_position": null, - "time": "1:47", - "is_chronoboosted": false, - "supply": 14 - }, - { - "name": "Hatchery", - "is_worker": false, - "frame": 2055, - "clock_position": null, - "time": "2:08", - "is_chronoboosted": false, - "supply": 15 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 2132, - "clock_position": null, - "time": "2:13", - "is_chronoboosted": false, - "supply": 14 - }, - { - "name": "SpawningPool", - "is_worker": false, - "frame": 2473, - "clock_position": null, - "time": "2:34", - "is_chronoboosted": false, - "supply": 15 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 2517, - "clock_position": null, - "time": "2:37", - "is_chronoboosted": false, - "supply": 15 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 2663, - "clock_position": null, - "time": "2:46", - "is_chronoboosted": false, - "supply": 15 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 2728, - "clock_position": null, - "time": "2:50", - "is_chronoboosted": false, - "supply": 16 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 2919, - "clock_position": null, - "time": "3:02", - "is_chronoboosted": false, - "supply": 17 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 3215, - "clock_position": null, - "time": "3:20", - "is_chronoboosted": false, - "supply": 17 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 3468, - "clock_position": null, - "time": "3:36", - "is_chronoboosted": false, - "supply": 18 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 3524, - "clock_position": null, - "time": "3:40", - "is_chronoboosted": false, - "supply": 19 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 3670, - "clock_position": null, - "time": "3:49", - "is_chronoboosted": false, - "supply": 19 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 3670, - "clock_position": null, - "time": "3:49", - "is_chronoboosted": false, - "supply": 19 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 3687, - "clock_position": null, - "time": "3:50", - "is_chronoboosted": false, - "supply": 22 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 3727, - "clock_position": null, - "time": "3:52", - "is_chronoboosted": false, - "supply": 22 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 3890, - "clock_position": null, - "time": "4:03", - "is_chronoboosted": false, - "supply": 24 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 3912, - "clock_position": null, - "time": "4:04", - "is_chronoboosted": false, - "supply": 24 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 4129, - "clock_position": null, - "time": "4:18", - "is_chronoboosted": false, - "supply": 26 - }, - { - "name": "Extractor", - "is_worker": false, - "frame": 4140, - "clock_position": null, - "time": "4:18", - "is_chronoboosted": false, - "supply": 26 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 4222, - "clock_position": null, - "time": "4:23", - "is_chronoboosted": false, - "supply": 26 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 4323, - "clock_position": null, - "time": "4:30", - "is_chronoboosted": false, - "supply": 27 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 4377, - "clock_position": null, - "time": "4:33", - "is_chronoboosted": false, - "supply": 27 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 4407, - "clock_position": null, - "time": "4:35", - "is_chronoboosted": false, - "supply": 27 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 4486, - "clock_position": null, - "time": "4:40", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 4618, - "clock_position": null, - "time": "4:48", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 4627, - "clock_position": null, - "time": "4:49", - "is_chronoboosted": false, - "supply": 31 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 4835, - "clock_position": null, - "time": "5:02", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 4872, - "clock_position": null, - "time": "5:04", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Extractor", - "is_worker": false, - "frame": 4950, - "clock_position": null, - "time": "5:09", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 5069, - "clock_position": null, - "time": "5:16", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 5083, - "clock_position": null, - "time": "5:17", - "is_chronoboosted": false, - "supply": 35 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 5243, - "clock_position": null, - "time": "5:27", - "is_chronoboosted": false, - "supply": 37 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 5246, - "clock_position": null, - "time": "5:27", - "is_chronoboosted": false, - "supply": 37 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 5268, - "clock_position": null, - "time": "5:29", - "is_chronoboosted": false, - "supply": 37 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 5291, - "clock_position": null, - "time": "5:30", - "is_chronoboosted": false, - "supply": 40 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 5412, - "clock_position": null, - "time": "5:38", - "is_chronoboosted": false, - "supply": 40 - }, - { - "name": "zerglingmovementspeed", - "is_worker": false, - "frame": 5482, - "clock_position": null, - "time": "5:42", - "is_chronoboosted": false, - "supply": 41 - }, - { - "name": "Hatchery", - "is_worker": false, - "frame": 5576, - "clock_position": null, - "time": "5:48", - "is_chronoboosted": false, - "supply": 41 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 5673, - "clock_position": null, - "time": "5:54", - "is_chronoboosted": false, - "supply": 40 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 5679, - "clock_position": null, - "time": "5:54", - "is_chronoboosted": false, - "supply": 40 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 5758, - "clock_position": null, - "time": "5:59", - "is_chronoboosted": false, - "supply": 40 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 5907, - "clock_position": null, - "time": "6:09", - "is_chronoboosted": false, - "supply": 43 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 5935, - "clock_position": null, - "time": "6:10", - "is_chronoboosted": false, - "supply": 44 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 5941, - "clock_position": null, - "time": "6:11", - "is_chronoboosted": false, - "supply": 44 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 5949, - "clock_position": null, - "time": "6:11", - "is_chronoboosted": false, - "supply": 44 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6002, - "clock_position": null, - "time": "6:15", - "is_chronoboosted": false, - "supply": 44 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6106, - "clock_position": null, - "time": "6:21", - "is_chronoboosted": false, - "supply": 48 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6109, - "clock_position": null, - "time": "6:21", - "is_chronoboosted": false, - "supply": 48 - }, - { - "name": "Extractor", - "is_worker": false, - "frame": 6116, - "clock_position": null, - "time": "6:22", - "is_chronoboosted": false, - "supply": 48 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6146, - "clock_position": null, - "time": "6:24", - "is_chronoboosted": false, - "supply": 48 - }, - { - "name": "SpineCrawler", - "is_worker": false, - "frame": 6155, - "clock_position": null, - "time": "6:24", - "is_chronoboosted": false, - "supply": 48 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6275, - "clock_position": null, - "time": "6:32", - "is_chronoboosted": false, - "supply": 49 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6278, - "clock_position": null, - "time": "6:32", - "is_chronoboosted": false, - "supply": 49 - }, - { - "name": "EvolutionChamber", - "is_worker": false, - "frame": 6411, - "clock_position": null, - "time": "6:40", - "is_chronoboosted": false, - "supply": 51 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6413, - "clock_position": null, - "time": "6:40", - "is_chronoboosted": false, - "supply": 51 - }, - { - "name": "EvolutionChamber", - "is_worker": false, - "frame": 6421, - "clock_position": null, - "time": "6:41", - "is_chronoboosted": false, - "supply": 51 - }, - { - "name": "SporeCrawler", - "is_worker": false, - "frame": 6542, - "clock_position": null, - "time": "6:48", - "is_chronoboosted": false, - "supply": 51 - }, - { - "name": "SporeCrawler", - "is_worker": false, - "frame": 6563, - "clock_position": null, - "time": "6:50", - "is_chronoboosted": false, - "supply": 49 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6635, - "clock_position": null, - "time": "6:54", - "is_chronoboosted": false, - "supply": 49 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 6638, - "clock_position": null, - "time": "6:54", - "is_chronoboosted": false, - "supply": 49 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6686, - "clock_position": null, - "time": "6:57", - "is_chronoboosted": false, - "supply": 49 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6686, - "clock_position": null, - "time": "6:57", - "is_chronoboosted": false, - "supply": 49 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6689, - "clock_position": null, - "time": "6:58", - "is_chronoboosted": false, - "supply": 49 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6689, - "clock_position": null, - "time": "6:58", - "is_chronoboosted": false, - "supply": 49 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6723, - "clock_position": null, - "time": "7:00", - "is_chronoboosted": false, - "supply": 52 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6723, - "clock_position": null, - "time": "7:00", - "is_chronoboosted": false, - "supply": 52 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6748, - "clock_position": null, - "time": "7:01", - "is_chronoboosted": false, - "supply": 52 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 6748, - "clock_position": null, - "time": "7:01", - "is_chronoboosted": false, - "supply": 52 - }, - { - "name": "Lair", - "is_worker": false, - "frame": 6868, - "clock_position": null, - "time": "7:09", - "is_chronoboosted": false, - "supply": 52 - }, - { - "name": "Extractor", - "is_worker": false, - "frame": 6930, - "clock_position": null, - "time": "7:13", - "is_chronoboosted": false, - "supply": 54 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7012, - "clock_position": null, - "time": "7:18", - "is_chronoboosted": false, - "supply": 54 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7012, - "clock_position": null, - "time": "7:18", - "is_chronoboosted": false, - "supply": 54 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7018, - "clock_position": null, - "time": "7:18", - "is_chronoboosted": false, - "supply": 54 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7018, - "clock_position": null, - "time": "7:18", - "is_chronoboosted": false, - "supply": 54 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7024, - "clock_position": null, - "time": "7:19", - "is_chronoboosted": false, - "supply": 54 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 7024, - "clock_position": null, - "time": "7:19", - "is_chronoboosted": false, - "supply": 54 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 7035, - "clock_position": null, - "time": "7:19", - "is_chronoboosted": false, - "supply": 54 - }, - { - "name": "overlordspeed", - "is_worker": false, - "frame": 7097, - "clock_position": null, - "time": "7:23", - "is_chronoboosted": false, - "supply": 58 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 7204, - "clock_position": null, - "time": "7:30", - "is_chronoboosted": false, - "supply": 58 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 7209, - "clock_position": null, - "time": "7:30", - "is_chronoboosted": false, - "supply": 58 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7465, - "clock_position": null, - "time": "7:46", - "is_chronoboosted": false, - "supply": 58 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7468, - "clock_position": null, - "time": "7:46", - "is_chronoboosted": false, - "supply": 58 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7474, - "clock_position": null, - "time": "7:47", - "is_chronoboosted": false, - "supply": 58 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7476, - "clock_position": null, - "time": "7:47", - "is_chronoboosted": false, - "supply": 58 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7513, - "clock_position": null, - "time": "7:49", - "is_chronoboosted": false, - "supply": 58 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 7561, - "clock_position": null, - "time": "7:52", - "is_chronoboosted": false, - "supply": 62 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7640, - "clock_position": null, - "time": "7:57", - "is_chronoboosted": false, - "supply": 62 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7676, - "clock_position": null, - "time": "7:59", - "is_chronoboosted": false, - "supply": 62 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7777, - "clock_position": null, - "time": "8:06", - "is_chronoboosted": false, - "supply": 62 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 7963, - "clock_position": null, - "time": "8:17", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7972, - "clock_position": null, - "time": "8:18", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7983, - "clock_position": null, - "time": "8:18", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7983, - "clock_position": null, - "time": "8:18", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Extractor", - "is_worker": false, - "frame": 7986, - "clock_position": null, - "time": "8:19", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7986, - "clock_position": null, - "time": "8:19", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7986, - "clock_position": null, - "time": "8:19", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 7986, - "clock_position": null, - "time": "8:19", - "is_chronoboosted": false, - "supply": 63 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8002, - "clock_position": null, - "time": "8:20", - "is_chronoboosted": false, - "supply": 68 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8005, - "clock_position": null, - "time": "8:20", - "is_chronoboosted": false, - "supply": 68 - }, - { - "name": "Extractor", - "is_worker": false, - "frame": 8006, - "clock_position": null, - "time": "8:20", - "is_chronoboosted": false, - "supply": 68 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8014, - "clock_position": null, - "time": "8:20", - "is_chronoboosted": false, - "supply": 68 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8070, - "clock_position": null, - "time": "8:24", - "is_chronoboosted": false, - "supply": 68 - }, - { - "name": "InfestationPit", - "is_worker": false, - "frame": 8231, - "clock_position": null, - "time": "8:34", - "is_chronoboosted": false, - "supply": 71 - }, - { - "name": "Extractor", - "is_worker": false, - "frame": 8295, - "clock_position": null, - "time": "8:38", - "is_chronoboosted": false, - "supply": 71 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8343, - "clock_position": null, - "time": "8:41", - "is_chronoboosted": false, - "supply": 69 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8346, - "clock_position": null, - "time": "8:41", - "is_chronoboosted": false, - "supply": 69 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 8371, - "clock_position": null, - "time": "8:43", - "is_chronoboosted": false, - "supply": 69 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 8377, - "clock_position": null, - "time": "8:43", - "is_chronoboosted": false, - "supply": 69 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 8461, - "clock_position": null, - "time": "8:48", - "is_chronoboosted": false, - "supply": 69 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8534, - "clock_position": null, - "time": "8:53", - "is_chronoboosted": false, - "supply": 71 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8534, - "clock_position": null, - "time": "8:53", - "is_chronoboosted": false, - "supply": 71 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8540, - "clock_position": null, - "time": "8:53", - "is_chronoboosted": false, - "supply": 71 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8540, - "clock_position": null, - "time": "8:53", - "is_chronoboosted": false, - "supply": 71 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8543, - "clock_position": null, - "time": "8:53", - "is_chronoboosted": false, - "supply": 71 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 8543, - "clock_position": null, - "time": "8:53", - "is_chronoboosted": false, - "supply": 71 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 8576, - "clock_position": null, - "time": "8:56", - "is_chronoboosted": false, - "supply": 71 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8638, - "clock_position": null, - "time": "8:59", - "is_chronoboosted": false, - "supply": 71 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8641, - "clock_position": null, - "time": "9:00", - "is_chronoboosted": false, - "supply": 74 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 8829, - "clock_position": null, - "time": "9:11", - "is_chronoboosted": false, - "supply": 75 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8838, - "clock_position": null, - "time": "9:12", - "is_chronoboosted": false, - "supply": 75 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8844, - "clock_position": null, - "time": "9:12", - "is_chronoboosted": false, - "supply": 75 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8846, - "clock_position": null, - "time": "9:12", - "is_chronoboosted": false, - "supply": 75 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8877, - "clock_position": null, - "time": "9:14", - "is_chronoboosted": false, - "supply": 75 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8950, - "clock_position": null, - "time": "9:19", - "is_chronoboosted": false, - "supply": 75 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 8981, - "clock_position": null, - "time": "9:21", - "is_chronoboosted": false, - "supply": 77 - }, - { - "name": "Hive", - "is_worker": false, - "frame": 9079, - "clock_position": null, - "time": "9:27", - "is_chronoboosted": false, - "supply": 77 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 9097, - "clock_position": null, - "time": "9:28", - "is_chronoboosted": false, - "supply": 77 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 9102, - "clock_position": null, - "time": "9:28", - "is_chronoboosted": false, - "supply": 77 - }, - { - "name": "Spire", - "is_worker": false, - "frame": 9232, - "clock_position": null, - "time": "9:37", - "is_chronoboosted": false, - "supply": 80 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 9288, - "clock_position": null, - "time": "9:40", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 9310, - "clock_position": null, - "time": "9:41", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 9344, - "clock_position": null, - "time": "9:44", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 9347, - "clock_position": null, - "time": "9:44", - "is_chronoboosted": false, - "supply": 79 - }, - { - "name": "SporeCrawler", - "is_worker": false, - "frame": 9488, - "clock_position": null, - "time": "9:53", - "is_chronoboosted": false, - "supply": 83 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 9552, - "clock_position": null, - "time": "9:57", - "is_chronoboosted": false, - "supply": 83 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 9558, - "clock_position": null, - "time": "9:57", - "is_chronoboosted": false, - "supply": 83 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 9640, - "clock_position": null, - "time": "10:02", - "is_chronoboosted": false, - "supply": 83 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 9735, - "clock_position": null, - "time": "10:08", - "is_chronoboosted": false, - "supply": 83 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 9738, - "clock_position": null, - "time": "10:08", - "is_chronoboosted": false, - "supply": 83 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 9741, - "clock_position": null, - "time": "10:08", - "is_chronoboosted": false, - "supply": 83 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 9747, - "clock_position": null, - "time": "10:09", - "is_chronoboosted": false, - "supply": 83 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 9749, - "clock_position": null, - "time": "10:09", - "is_chronoboosted": false, - "supply": 83 - }, - { - "name": "EvolutionChamber", - "is_worker": false, - "frame": 9808, - "clock_position": null, - "time": "10:13", - "is_chronoboosted": false, - "supply": 89 - }, - { - "name": "EvolutionChamber", - "is_worker": false, - "frame": 9811, - "clock_position": null, - "time": "10:13", - "is_chronoboosted": false, - "supply": 89 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9831, - "clock_position": null, - "time": "10:14", - "is_chronoboosted": false, - "supply": 89 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9831, - "clock_position": null, - "time": "10:14", - "is_chronoboosted": false, - "supply": 89 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9834, - "clock_position": null, - "time": "10:14", - "is_chronoboosted": false, - "supply": 89 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9834, - "clock_position": null, - "time": "10:14", - "is_chronoboosted": false, - "supply": 89 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9837, - "clock_position": null, - "time": "10:14", - "is_chronoboosted": false, - "supply": 89 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9837, - "clock_position": null, - "time": "10:14", - "is_chronoboosted": false, - "supply": 89 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9952, - "clock_position": null, - "time": "10:22", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9952, - "clock_position": null, - "time": "10:22", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9957, - "clock_position": null, - "time": "10:22", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 9957, - "clock_position": null, - "time": "10:22", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "BanelingNest", - "is_worker": false, - "frame": 9973, - "clock_position": null, - "time": "10:23", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 10031, - "clock_position": null, - "time": "10:26", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 10033, - "clock_position": null, - "time": "10:27", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10152, - "clock_position": null, - "time": "10:34", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10152, - "clock_position": null, - "time": "10:34", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10154, - "clock_position": null, - "time": "10:34", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10154, - "clock_position": null, - "time": "10:34", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10191, - "clock_position": null, - "time": "10:36", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10191, - "clock_position": null, - "time": "10:36", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10222, - "clock_position": null, - "time": "10:38", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10222, - "clock_position": null, - "time": "10:38", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "SpineCrawler", - "is_worker": false, - "frame": 10227, - "clock_position": null, - "time": "10:39", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "SpineCrawler", - "is_worker": false, - "frame": 10247, - "clock_position": null, - "time": "10:40", - "is_chronoboosted": false, - "supply": 96 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 10281, - "clock_position": null, - "time": "10:42", - "is_chronoboosted": false, - "supply": 96 - }, - { - "name": "ZergGroundArmorsLevel1", - "is_worker": false, - "frame": 10393, - "clock_position": null, - "time": "10:49", - "is_chronoboosted": false, - "supply": 96 - }, - { - "name": "ZergMeleeWeaponsLevel1", - "is_worker": false, - "frame": 10393, - "clock_position": null, - "time": "10:49", - "is_chronoboosted": false, - "supply": 96 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10455, - "clock_position": null, - "time": "10:53", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10455, - "clock_position": null, - "time": "10:53", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10461, - "clock_position": null, - "time": "10:53", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10461, - "clock_position": null, - "time": "10:53", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10464, - "clock_position": null, - "time": "10:54", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10464, - "clock_position": null, - "time": "10:54", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10469, - "clock_position": null, - "time": "10:54", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10469, - "clock_position": null, - "time": "10:54", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 10526, - "clock_position": null, - "time": "10:57", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10574, - "clock_position": null, - "time": "11:00", - "is_chronoboosted": false, - "supply": 99 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10574, - "clock_position": null, - "time": "11:00", - "is_chronoboosted": false, - "supply": 99 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10585, - "clock_position": null, - "time": "11:01", - "is_chronoboosted": false, - "supply": 99 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10585, - "clock_position": null, - "time": "11:01", - "is_chronoboosted": false, - "supply": 99 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10633, - "clock_position": null, - "time": "11:04", - "is_chronoboosted": false, - "supply": 99 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10633, - "clock_position": null, - "time": "11:04", - "is_chronoboosted": false, - "supply": 99 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10669, - "clock_position": null, - "time": "11:06", - "is_chronoboosted": false, - "supply": 99 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10669, - "clock_position": null, - "time": "11:06", - "is_chronoboosted": false, - "supply": 99 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10723, - "clock_position": null, - "time": "11:10", - "is_chronoboosted": false, - "supply": 84 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10723, - "clock_position": null, - "time": "11:10", - "is_chronoboosted": false, - "supply": 84 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10725, - "clock_position": null, - "time": "11:10", - "is_chronoboosted": false, - "supply": 84 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10725, - "clock_position": null, - "time": "11:10", - "is_chronoboosted": false, - "supply": 84 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10759, - "clock_position": null, - "time": "11:12", - "is_chronoboosted": false, - "supply": 84 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 10759, - "clock_position": null, - "time": "11:12", - "is_chronoboosted": false, - "supply": 84 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 10877, - "clock_position": null, - "time": "11:19", - "is_chronoboosted": false, - "supply": 84 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 10880, - "clock_position": null, - "time": "11:20", - "is_chronoboosted": false, - "supply": 69 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 10903, - "clock_position": null, - "time": "11:21", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 10908, - "clock_position": null, - "time": "11:21", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "GreaterSpire", - "is_worker": false, - "frame": 10972, - "clock_position": null, - "time": "11:25", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Baneling", - "is_worker": false, - "frame": 11015, - "clock_position": null, - "time": "11:28", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Baneling", - "is_worker": false, - "frame": 11018, - "clock_position": null, - "time": "11:28", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Baneling", - "is_worker": false, - "frame": 11024, - "clock_position": null, - "time": "11:29", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Baneling", - "is_worker": false, - "frame": 11026, - "clock_position": null, - "time": "11:29", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 11083, - "clock_position": null, - "time": "11:32", - "is_chronoboosted": false, - "supply": 85 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 11167, - "clock_position": null, - "time": "11:37", - "is_chronoboosted": false, - "supply": 85 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 11181, - "clock_position": null, - "time": "11:38", - "is_chronoboosted": false, - "supply": 85 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 11184, - "clock_position": null, - "time": "11:39", - "is_chronoboosted": false, - "supply": 85 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 11266, - "clock_position": null, - "time": "11:44", - "is_chronoboosted": false, - "supply": 89 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 11268, - "clock_position": null, - "time": "11:44", - "is_chronoboosted": false, - "supply": 89 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 11271, - "clock_position": null, - "time": "11:44", - "is_chronoboosted": false, - "supply": 89 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11361, - "clock_position": null, - "time": "11:50", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11361, - "clock_position": null, - "time": "11:50", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11381, - "clock_position": null, - "time": "11:51", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11381, - "clock_position": null, - "time": "11:51", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11420, - "clock_position": null, - "time": "11:53", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11420, - "clock_position": null, - "time": "11:53", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Corruptor", - "is_worker": false, - "frame": 11642, - "clock_position": null, - "time": "12:07", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Corruptor", - "is_worker": false, - "frame": 11645, - "clock_position": null, - "time": "12:07", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Corruptor", - "is_worker": false, - "frame": 11648, - "clock_position": null, - "time": "12:08", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Corruptor", - "is_worker": false, - "frame": 11654, - "clock_position": null, - "time": "12:08", - "is_chronoboosted": false, - "supply": 82 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11724, - "clock_position": null, - "time": "12:12", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11724, - "clock_position": null, - "time": "12:12", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11727, - "clock_position": null, - "time": "12:12", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11727, - "clock_position": null, - "time": "12:12", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11839, - "clock_position": null, - "time": "12:19", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11839, - "clock_position": null, - "time": "12:19", - "is_chronoboosted": false, - "supply": 90 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11873, - "clock_position": null, - "time": "12:22", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11873, - "clock_position": null, - "time": "12:22", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11890, - "clock_position": null, - "time": "12:23", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11890, - "clock_position": null, - "time": "12:23", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11924, - "clock_position": null, - "time": "12:25", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11924, - "clock_position": null, - "time": "12:25", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11952, - "clock_position": null, - "time": "12:27", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11952, - "clock_position": null, - "time": "12:27", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11955, - "clock_position": null, - "time": "12:27", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11955, - "clock_position": null, - "time": "12:27", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11969, - "clock_position": null, - "time": "12:28", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11969, - "clock_position": null, - "time": "12:28", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11974, - "clock_position": null, - "time": "12:28", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 11974, - "clock_position": null, - "time": "12:28", - "is_chronoboosted": false, - "supply": 93 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12076, - "clock_position": null, - "time": "12:34", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12076, - "clock_position": null, - "time": "12:34", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12081, - "clock_position": null, - "time": "12:35", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12081, - "clock_position": null, - "time": "12:35", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 12090, - "clock_position": null, - "time": "12:35", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12135, - "clock_position": null, - "time": "12:38", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12135, - "clock_position": null, - "time": "12:38", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12138, - "clock_position": null, - "time": "12:38", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12138, - "clock_position": null, - "time": "12:38", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12143, - "clock_position": null, - "time": "12:38", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12143, - "clock_position": null, - "time": "12:38", - "is_chronoboosted": false, - "supply": 95 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12298, - "clock_position": null, - "time": "12:48", - "is_chronoboosted": false, - "supply": 102 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12298, - "clock_position": null, - "time": "12:48", - "is_chronoboosted": false, - "supply": 102 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12304, - "clock_position": null, - "time": "12:49", - "is_chronoboosted": false, - "supply": 102 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12304, - "clock_position": null, - "time": "12:49", - "is_chronoboosted": false, - "supply": 102 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12388, - "clock_position": null, - "time": "12:54", - "is_chronoboosted": false, - "supply": 104 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12388, - "clock_position": null, - "time": "12:54", - "is_chronoboosted": false, - "supply": 104 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 12464, - "clock_position": null, - "time": "12:59", - "is_chronoboosted": false, - "supply": 104 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 12467, - "clock_position": null, - "time": "12:59", - "is_chronoboosted": false, - "supply": 104 - }, - { - "name": "BroodLord", - "is_worker": false, - "frame": 12575, - "clock_position": null, - "time": "13:05", - "is_chronoboosted": false, - "supply": 109 - }, - { - "name": "BroodLord", - "is_worker": false, - "frame": 12578, - "clock_position": null, - "time": "13:06", - "is_chronoboosted": false, - "supply": 109 - }, - { - "name": "Corruptor", - "is_worker": false, - "frame": 12627, - "clock_position": null, - "time": "13:09", - "is_chronoboosted": false, - "supply": 109 - }, - { - "name": "Corruptor", - "is_worker": false, - "frame": 12627, - "clock_position": null, - "time": "13:09", - "is_chronoboosted": false, - "supply": 109 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12689, - "clock_position": null, - "time": "13:13", - "is_chronoboosted": false, - "supply": 113 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12689, - "clock_position": null, - "time": "13:13", - "is_chronoboosted": false, - "supply": 113 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12703, - "clock_position": null, - "time": "13:13", - "is_chronoboosted": false, - "supply": 113 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12703, - "clock_position": null, - "time": "13:13", - "is_chronoboosted": false, - "supply": 113 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12706, - "clock_position": null, - "time": "13:14", - "is_chronoboosted": false, - "supply": 113 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12706, - "clock_position": null, - "time": "13:14", - "is_chronoboosted": false, - "supply": 113 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12720, - "clock_position": null, - "time": "13:15", - "is_chronoboosted": false, - "supply": 113 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12720, - "clock_position": null, - "time": "13:15", - "is_chronoboosted": false, - "supply": 113 - }, - { - "name": "Corruptor", - "is_worker": false, - "frame": 12855, - "clock_position": null, - "time": "13:23", - "is_chronoboosted": false, - "supply": 109 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12979, - "clock_position": null, - "time": "13:31", - "is_chronoboosted": false, - "supply": 112 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12979, - "clock_position": null, - "time": "13:31", - "is_chronoboosted": false, - "supply": 112 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12984, - "clock_position": null, - "time": "13:31", - "is_chronoboosted": false, - "supply": 112 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12984, - "clock_position": null, - "time": "13:31", - "is_chronoboosted": false, - "supply": 112 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12987, - "clock_position": null, - "time": "13:31", - "is_chronoboosted": false, - "supply": 112 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 12987, - "clock_position": null, - "time": "13:31", - "is_chronoboosted": false, - "supply": 112 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 13100, - "clock_position": null, - "time": "13:38", - "is_chronoboosted": false, - "supply": 112 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 13100, - "clock_position": null, - "time": "13:38", - "is_chronoboosted": false, - "supply": 112 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 13116, - "clock_position": null, - "time": "13:39", - "is_chronoboosted": false, - "supply": 112 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 13116, - "clock_position": null, - "time": "13:39", - "is_chronoboosted": false, - "supply": 112 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 13164, - "clock_position": null, - "time": "13:42", - "is_chronoboosted": false, - "supply": 115 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 13164, - "clock_position": null, - "time": "13:42", - "is_chronoboosted": false, - "supply": 115 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 13206, - "clock_position": null, - "time": "13:45", - "is_chronoboosted": false, - "supply": 115 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 13206, - "clock_position": null, - "time": "13:45", - "is_chronoboosted": false, - "supply": 115 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 13212, - "clock_position": null, - "time": "13:45", - "is_chronoboosted": false, - "supply": 115 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 13212, - "clock_position": null, - "time": "13:45", - "is_chronoboosted": false, - "supply": 115 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 13229, - "clock_position": null, - "time": "13:46", - "is_chronoboosted": false, - "supply": 115 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 13263, - "clock_position": null, - "time": "13:48", - "is_chronoboosted": false, - "supply": 115 - }, - { - "name": "Corruptor", - "is_worker": false, - "frame": 13308, - "clock_position": null, - "time": "13:51", - "is_chronoboosted": false, - "supply": 111 - }, - { - "name": "Corruptor", - "is_worker": false, - "frame": 13387, - "clock_position": null, - "time": "13:56", - "is_chronoboosted": false, - "supply": 111 - }, - { - "name": "Corruptor", - "is_worker": false, - "frame": 13392, - "clock_position": null, - "time": "13:57", - "is_chronoboosted": false, - "supply": 111 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 13564, - "clock_position": null, - "time": "14:07", - "is_chronoboosted": false, - "supply": 115 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 13564, - "clock_position": null, - "time": "14:07", - "is_chronoboosted": false, - "supply": 115 - }, - { - "name": "SpineCrawler", - "is_worker": false, - "frame": 13660, - "clock_position": null, - "time": "14:13", - "is_chronoboosted": false, - "supply": 116 - }, - { - "name": "SporeCrawler", - "is_worker": false, - "frame": 13729, - "clock_position": null, - "time": "14:18", - "is_chronoboosted": false, - "supply": 116 - }, - { - "name": "SpineCrawler", - "is_worker": false, - "frame": 13734, - "clock_position": null, - "time": "14:18", - "is_chronoboosted": false, - "supply": 116 - }, - { - "name": "SpineCrawler", - "is_worker": false, - "frame": 13758, - "clock_position": null, - "time": "14:19", - "is_chronoboosted": false, - "supply": 116 - }, - { - "name": "SpineCrawler", - "is_worker": false, - "frame": 13812, - "clock_position": null, - "time": "14:23", - "is_chronoboosted": false, - "supply": 113 - }, - { - "name": "Corruptor", - "is_worker": false, - "frame": 13870, - "clock_position": null, - "time": "14:26", - "is_chronoboosted": false, - "supply": 113 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 13938, - "clock_position": null, - "time": "14:31", - "is_chronoboosted": false, - "supply": 114 - }, - { - "name": "Corruptor", - "is_worker": false, - "frame": 13949, - "clock_position": null, - "time": "14:31", - "is_chronoboosted": false, - "supply": 114 - }, - { - "name": "SpineCrawler", - "is_worker": false, - "frame": 13951, - "clock_position": null, - "time": "14:31", - "is_chronoboosted": false, - "supply": 114 - }, - { - "name": "Corruptor", - "is_worker": false, - "frame": 13955, - "clock_position": null, - "time": "14:32", - "is_chronoboosted": false, - "supply": 114 - }, - { - "name": "SpineCrawler", - "is_worker": false, - "frame": 13973, - "clock_position": null, - "time": "14:33", - "is_chronoboosted": false, - "supply": 114 - }, - { - "name": "ZergMeleeWeaponsLevel2", - "is_worker": false, - "frame": 14003, - "clock_position": null, - "time": "14:35", - "is_chronoboosted": false, - "supply": 114 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 14146, - "clock_position": null, - "time": "14:44", - "is_chronoboosted": false, - "supply": 118 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 14149, - "clock_position": null, - "time": "14:44", - "is_chronoboosted": false, - "supply": 118 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 14152, - "clock_position": null, - "time": "14:44", - "is_chronoboosted": false, - "supply": 118 - }, - { - "name": "BroodLord", - "is_worker": false, - "frame": 14212, - "clock_position": null, - "time": "14:48", - "is_chronoboosted": false, - "supply": 118 - }, - { - "name": "BroodLord", - "is_worker": false, - "frame": 14213, - "clock_position": null, - "time": "14:48", - "is_chronoboosted": false, - "supply": 118 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 14233, - "clock_position": null, - "time": "14:49", - "is_chronoboosted": false, - "supply": 118 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 14236, - "clock_position": null, - "time": "14:49", - "is_chronoboosted": false, - "supply": 118 - }, - { - "name": "UltraliskCavern", - "is_worker": false, - "frame": 14391, - "clock_position": null, - "time": "14:59", - "is_chronoboosted": false, - "supply": 125 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 14683, - "clock_position": null, - "time": "15:17", - "is_chronoboosted": false, - "supply": 114 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 14703, - "clock_position": null, - "time": "15:18", - "is_chronoboosted": false, - "supply": 114 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 14818, - "clock_position": null, - "time": "15:26", - "is_chronoboosted": false, - "supply": 116 - }, - { - "name": "Queen", - "is_worker": false, - "frame": 14821, - "clock_position": null, - "time": "15:26", - "is_chronoboosted": false, - "supply": 116 - }, - { - "name": "ZergGroundArmorsLevel2", - "is_worker": false, - "frame": 14861, - "clock_position": null, - "time": "15:28", - "is_chronoboosted": false, - "supply": 116 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 15024, - "clock_position": null, - "time": "15:39", - "is_chronoboosted": false, - "supply": 120 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 15460, - "clock_position": null, - "time": "16:06", - "is_chronoboosted": false, - "supply": 119 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 15462, - "clock_position": null, - "time": "16:06", - "is_chronoboosted": false, - "supply": 119 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 15519, - "clock_position": null, - "time": "16:09", - "is_chronoboosted": false, - "supply": 119 - }, - { - "name": "ChitinousPlating", - "is_worker": false, - "frame": 15533, - "clock_position": null, - "time": "16:10", - "is_chronoboosted": false, - "supply": 131 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 15600, - "clock_position": null, - "time": "16:15", - "is_chronoboosted": false, - "supply": 131 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 15699, - "clock_position": null, - "time": "16:21", - "is_chronoboosted": false, - "supply": 131 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 15817, - "clock_position": null, - "time": "16:28", - "is_chronoboosted": false, - "supply": 131 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 15831, - "clock_position": null, - "time": "16:29", - "is_chronoboosted": false, - "supply": 131 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 15901, - "clock_position": null, - "time": "16:33", - "is_chronoboosted": false, - "supply": 132 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 16059, - "clock_position": null, - "time": "16:43", - "is_chronoboosted": false, - "supply": 133 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 16214, - "clock_position": null, - "time": "16:53", - "is_chronoboosted": false, - "supply": 138 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 16337, - "clock_position": null, - "time": "17:01", - "is_chronoboosted": false, - "supply": 144 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 16340, - "clock_position": null, - "time": "17:01", - "is_chronoboosted": false, - "supply": 144 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 16343, - "clock_position": null, - "time": "17:01", - "is_chronoboosted": false, - "supply": 144 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 16349, - "clock_position": null, - "time": "17:01", - "is_chronoboosted": false, - "supply": 144 - }, - { - "name": "Drone", - "is_worker": true, - "frame": 16351, - "clock_position": null, - "time": "17:01", - "is_chronoboosted": false, - "supply": 144 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 16526, - "clock_position": null, - "time": "17:12", - "is_chronoboosted": false, - "supply": 149 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 16686, - "clock_position": null, - "time": "17:22", - "is_chronoboosted": false, - "supply": 155 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 16889, - "clock_position": null, - "time": "17:35", - "is_chronoboosted": false, - "supply": 161 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 16891, - "clock_position": null, - "time": "17:35", - "is_chronoboosted": false, - "supply": 161 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 16894, - "clock_position": null, - "time": "17:35", - "is_chronoboosted": false, - "supply": 161 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 17102, - "clock_position": null, - "time": "17:48", - "is_chronoboosted": false, - "supply": 161 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 17122, - "clock_position": null, - "time": "17:50", - "is_chronoboosted": false, - "supply": 159 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 17271, - "clock_position": null, - "time": "17:59", - "is_chronoboosted": false, - "supply": 159 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 17274, - "clock_position": null, - "time": "17:59", - "is_chronoboosted": false, - "supply": 159 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 17277, - "clock_position": null, - "time": "17:59", - "is_chronoboosted": false, - "supply": 159 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 17569, - "clock_position": null, - "time": "18:18", - "is_chronoboosted": false, - "supply": 165 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 17679, - "clock_position": null, - "time": "18:24", - "is_chronoboosted": false, - "supply": 171 - }, - { - "name": "Overlord", - "is_worker": false, - "frame": 17752, - "clock_position": null, - "time": "18:29", - "is_chronoboosted": false, - "supply": 171 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 17938, - "clock_position": null, - "time": "18:41", - "is_chronoboosted": false, - "supply": 177 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 18200, - "clock_position": null, - "time": "18:57", - "is_chronoboosted": false, - "supply": 183 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18461, - "clock_position": null, - "time": "19:13", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18461, - "clock_position": null, - "time": "19:13", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18472, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18472, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18472, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18472, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18475, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18475, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18475, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18475, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18475, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18475, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18475, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18475, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18478, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18478, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18478, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18478, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18478, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18478, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18478, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Zergling", - "is_worker": false, - "frame": 18478, - "clock_position": null, - "time": "19:14", - "is_chronoboosted": false, - "supply": 189 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 19229, - "clock_position": null, - "time": "20:01", - "is_chronoboosted": false, - "supply": 174 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 19232, - "clock_position": null, - "time": "20:02", - "is_chronoboosted": false, - "supply": 174 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 19235, - "clock_position": null, - "time": "20:02", - "is_chronoboosted": false, - "supply": 174 - }, - { - "name": "Ultralisk", - "is_worker": false, - "frame": 19530, - "clock_position": null, - "time": "20:20", - "is_chronoboosted": false, - "supply": 172 + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 6, + "frame": 19, + "is_chronoboosted": false, + "time": "0:01" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 7, + "frame": 264, + "is_chronoboosted": false, + "time": "0:16" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 8, + "frame": 483, + "is_chronoboosted": false, + "time": "0:30" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 9, + "frame": 745, + "is_chronoboosted": false, + "time": "0:46" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 9, + "frame": 894, + "is_chronoboosted": false, + "time": "0:55" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 10, + "frame": 1175, + "is_chronoboosted": false, + "time": "1:13" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 10, + "frame": 1203, + "is_chronoboosted": false, + "time": "1:15" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 12, + "frame": 1282, + "is_chronoboosted": false, + "time": "1:20" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 13, + "frame": 1474, + "is_chronoboosted": false, + "time": "1:32" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 14, + "frame": 1713, + "is_chronoboosted": false, + "time": "1:47" + }, + { + "is_worker": false, + "name": "Hatchery", + "clock_position": null, + "supply": 15, + "frame": 2055, + "is_chronoboosted": false, + "time": "2:08" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 14, + "frame": 2132, + "is_chronoboosted": false, + "time": "2:13" + }, + { + "is_worker": false, + "name": "SpawningPool", + "clock_position": null, + "supply": 15, + "frame": 2473, + "is_chronoboosted": false, + "time": "2:34" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 15, + "frame": 2517, + "is_chronoboosted": false, + "time": "2:37" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 15, + "frame": 2663, + "is_chronoboosted": false, + "time": "2:46" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 16, + "frame": 2728, + "is_chronoboosted": false, + "time": "2:50" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 17, + "frame": 2919, + "is_chronoboosted": false, + "time": "3:02" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 17, + "frame": 3215, + "is_chronoboosted": false, + "time": "3:20" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 18, + "frame": 3468, + "is_chronoboosted": false, + "time": "3:36" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 19, + "frame": 3524, + "is_chronoboosted": false, + "time": "3:40" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 19, + "frame": 3670, + "is_chronoboosted": false, + "time": "3:49" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 19, + "frame": 3670, + "is_chronoboosted": false, + "time": "3:49" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 22, + "frame": 3687, + "is_chronoboosted": false, + "time": "3:50" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 22, + "frame": 3727, + "is_chronoboosted": false, + "time": "3:52" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 24, + "frame": 3890, + "is_chronoboosted": false, + "time": "4:03" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 24, + "frame": 3912, + "is_chronoboosted": false, + "time": "4:04" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 26, + "frame": 4129, + "is_chronoboosted": false, + "time": "4:18" + }, + { + "is_worker": false, + "name": "Extractor", + "clock_position": null, + "supply": 26, + "frame": 4140, + "is_chronoboosted": false, + "time": "4:18" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 26, + "frame": 4222, + "is_chronoboosted": false, + "time": "4:23" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 27, + "frame": 4323, + "is_chronoboosted": false, + "time": "4:30" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 27, + "frame": 4377, + "is_chronoboosted": false, + "time": "4:33" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 27, + "frame": 4407, + "is_chronoboosted": false, + "time": "4:35" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 31, + "frame": 4486, + "is_chronoboosted": false, + "time": "4:40" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 31, + "frame": 4618, + "is_chronoboosted": false, + "time": "4:48" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 31, + "frame": 4627, + "is_chronoboosted": false, + "time": "4:49" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 35, + "frame": 4835, + "is_chronoboosted": false, + "time": "5:02" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 35, + "frame": 4872, + "is_chronoboosted": false, + "time": "5:04" + }, + { + "is_worker": false, + "name": "Extractor", + "clock_position": null, + "supply": 35, + "frame": 4950, + "is_chronoboosted": false, + "time": "5:09" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 35, + "frame": 5069, + "is_chronoboosted": false, + "time": "5:16" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 35, + "frame": 5083, + "is_chronoboosted": false, + "time": "5:17" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 37, + "frame": 5243, + "is_chronoboosted": false, + "time": "5:27" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 37, + "frame": 5246, + "is_chronoboosted": false, + "time": "5:27" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 37, + "frame": 5268, + "is_chronoboosted": false, + "time": "5:29" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 40, + "frame": 5291, + "is_chronoboosted": false, + "time": "5:30" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 40, + "frame": 5412, + "is_chronoboosted": false, + "time": "5:38" + }, + { + "is_worker": false, + "name": "zerglingmovementspeed", + "clock_position": null, + "supply": 41, + "frame": 5482, + "is_chronoboosted": false, + "time": "5:42" + }, + { + "is_worker": false, + "name": "Hatchery", + "clock_position": null, + "supply": 41, + "frame": 5576, + "is_chronoboosted": false, + "time": "5:48" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 40, + "frame": 5673, + "is_chronoboosted": false, + "time": "5:54" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 40, + "frame": 5679, + "is_chronoboosted": false, + "time": "5:54" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 40, + "frame": 5758, + "is_chronoboosted": false, + "time": "5:59" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 43, + "frame": 5907, + "is_chronoboosted": false, + "time": "6:09" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 44, + "frame": 5935, + "is_chronoboosted": false, + "time": "6:10" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 44, + "frame": 5941, + "is_chronoboosted": false, + "time": "6:11" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 44, + "frame": 5949, + "is_chronoboosted": false, + "time": "6:11" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 44, + "frame": 6002, + "is_chronoboosted": false, + "time": "6:15" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 48, + "frame": 6106, + "is_chronoboosted": false, + "time": "6:21" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 48, + "frame": 6109, + "is_chronoboosted": false, + "time": "6:21" + }, + { + "is_worker": false, + "name": "Extractor", + "clock_position": null, + "supply": 48, + "frame": 6116, + "is_chronoboosted": false, + "time": "6:22" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 48, + "frame": 6146, + "is_chronoboosted": false, + "time": "6:24" + }, + { + "is_worker": false, + "name": "SpineCrawler", + "clock_position": null, + "supply": 48, + "frame": 6155, + "is_chronoboosted": false, + "time": "6:24" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 49, + "frame": 6275, + "is_chronoboosted": false, + "time": "6:32" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 49, + "frame": 6278, + "is_chronoboosted": false, + "time": "6:32" + }, + { + "is_worker": false, + "name": "EvolutionChamber", + "clock_position": null, + "supply": 51, + "frame": 6411, + "is_chronoboosted": false, + "time": "6:40" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 51, + "frame": 6413, + "is_chronoboosted": false, + "time": "6:40" + }, + { + "is_worker": false, + "name": "EvolutionChamber", + "clock_position": null, + "supply": 51, + "frame": 6421, + "is_chronoboosted": false, + "time": "6:41" + }, + { + "is_worker": false, + "name": "SporeCrawler", + "clock_position": null, + "supply": 51, + "frame": 6542, + "is_chronoboosted": false, + "time": "6:48" + }, + { + "is_worker": false, + "name": "SporeCrawler", + "clock_position": null, + "supply": 49, + "frame": 6563, + "is_chronoboosted": false, + "time": "6:50" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 49, + "frame": 6635, + "is_chronoboosted": false, + "time": "6:54" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 49, + "frame": 6638, + "is_chronoboosted": false, + "time": "6:54" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 49, + "frame": 6686, + "is_chronoboosted": false, + "time": "6:57" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 49, + "frame": 6686, + "is_chronoboosted": false, + "time": "6:57" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 49, + "frame": 6689, + "is_chronoboosted": false, + "time": "6:58" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 49, + "frame": 6689, + "is_chronoboosted": false, + "time": "6:58" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 52, + "frame": 6723, + "is_chronoboosted": false, + "time": "7:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 52, + "frame": 6723, + "is_chronoboosted": false, + "time": "7:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 52, + "frame": 6748, + "is_chronoboosted": false, + "time": "7:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 52, + "frame": 6748, + "is_chronoboosted": false, + "time": "7:01" + }, + { + "is_worker": false, + "name": "Lair", + "clock_position": null, + "supply": 52, + "frame": 6868, + "is_chronoboosted": false, + "time": "7:09" + }, + { + "is_worker": false, + "name": "Extractor", + "clock_position": null, + "supply": 54, + "frame": 6930, + "is_chronoboosted": false, + "time": "7:13" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 54, + "frame": 7012, + "is_chronoboosted": false, + "time": "7:18" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 54, + "frame": 7012, + "is_chronoboosted": false, + "time": "7:18" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 54, + "frame": 7018, + "is_chronoboosted": false, + "time": "7:18" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 54, + "frame": 7018, + "is_chronoboosted": false, + "time": "7:18" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 54, + "frame": 7024, + "is_chronoboosted": false, + "time": "7:19" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 54, + "frame": 7024, + "is_chronoboosted": false, + "time": "7:19" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 54, + "frame": 7035, + "is_chronoboosted": false, + "time": "7:19" + }, + { + "is_worker": false, + "name": "overlordspeed", + "clock_position": null, + "supply": 58, + "frame": 7097, + "is_chronoboosted": false, + "time": "7:23" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 58, + "frame": 7204, + "is_chronoboosted": false, + "time": "7:30" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 58, + "frame": 7209, + "is_chronoboosted": false, + "time": "7:30" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 58, + "frame": 7465, + "is_chronoboosted": false, + "time": "7:46" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 58, + "frame": 7468, + "is_chronoboosted": false, + "time": "7:46" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 58, + "frame": 7474, + "is_chronoboosted": false, + "time": "7:47" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 58, + "frame": 7476, + "is_chronoboosted": false, + "time": "7:47" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 58, + "frame": 7513, + "is_chronoboosted": false, + "time": "7:49" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 62, + "frame": 7561, + "is_chronoboosted": false, + "time": "7:52" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 62, + "frame": 7640, + "is_chronoboosted": false, + "time": "7:57" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 62, + "frame": 7676, + "is_chronoboosted": false, + "time": "7:59" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 62, + "frame": 7777, + "is_chronoboosted": false, + "time": "8:06" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 63, + "frame": 7963, + "is_chronoboosted": false, + "time": "8:17" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 63, + "frame": 7972, + "is_chronoboosted": false, + "time": "8:18" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 63, + "frame": 7983, + "is_chronoboosted": false, + "time": "8:18" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 63, + "frame": 7983, + "is_chronoboosted": false, + "time": "8:18" + }, + { + "is_worker": false, + "name": "Extractor", + "clock_position": null, + "supply": 63, + "frame": 7986, + "is_chronoboosted": false, + "time": "8:19" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 63, + "frame": 7986, + "is_chronoboosted": false, + "time": "8:19" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 63, + "frame": 7986, + "is_chronoboosted": false, + "time": "8:19" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 63, + "frame": 7986, + "is_chronoboosted": false, + "time": "8:19" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 68, + "frame": 8002, + "is_chronoboosted": false, + "time": "8:20" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 68, + "frame": 8005, + "is_chronoboosted": false, + "time": "8:20" + }, + { + "is_worker": false, + "name": "Extractor", + "clock_position": null, + "supply": 68, + "frame": 8006, + "is_chronoboosted": false, + "time": "8:20" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 68, + "frame": 8014, + "is_chronoboosted": false, + "time": "8:20" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 68, + "frame": 8070, + "is_chronoboosted": false, + "time": "8:24" + }, + { + "is_worker": false, + "name": "InfestationPit", + "clock_position": null, + "supply": 71, + "frame": 8231, + "is_chronoboosted": false, + "time": "8:34" + }, + { + "is_worker": false, + "name": "Extractor", + "clock_position": null, + "supply": 71, + "frame": 8295, + "is_chronoboosted": false, + "time": "8:38" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 69, + "frame": 8343, + "is_chronoboosted": false, + "time": "8:41" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 69, + "frame": 8346, + "is_chronoboosted": false, + "time": "8:41" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 69, + "frame": 8371, + "is_chronoboosted": false, + "time": "8:43" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 69, + "frame": 8377, + "is_chronoboosted": false, + "time": "8:43" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 69, + "frame": 8461, + "is_chronoboosted": false, + "time": "8:48" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 71, + "frame": 8534, + "is_chronoboosted": false, + "time": "8:53" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 71, + "frame": 8534, + "is_chronoboosted": false, + "time": "8:53" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 71, + "frame": 8540, + "is_chronoboosted": false, + "time": "8:53" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 71, + "frame": 8540, + "is_chronoboosted": false, + "time": "8:53" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 71, + "frame": 8543, + "is_chronoboosted": false, + "time": "8:53" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 71, + "frame": 8543, + "is_chronoboosted": false, + "time": "8:53" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 71, + "frame": 8576, + "is_chronoboosted": false, + "time": "8:56" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 71, + "frame": 8638, + "is_chronoboosted": false, + "time": "8:59" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 74, + "frame": 8641, + "is_chronoboosted": false, + "time": "9:00" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 75, + "frame": 8829, + "is_chronoboosted": false, + "time": "9:11" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 75, + "frame": 8838, + "is_chronoboosted": false, + "time": "9:12" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 75, + "frame": 8844, + "is_chronoboosted": false, + "time": "9:12" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 75, + "frame": 8846, + "is_chronoboosted": false, + "time": "9:12" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 75, + "frame": 8877, + "is_chronoboosted": false, + "time": "9:14" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 75, + "frame": 8950, + "is_chronoboosted": false, + "time": "9:19" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 77, + "frame": 8981, + "is_chronoboosted": false, + "time": "9:21" + }, + { + "is_worker": false, + "name": "Hive", + "clock_position": null, + "supply": 77, + "frame": 9079, + "is_chronoboosted": false, + "time": "9:27" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 77, + "frame": 9097, + "is_chronoboosted": false, + "time": "9:28" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 77, + "frame": 9102, + "is_chronoboosted": false, + "time": "9:28" + }, + { + "is_worker": false, + "name": "Spire", + "clock_position": null, + "supply": 80, + "frame": 9232, + "is_chronoboosted": false, + "time": "9:37" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 79, + "frame": 9288, + "is_chronoboosted": false, + "time": "9:40" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 79, + "frame": 9310, + "is_chronoboosted": false, + "time": "9:41" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 79, + "frame": 9344, + "is_chronoboosted": false, + "time": "9:44" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 79, + "frame": 9347, + "is_chronoboosted": false, + "time": "9:44" + }, + { + "is_worker": false, + "name": "SporeCrawler", + "clock_position": null, + "supply": 83, + "frame": 9488, + "is_chronoboosted": false, + "time": "9:53" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 83, + "frame": 9552, + "is_chronoboosted": false, + "time": "9:57" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 83, + "frame": 9558, + "is_chronoboosted": false, + "time": "9:57" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 83, + "frame": 9640, + "is_chronoboosted": false, + "time": "10:02" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 83, + "frame": 9735, + "is_chronoboosted": false, + "time": "10:08" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 83, + "frame": 9738, + "is_chronoboosted": false, + "time": "10:08" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 83, + "frame": 9741, + "is_chronoboosted": false, + "time": "10:08" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 83, + "frame": 9747, + "is_chronoboosted": false, + "time": "10:09" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 83, + "frame": 9749, + "is_chronoboosted": false, + "time": "10:09" + }, + { + "is_worker": false, + "name": "EvolutionChamber", + "clock_position": null, + "supply": 89, + "frame": 9808, + "is_chronoboosted": false, + "time": "10:13" + }, + { + "is_worker": false, + "name": "EvolutionChamber", + "clock_position": null, + "supply": 89, + "frame": 9811, + "is_chronoboosted": false, + "time": "10:13" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 89, + "frame": 9831, + "is_chronoboosted": false, + "time": "10:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 89, + "frame": 9831, + "is_chronoboosted": false, + "time": "10:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 89, + "frame": 9834, + "is_chronoboosted": false, + "time": "10:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 89, + "frame": 9834, + "is_chronoboosted": false, + "time": "10:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 89, + "frame": 9837, + "is_chronoboosted": false, + "time": "10:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 89, + "frame": 9837, + "is_chronoboosted": false, + "time": "10:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 90, + "frame": 9952, + "is_chronoboosted": false, + "time": "10:22" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 90, + "frame": 9952, + "is_chronoboosted": false, + "time": "10:22" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 90, + "frame": 9957, + "is_chronoboosted": false, + "time": "10:22" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 90, + "frame": 9957, + "is_chronoboosted": false, + "time": "10:22" + }, + { + "is_worker": false, + "name": "BanelingNest", + "clock_position": null, + "supply": 90, + "frame": 9973, + "is_chronoboosted": false, + "time": "10:23" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 90, + "frame": 10031, + "is_chronoboosted": false, + "time": "10:26" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 90, + "frame": 10033, + "is_chronoboosted": false, + "time": "10:27" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 10152, + "is_chronoboosted": false, + "time": "10:34" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 10152, + "is_chronoboosted": false, + "time": "10:34" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 10154, + "is_chronoboosted": false, + "time": "10:34" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 10154, + "is_chronoboosted": false, + "time": "10:34" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 10191, + "is_chronoboosted": false, + "time": "10:36" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 10191, + "is_chronoboosted": false, + "time": "10:36" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 10222, + "is_chronoboosted": false, + "time": "10:38" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 10222, + "is_chronoboosted": false, + "time": "10:38" + }, + { + "is_worker": false, + "name": "SpineCrawler", + "clock_position": null, + "supply": 93, + "frame": 10227, + "is_chronoboosted": false, + "time": "10:39" + }, + { + "is_worker": false, + "name": "SpineCrawler", + "clock_position": null, + "supply": 96, + "frame": 10247, + "is_chronoboosted": false, + "time": "10:40" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 96, + "frame": 10281, + "is_chronoboosted": false, + "time": "10:42" + }, + { + "is_worker": false, + "name": "ZergGroundArmorsLevel1", + "clock_position": null, + "supply": 96, + "frame": 10393, + "is_chronoboosted": false, + "time": "10:49" + }, + { + "is_worker": false, + "name": "ZergMeleeWeaponsLevel1", + "clock_position": null, + "supply": 96, + "frame": 10393, + "is_chronoboosted": false, + "time": "10:49" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 10455, + "is_chronoboosted": false, + "time": "10:53" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 10455, + "is_chronoboosted": false, + "time": "10:53" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 10461, + "is_chronoboosted": false, + "time": "10:53" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 10461, + "is_chronoboosted": false, + "time": "10:53" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 10464, + "is_chronoboosted": false, + "time": "10:54" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 10464, + "is_chronoboosted": false, + "time": "10:54" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 10469, + "is_chronoboosted": false, + "time": "10:54" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 10469, + "is_chronoboosted": false, + "time": "10:54" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 95, + "frame": 10526, + "is_chronoboosted": false, + "time": "10:57" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 99, + "frame": 10574, + "is_chronoboosted": false, + "time": "11:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 99, + "frame": 10574, + "is_chronoboosted": false, + "time": "11:00" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 99, + "frame": 10585, + "is_chronoboosted": false, + "time": "11:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 99, + "frame": 10585, + "is_chronoboosted": false, + "time": "11:01" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 99, + "frame": 10633, + "is_chronoboosted": false, + "time": "11:04" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 99, + "frame": 10633, + "is_chronoboosted": false, + "time": "11:04" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 99, + "frame": 10669, + "is_chronoboosted": false, + "time": "11:06" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 99, + "frame": 10669, + "is_chronoboosted": false, + "time": "11:06" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 84, + "frame": 10723, + "is_chronoboosted": false, + "time": "11:10" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 84, + "frame": 10723, + "is_chronoboosted": false, + "time": "11:10" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 84, + "frame": 10725, + "is_chronoboosted": false, + "time": "11:10" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 84, + "frame": 10725, + "is_chronoboosted": false, + "time": "11:10" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 84, + "frame": 10759, + "is_chronoboosted": false, + "time": "11:12" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 84, + "frame": 10759, + "is_chronoboosted": false, + "time": "11:12" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 84, + "frame": 10877, + "is_chronoboosted": false, + "time": "11:19" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 69, + "frame": 10880, + "is_chronoboosted": false, + "time": "11:20" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 82, + "frame": 10903, + "is_chronoboosted": false, + "time": "11:21" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 82, + "frame": 10908, + "is_chronoboosted": false, + "time": "11:21" + }, + { + "is_worker": false, + "name": "GreaterSpire", + "clock_position": null, + "supply": 82, + "frame": 10972, + "is_chronoboosted": false, + "time": "11:25" + }, + { + "is_worker": false, + "name": "Baneling", + "clock_position": null, + "supply": 82, + "frame": 11015, + "is_chronoboosted": false, + "time": "11:28" + }, + { + "is_worker": false, + "name": "Baneling", + "clock_position": null, + "supply": 82, + "frame": 11018, + "is_chronoboosted": false, + "time": "11:28" + }, + { + "is_worker": false, + "name": "Baneling", + "clock_position": null, + "supply": 82, + "frame": 11024, + "is_chronoboosted": false, + "time": "11:29" + }, + { + "is_worker": false, + "name": "Baneling", + "clock_position": null, + "supply": 82, + "frame": 11026, + "is_chronoboosted": false, + "time": "11:29" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 85, + "frame": 11083, + "is_chronoboosted": false, + "time": "11:32" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 85, + "frame": 11167, + "is_chronoboosted": false, + "time": "11:37" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 85, + "frame": 11181, + "is_chronoboosted": false, + "time": "11:38" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 85, + "frame": 11184, + "is_chronoboosted": false, + "time": "11:39" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 89, + "frame": 11266, + "is_chronoboosted": false, + "time": "11:44" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 89, + "frame": 11268, + "is_chronoboosted": false, + "time": "11:44" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 89, + "frame": 11271, + "is_chronoboosted": false, + "time": "11:44" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 90, + "frame": 11361, + "is_chronoboosted": false, + "time": "11:50" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 90, + "frame": 11361, + "is_chronoboosted": false, + "time": "11:50" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 90, + "frame": 11381, + "is_chronoboosted": false, + "time": "11:51" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 90, + "frame": 11381, + "is_chronoboosted": false, + "time": "11:51" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 90, + "frame": 11420, + "is_chronoboosted": false, + "time": "11:53" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 90, + "frame": 11420, + "is_chronoboosted": false, + "time": "11:53" + }, + { + "is_worker": false, + "name": "Corruptor", + "clock_position": null, + "supply": 82, + "frame": 11642, + "is_chronoboosted": false, + "time": "12:07" + }, + { + "is_worker": false, + "name": "Corruptor", + "clock_position": null, + "supply": 82, + "frame": 11645, + "is_chronoboosted": false, + "time": "12:07" + }, + { + "is_worker": false, + "name": "Corruptor", + "clock_position": null, + "supply": 82, + "frame": 11648, + "is_chronoboosted": false, + "time": "12:08" + }, + { + "is_worker": false, + "name": "Corruptor", + "clock_position": null, + "supply": 82, + "frame": 11654, + "is_chronoboosted": false, + "time": "12:08" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 90, + "frame": 11724, + "is_chronoboosted": false, + "time": "12:12" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 90, + "frame": 11724, + "is_chronoboosted": false, + "time": "12:12" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 90, + "frame": 11727, + "is_chronoboosted": false, + "time": "12:12" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 90, + "frame": 11727, + "is_chronoboosted": false, + "time": "12:12" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 90, + "frame": 11839, + "is_chronoboosted": false, + "time": "12:19" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 90, + "frame": 11839, + "is_chronoboosted": false, + "time": "12:19" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 11873, + "is_chronoboosted": false, + "time": "12:22" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 11873, + "is_chronoboosted": false, + "time": "12:22" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 11890, + "is_chronoboosted": false, + "time": "12:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 11890, + "is_chronoboosted": false, + "time": "12:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 11924, + "is_chronoboosted": false, + "time": "12:25" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 11924, + "is_chronoboosted": false, + "time": "12:25" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 11952, + "is_chronoboosted": false, + "time": "12:27" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 11952, + "is_chronoboosted": false, + "time": "12:27" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 11955, + "is_chronoboosted": false, + "time": "12:27" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 11955, + "is_chronoboosted": false, + "time": "12:27" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 11969, + "is_chronoboosted": false, + "time": "12:28" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 11969, + "is_chronoboosted": false, + "time": "12:28" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 11974, + "is_chronoboosted": false, + "time": "12:28" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 93, + "frame": 11974, + "is_chronoboosted": false, + "time": "12:28" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 12076, + "is_chronoboosted": false, + "time": "12:34" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 12076, + "is_chronoboosted": false, + "time": "12:34" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 12081, + "is_chronoboosted": false, + "time": "12:35" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 12081, + "is_chronoboosted": false, + "time": "12:35" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 95, + "frame": 12090, + "is_chronoboosted": false, + "time": "12:35" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 12135, + "is_chronoboosted": false, + "time": "12:38" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 12135, + "is_chronoboosted": false, + "time": "12:38" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 12138, + "is_chronoboosted": false, + "time": "12:38" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 12138, + "is_chronoboosted": false, + "time": "12:38" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 12143, + "is_chronoboosted": false, + "time": "12:38" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 95, + "frame": 12143, + "is_chronoboosted": false, + "time": "12:38" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 102, + "frame": 12298, + "is_chronoboosted": false, + "time": "12:48" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 102, + "frame": 12298, + "is_chronoboosted": false, + "time": "12:48" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 102, + "frame": 12304, + "is_chronoboosted": false, + "time": "12:49" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 102, + "frame": 12304, + "is_chronoboosted": false, + "time": "12:49" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 104, + "frame": 12388, + "is_chronoboosted": false, + "time": "12:54" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 104, + "frame": 12388, + "is_chronoboosted": false, + "time": "12:54" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 104, + "frame": 12464, + "is_chronoboosted": false, + "time": "12:59" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 104, + "frame": 12467, + "is_chronoboosted": false, + "time": "12:59" + }, + { + "is_worker": false, + "name": "BroodLord", + "clock_position": null, + "supply": 109, + "frame": 12575, + "is_chronoboosted": false, + "time": "13:05" + }, + { + "is_worker": false, + "name": "BroodLord", + "clock_position": null, + "supply": 109, + "frame": 12578, + "is_chronoboosted": false, + "time": "13:06" + }, + { + "is_worker": false, + "name": "Corruptor", + "clock_position": null, + "supply": 109, + "frame": 12627, + "is_chronoboosted": false, + "time": "13:09" + }, + { + "is_worker": false, + "name": "Corruptor", + "clock_position": null, + "supply": 109, + "frame": 12627, + "is_chronoboosted": false, + "time": "13:09" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 113, + "frame": 12689, + "is_chronoboosted": false, + "time": "13:13" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 113, + "frame": 12689, + "is_chronoboosted": false, + "time": "13:13" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 113, + "frame": 12703, + "is_chronoboosted": false, + "time": "13:13" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 113, + "frame": 12703, + "is_chronoboosted": false, + "time": "13:13" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 113, + "frame": 12706, + "is_chronoboosted": false, + "time": "13:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 113, + "frame": 12706, + "is_chronoboosted": false, + "time": "13:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 113, + "frame": 12720, + "is_chronoboosted": false, + "time": "13:15" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 113, + "frame": 12720, + "is_chronoboosted": false, + "time": "13:15" + }, + { + "is_worker": false, + "name": "Corruptor", + "clock_position": null, + "supply": 109, + "frame": 12855, + "is_chronoboosted": false, + "time": "13:23" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 112, + "frame": 12979, + "is_chronoboosted": false, + "time": "13:31" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 112, + "frame": 12979, + "is_chronoboosted": false, + "time": "13:31" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 112, + "frame": 12984, + "is_chronoboosted": false, + "time": "13:31" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 112, + "frame": 12984, + "is_chronoboosted": false, + "time": "13:31" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 112, + "frame": 12987, + "is_chronoboosted": false, + "time": "13:31" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 112, + "frame": 12987, + "is_chronoboosted": false, + "time": "13:31" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 112, + "frame": 13100, + "is_chronoboosted": false, + "time": "13:38" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 112, + "frame": 13100, + "is_chronoboosted": false, + "time": "13:38" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 112, + "frame": 13116, + "is_chronoboosted": false, + "time": "13:39" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 112, + "frame": 13116, + "is_chronoboosted": false, + "time": "13:39" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 115, + "frame": 13164, + "is_chronoboosted": false, + "time": "13:42" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 115, + "frame": 13164, + "is_chronoboosted": false, + "time": "13:42" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 115, + "frame": 13206, + "is_chronoboosted": false, + "time": "13:45" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 115, + "frame": 13206, + "is_chronoboosted": false, + "time": "13:45" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 115, + "frame": 13212, + "is_chronoboosted": false, + "time": "13:45" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 115, + "frame": 13212, + "is_chronoboosted": false, + "time": "13:45" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 115, + "frame": 13229, + "is_chronoboosted": false, + "time": "13:46" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 115, + "frame": 13263, + "is_chronoboosted": false, + "time": "13:48" + }, + { + "is_worker": false, + "name": "Corruptor", + "clock_position": null, + "supply": 111, + "frame": 13308, + "is_chronoboosted": false, + "time": "13:51" + }, + { + "is_worker": false, + "name": "Corruptor", + "clock_position": null, + "supply": 111, + "frame": 13387, + "is_chronoboosted": false, + "time": "13:56" + }, + { + "is_worker": false, + "name": "Corruptor", + "clock_position": null, + "supply": 111, + "frame": 13392, + "is_chronoboosted": false, + "time": "13:57" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 115, + "frame": 13564, + "is_chronoboosted": false, + "time": "14:07" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 115, + "frame": 13564, + "is_chronoboosted": false, + "time": "14:07" + }, + { + "is_worker": false, + "name": "SpineCrawler", + "clock_position": null, + "supply": 116, + "frame": 13660, + "is_chronoboosted": false, + "time": "14:13" + }, + { + "is_worker": false, + "name": "SporeCrawler", + "clock_position": null, + "supply": 116, + "frame": 13729, + "is_chronoboosted": false, + "time": "14:18" + }, + { + "is_worker": false, + "name": "SpineCrawler", + "clock_position": null, + "supply": 116, + "frame": 13734, + "is_chronoboosted": false, + "time": "14:18" + }, + { + "is_worker": false, + "name": "SpineCrawler", + "clock_position": null, + "supply": 116, + "frame": 13758, + "is_chronoboosted": false, + "time": "14:19" + }, + { + "is_worker": false, + "name": "SpineCrawler", + "clock_position": null, + "supply": 113, + "frame": 13812, + "is_chronoboosted": false, + "time": "14:23" + }, + { + "is_worker": false, + "name": "Corruptor", + "clock_position": null, + "supply": 113, + "frame": 13870, + "is_chronoboosted": false, + "time": "14:26" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 114, + "frame": 13938, + "is_chronoboosted": false, + "time": "14:31" + }, + { + "is_worker": false, + "name": "Corruptor", + "clock_position": null, + "supply": 114, + "frame": 13949, + "is_chronoboosted": false, + "time": "14:31" + }, + { + "is_worker": false, + "name": "SpineCrawler", + "clock_position": null, + "supply": 114, + "frame": 13951, + "is_chronoboosted": false, + "time": "14:31" + }, + { + "is_worker": false, + "name": "Corruptor", + "clock_position": null, + "supply": 114, + "frame": 13955, + "is_chronoboosted": false, + "time": "14:32" + }, + { + "is_worker": false, + "name": "SpineCrawler", + "clock_position": null, + "supply": 114, + "frame": 13973, + "is_chronoboosted": false, + "time": "14:33" + }, + { + "is_worker": false, + "name": "ZergMeleeWeaponsLevel2", + "clock_position": null, + "supply": 114, + "frame": 14003, + "is_chronoboosted": false, + "time": "14:35" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 118, + "frame": 14146, + "is_chronoboosted": false, + "time": "14:44" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 118, + "frame": 14149, + "is_chronoboosted": false, + "time": "14:44" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 118, + "frame": 14152, + "is_chronoboosted": false, + "time": "14:44" + }, + { + "is_worker": false, + "name": "BroodLord", + "clock_position": null, + "supply": 118, + "frame": 14212, + "is_chronoboosted": false, + "time": "14:48" + }, + { + "is_worker": false, + "name": "BroodLord", + "clock_position": null, + "supply": 118, + "frame": 14213, + "is_chronoboosted": false, + "time": "14:48" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 118, + "frame": 14233, + "is_chronoboosted": false, + "time": "14:49" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 118, + "frame": 14236, + "is_chronoboosted": false, + "time": "14:49" + }, + { + "is_worker": false, + "name": "UltraliskCavern", + "clock_position": null, + "supply": 125, + "frame": 14391, + "is_chronoboosted": false, + "time": "14:59" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 114, + "frame": 14683, + "is_chronoboosted": false, + "time": "15:17" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 114, + "frame": 14703, + "is_chronoboosted": false, + "time": "15:18" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 116, + "frame": 14818, + "is_chronoboosted": false, + "time": "15:26" + }, + { + "is_worker": false, + "name": "Queen", + "clock_position": null, + "supply": 116, + "frame": 14821, + "is_chronoboosted": false, + "time": "15:26" + }, + { + "is_worker": false, + "name": "ZergGroundArmorsLevel2", + "clock_position": null, + "supply": 116, + "frame": 14861, + "is_chronoboosted": false, + "time": "15:28" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 120, + "frame": 15024, + "is_chronoboosted": false, + "time": "15:39" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 119, + "frame": 15460, + "is_chronoboosted": false, + "time": "16:06" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 119, + "frame": 15462, + "is_chronoboosted": false, + "time": "16:06" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 119, + "frame": 15519, + "is_chronoboosted": false, + "time": "16:09" + }, + { + "is_worker": false, + "name": "ChitinousPlating", + "clock_position": null, + "supply": 131, + "frame": 15533, + "is_chronoboosted": false, + "time": "16:10" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 131, + "frame": 15600, + "is_chronoboosted": false, + "time": "16:15" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 131, + "frame": 15699, + "is_chronoboosted": false, + "time": "16:21" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 131, + "frame": 15817, + "is_chronoboosted": false, + "time": "16:28" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 131, + "frame": 15831, + "is_chronoboosted": false, + "time": "16:29" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 132, + "frame": 15901, + "is_chronoboosted": false, + "time": "16:33" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 133, + "frame": 16059, + "is_chronoboosted": false, + "time": "16:43" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 138, + "frame": 16214, + "is_chronoboosted": false, + "time": "16:53" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 144, + "frame": 16337, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 144, + "frame": 16340, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 144, + "frame": 16343, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 144, + "frame": 16349, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": true, + "name": "Drone", + "clock_position": null, + "supply": 144, + "frame": 16351, + "is_chronoboosted": false, + "time": "17:01" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 149, + "frame": 16526, + "is_chronoboosted": false, + "time": "17:12" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 155, + "frame": 16686, + "is_chronoboosted": false, + "time": "17:22" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 161, + "frame": 16889, + "is_chronoboosted": false, + "time": "17:35" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 161, + "frame": 16891, + "is_chronoboosted": false, + "time": "17:35" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 161, + "frame": 16894, + "is_chronoboosted": false, + "time": "17:35" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 161, + "frame": 17102, + "is_chronoboosted": false, + "time": "17:48" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 159, + "frame": 17122, + "is_chronoboosted": false, + "time": "17:50" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 159, + "frame": 17271, + "is_chronoboosted": false, + "time": "17:59" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 159, + "frame": 17274, + "is_chronoboosted": false, + "time": "17:59" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 159, + "frame": 17277, + "is_chronoboosted": false, + "time": "17:59" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 165, + "frame": 17569, + "is_chronoboosted": false, + "time": "18:18" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 171, + "frame": 17679, + "is_chronoboosted": false, + "time": "18:24" + }, + { + "is_worker": false, + "name": "Overlord", + "clock_position": null, + "supply": 171, + "frame": 17752, + "is_chronoboosted": false, + "time": "18:29" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 177, + "frame": 17938, + "is_chronoboosted": false, + "time": "18:41" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 183, + "frame": 18200, + "is_chronoboosted": false, + "time": "18:57" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18461, + "is_chronoboosted": false, + "time": "19:13" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18461, + "is_chronoboosted": false, + "time": "19:13" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18472, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18472, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18472, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18472, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18475, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18475, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18475, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18475, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18475, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18475, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18475, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18475, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18478, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18478, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18478, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18478, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18478, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18478, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18478, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Zergling", + "clock_position": null, + "supply": 189, + "frame": 18478, + "is_chronoboosted": false, + "time": "19:14" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 174, + "frame": 19229, + "is_chronoboosted": false, + "time": "20:01" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 174, + "frame": 19232, + "is_chronoboosted": false, + "time": "20:02" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 174, + "frame": 19235, + "is_chronoboosted": false, + "time": "20:02" + }, + { + "is_worker": false, + "name": "Ultralisk", + "clock_position": null, + "supply": 172, + "frame": 19530, + "is_chronoboosted": false, + "time": "20:20" + } + ], + "abilities": [ + { + "frame": 4340, + "name": "SpawnLarva", + "time": "4:31" + }, + { + "frame": 5170, + "name": "SpawnLarva", + "time": "5:23" + }, + { + "frame": 5181, + "name": "SpawnLarva", + "time": "5:23" + }, + { + "frame": 5921, + "name": "SpawnLarva", + "time": "6:10" + }, + { + "frame": 5926, + "name": "SpawnLarva", + "time": "6:10" + }, + { + "frame": 6610, + "name": "SpawnLarva", + "time": "6:53" + }, + { + "frame": 6624, + "name": "SpawnLarva", + "time": "6:54" + }, + { + "frame": 7299, + "name": "SpawnLarva", + "time": "7:36" + }, + { + "frame": 7569, + "name": "SpawnLarva", + "time": "7:53" + }, + { + "frame": 7851, + "name": "SpawnLarva", + "time": "8:10" + }, + { + "frame": 8056, + "name": "SpawnLarva", + "time": "8:23" + }, + { + "frame": 8062, + "name": "SpawnLarva", + "time": "8:23" + }, + { + "frame": 8250, + "name": "SpawnLarva", + "time": "8:35" + }, + { + "frame": 8469, + "name": "SpawnLarva", + "time": "8:49" + }, + { + "frame": 8807, + "name": "SpawnLarva", + "time": "9:10" + }, + { + "frame": 9038, + "name": "SpawnLarva", + "time": "9:24" + }, + { + "frame": 9220, + "name": "SpawnLarva", + "time": "9:36" + }, + { + "frame": 9783, + "name": "SpawnLarva", + "time": "10:11" + }, + { + "frame": 9808, + "name": "SpawnLarva", + "time": "10:13" + }, + { + "frame": 9997, + "name": "SpawnLarva", + "time": "10:24" + }, + { + "frame": 10703, + "name": "QueenTransfusion", + "time": "11:08" + }, + { + "frame": 10768, + "name": "QueenTransfusion", + "time": "11:13" + }, + { + "frame": 10807, + "name": "QueenTransfusion", + "time": "11:15" + }, + { + "frame": 10830, + "name": "QueenTransfusion", + "time": "11:16" + }, + { + "frame": 10939, + "name": "SpawnLarva", + "time": "11:23" + }, + { + "frame": 10950, + "name": "SpawnLarva", + "time": "11:24" + }, + { + "frame": 10962, + "name": "SpawnLarva", + "time": "11:25" + }, + { + "frame": 11232, + "name": "SpawnLarva", + "time": "11:42" + }, + { + "frame": 11243, + "name": "SpawnLarva", + "time": "11:42" + }, + { + "frame": 11634, + "name": "SpawnLarva", + "time": "12:07" + }, + { + "frame": 12048, + "name": "SpawnLarva", + "time": "12:33" + }, + { + "frame": 12059, + "name": "SpawnLarva", + "time": "12:33" + }, + { + "frame": 12453, + "name": "SpawnLarva", + "time": "12:58" + }, + { + "frame": 12776, + "name": "SpawnLarva", + "time": "13:18" + }, + { + "frame": 12787, + "name": "SpawnLarva", + "time": "13:19" + }, + { + "frame": 13021, + "name": "QueenTransfusion", + "time": "13:33" + }, + { + "frame": 13603, + "name": "SpawnLarva", + "time": "14:10" + }, + { + "frame": 13763, + "name": "SpawnLarva", + "time": "14:20" + }, + { + "frame": 14140, + "name": "SpawnLarva", + "time": "14:43" + }, + { + "frame": 14289, + "name": "SpawnLarva", + "time": "14:53" + }, + { + "frame": 14323, + "name": "SpawnLarva", + "time": "14:55" + }, + { + "frame": 14717, + "name": "SpawnLarva", + "time": "15:19" + }, + { + "frame": 14981, + "name": "QueenTransfusion", + "time": "15:36" + }, + { + "frame": 14998, + "name": "SpawnLarva", + "time": "15:37" + }, + { + "frame": 15041, + "name": "SpawnLarva", + "time": "15:40" + }, + { + "frame": 15069, + "name": "SpawnLarva", + "time": "15:41" + }, + { + "frame": 15086, + "name": "SpawnLarva", + "time": "15:42" + }, + { + "frame": 15744, + "name": "SpawnLarva", + "time": "16:24" + }, + { + "frame": 15794, + "name": "SpawnLarva", + "time": "16:27" + }, + { + "frame": 15997, + "name": "SpawnLarva", + "time": "16:39" + }, + { + "frame": 17043, + "name": "SpawnLarva", + "time": "17:45" + }, + { + "frame": 17069, + "name": "SpawnLarva", + "time": "17:46" + }, + { + "frame": 17249, + "name": "SpawnLarva", + "time": "17:58" + }, + { + "frame": 17553, + "name": "QueenTransfusion", + "time": "18:17" + }, + { + "frame": 18000, + "name": "SpawnLarva", + "time": "18:45" + }, + { + "frame": 19148, + "name": "QueenTransfusion", + "time": "19:56" + }, + { + "frame": 19153, + "name": "QueenTransfusion", + "time": "19:57" + }, + { + "frame": 19164, + "name": "QueenTransfusion", + "time": "19:57" + }, + { + "frame": 19173, + "name": "QueenTransfusion", + "time": "19:58" + }, + { + "frame": 19187, + "name": "QueenTransfusion", + "time": "19:59" + }, + { + "frame": 19190, + "name": "QueenTransfusion", + "time": "19:59" + }, + { + "frame": 19195, + "name": "QueenTransfusion", + "time": "19:59" + }, + { + "frame": 19198, + "name": "QueenTransfusion", + "time": "19:59" + }, + { + "frame": 19201, + "name": "QueenTransfusion", + "time": "20:00" + }, + { + "frame": 19207, + "name": "QueenTransfusion", + "time": "20:00" + }, + { + "frame": 19209, + "name": "QueenTransfusion", + "time": "20:00" + }, + { + "frame": 19215, + "name": "QueenTransfusion", + "time": "20:00" + }, + { + "frame": 19252, + "name": "QueenTransfusion", + "time": "20:03" + }, + { + "frame": 19257, + "name": "QueenTransfusion", + "time": "20:03" + }, + { + "frame": 19313, + "name": "QueenTransfusion", + "time": "20:07" + }, + { + "frame": 20020, + "name": "QueenTransfusion", + "time": "20:51" + }, + { + "frame": 20360, + "name": "QueenTransfusion", + "time": "21:12" + }, + { + "frame": 20498, + "name": "QueenTransfusion", + "time": "21:21" + }, + { + "frame": 20503, + "name": "QueenTransfusion", + "time": "21:21" + }, + { + "frame": 20506, + "name": "QueenTransfusion", + "time": "21:21" + }, + { + "frame": 20509, + "name": "QueenTransfusion", + "time": "21:21" + }, + { + "frame": 20515, + "name": "QueenTransfusion", + "time": "21:22" + }, + { + "frame": 20540, + "name": "QueenTransfusion", + "time": "21:23" + }, + { + "frame": 20543, + "name": "QueenTransfusion", + "time": "21:23" + }, + { + "frame": 20546, + "name": "QueenTransfusion", + "time": "21:24" + }, + { + "frame": 20551, + "name": "QueenTransfusion", + "time": "21:24" + }, + { + "frame": 20557, + "name": "QueenTransfusion", + "time": "21:24" + }, + { + "frame": 20560, + "name": "QueenTransfusion", + "time": "21:25" + }, + { + "frame": 20562, + "name": "QueenTransfusion", + "time": "21:25" + }, + { + "frame": 20571, + "name": "QueenTransfusion", + "time": "21:25" + }, + { + "frame": 20577, + "name": "QueenTransfusion", + "time": "21:26" + } + ], + "name": "LiquidTLO", + "is_human": true, + "level": 37, + "handicap": 100, + "region": "eu", + "is_winner": true, + "pick_race": "Zerg", + "clock_position": null, + "commander": null, + "color": "0042FF", + "unitsLost": [ + { + "frame": 3513, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "3:39" + }, + { + "frame": 3655, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "3:48" + }, + { + "frame": 4621, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "4:48" + }, + { + "frame": 5105, + "killer": 2, + "name": "Extractor", + "clock_position": null, + "time": "5:19" + }, + { + "frame": 6597, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "6:52" + }, + { + "frame": 6934, + "killer": 2, + "name": "EvolutionChamber", + "clock_position": null, + "time": "7:13" + }, + { + "frame": 6934, + "killer": 2, + "name": "EvolutionChamber", + "clock_position": null, + "time": "7:13" + }, + { + "frame": 6955, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "7:14" + }, + { + "frame": 7022, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "7:18" + }, + { + "frame": 7043, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "7:20" + }, + { + "frame": 7085, + "killer": 1, + "name": "Overlord", + "clock_position": null, + "time": "7:22" + }, + { + "frame": 7177, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "7:28" + }, + { + "frame": 7410, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "7:43" + }, + { + "frame": 7482, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "7:47" + }, + { + "frame": 7488, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "7:48" + }, + { + "frame": 7589, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "7:54" + }, + { + "frame": 7650, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "7:58" + }, + { + "frame": 7650, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "7:58" + }, + { + "frame": 8466, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "8:49" + }, + { + "frame": 8487, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "8:50" + }, + { + "frame": 8610, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "8:58" + }, + { + "frame": 8775, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "9:08" + }, + { + "frame": 8805, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "9:10" + }, + { + "frame": 8840, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "9:12" + }, + { + "frame": 8840, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "9:12" + }, + { + "frame": 9032, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "9:24" + }, + { + "frame": 9530, + "killer": 1, + "name": "Overlord", + "clock_position": null, + "time": "9:55" + }, + { + "frame": 9969, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "10:23" + }, + { + "frame": 10364, + "killer": 1, + "name": "Overlord", + "clock_position": null, + "time": "10:47" + }, + { + "frame": 10368, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "10:48" + }, + { + "frame": 10372, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "10:48" + }, + { + "frame": 10543, + "killer": 1, + "name": "Overlord", + "clock_position": null, + "time": "10:58" + }, + { + "frame": 10564, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "11:00" + }, + { + "frame": 10565, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "11:00" + }, + { + "frame": 10578, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "11:01" + }, + { + "frame": 10596, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:02" + }, + { + "frame": 10627, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:04" + }, + { + "frame": 10629, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "11:04" + }, + { + "frame": 10631, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:04" + }, + { + "frame": 10669, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:06" + }, + { + "frame": 10669, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:06" + }, + { + "frame": 10669, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:06" + }, + { + "frame": 10669, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:06" + }, + { + "frame": 10671, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "11:06" + }, + { + "frame": 10671, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "11:06" + }, + { + "frame": 10675, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:07" + }, + { + "frame": 10675, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:07" + }, + { + "frame": 10675, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:07" + }, + { + "frame": 10681, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:07" + }, + { + "frame": 10681, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:07" + }, + { + "frame": 10681, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:07" + }, + { + "frame": 10693, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "11:08" + }, + { + "frame": 10693, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "11:08" + }, + { + "frame": 10693, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "11:08" + }, + { + "frame": 10701, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:08" + }, + { + "frame": 10703, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "11:08" + }, + { + "frame": 10703, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:08" + }, + { + "frame": 10703, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:08" + }, + { + "frame": 10703, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:08" + }, + { + "frame": 10705, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "11:09" + }, + { + "frame": 10724, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "11:10" + }, + { + "frame": 10724, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:10" + }, + { + "frame": 10729, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:10" + }, + { + "frame": 10731, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:10" + }, + { + "frame": 10735, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:10" + }, + { + "frame": 10737, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "11:11" + }, + { + "frame": 10765, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:12" + }, + { + "frame": 10768, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:13" + }, + { + "frame": 10768, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:13" + }, + { + "frame": 10773, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:13" + }, + { + "frame": 10773, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:13" + }, + { + "frame": 10833, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "11:17" + }, + { + "frame": 10933, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "11:23" + }, + { + "frame": 11028, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "11:29" + }, + { + "frame": 11047, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "11:30" + }, + { + "frame": 11335, + "killer": null, + "name": "Zergling", + "clock_position": null, + "time": "11:48" + }, + { + "frame": 11338, + "killer": null, + "name": "Zergling", + "clock_position": null, + "time": "11:48" + }, + { + "frame": 11338, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:48" + }, + { + "frame": 11344, + "killer": null, + "name": "Zergling", + "clock_position": null, + "time": "11:49" + }, + { + "frame": 11344, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:49" + }, + { + "frame": 11344, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:49" + }, + { + "frame": 11346, + "killer": null, + "name": "Zergling", + "clock_position": null, + "time": "11:49" + }, + { + "frame": 11356, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:49" + }, + { + "frame": 11370, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:50" + }, + { + "frame": 11371, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:50" + }, + { + "frame": 11372, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:50" + }, + { + "frame": 11373, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:50" + }, + { + "frame": 11378, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:51" + }, + { + "frame": 11390, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:51" + }, + { + "frame": 11403, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:52" + }, + { + "frame": 11403, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:52" + }, + { + "frame": 11403, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:52" + }, + { + "frame": 11403, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:52" + }, + { + "frame": 11410, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:53" + }, + { + "frame": 11424, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:54" + }, + { + "frame": 11436, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:54" + }, + { + "frame": 11442, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:55" + }, + { + "frame": 11443, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:55" + }, + { + "frame": 11443, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:55" + }, + { + "frame": 11468, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:56" + }, + { + "frame": 11468, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:56" + }, + { + "frame": 11495, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:58" + }, + { + "frame": 11499, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:58" + }, + { + "frame": 11510, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:59" + }, + { + "frame": 11512, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "11:59" + }, + { + "frame": 11527, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "12:00" + }, + { + "frame": 11594, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "12:04" + }, + { + "frame": 11615, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "12:05" + }, + { + "frame": 11639, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "12:07" + }, + { + "frame": 11687, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "12:10" + }, + { + "frame": 11706, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "12:11" + }, + { + "frame": 11775, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "12:15" + }, + { + "frame": 11920, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "12:25" + }, + { + "frame": 11920, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "12:25" + }, + { + "frame": 11920, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "12:25" + }, + { + "frame": 11920, + "killer": 2, + "name": "Baneling", + "clock_position": null, + "time": "12:25" + }, + { + "frame": 11921, + "killer": 2, + "name": "Baneling", + "clock_position": null, + "time": "12:25" + }, + { + "frame": 11921, + "killer": 2, + "name": "Baneling", + "clock_position": null, + "time": "12:25" + }, + { + "frame": 11921, + "killer": 2, + "name": "Baneling", + "clock_position": null, + "time": "12:25" + }, + { + "frame": 11940, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "12:26" + }, + { + "frame": 11990, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "12:29" + }, + { + "frame": 11993, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "12:29" + }, + { + "frame": 12024, + "killer": 1, + "name": "Overlord", + "clock_position": null, + "time": "12:31" + }, + { + "frame": 12665, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:11" + }, + { + "frame": 12667, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:11" + }, + { + "frame": 12678, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:12" + }, + { + "frame": 12681, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:12" + }, + { + "frame": 12682, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:12" + }, + { + "frame": 12686, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:12" + }, + { + "frame": 12693, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:13" + }, + { + "frame": 12695, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:13" + }, + { + "frame": 12697, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:13" + }, + { + "frame": 12697, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:13" + }, + { + "frame": 12714, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:14" + }, + { + "frame": 12723, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:15" + }, + { + "frame": 12728, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:15" + }, + { + "frame": 12728, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:15" + }, + { + "frame": 12728, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:15" + }, + { + "frame": 12765, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "13:17" + }, + { + "frame": 12821, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "13:21" + }, + { + "frame": 12898, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:26" + }, + { + "frame": 12916, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:27" + }, + { + "frame": 12921, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:27" + }, + { + "frame": 12921, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:27" + }, + { + "frame": 12929, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:28" + }, + { + "frame": 12934, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:28" + }, + { + "frame": 13015, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "13:33" + }, + { + "frame": 13060, + "killer": 1, + "name": "Queen", + "clock_position": null, + "time": "13:36" + }, + { + "frame": 13124, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:40" + }, + { + "frame": 13124, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:40" + }, + { + "frame": 13124, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:40" + }, + { + "frame": 13126, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:40" + }, + { + "frame": 13126, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:40" + }, + { + "frame": 13156, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:42" + }, + { + "frame": 13156, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:42" + }, + { + "frame": 13167, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:42" + }, + { + "frame": 13172, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:43" + }, + { + "frame": 13187, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:44" + }, + { + "frame": 13187, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:44" + }, + { + "frame": 13187, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:44" + }, + { + "frame": 13193, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:44" + }, + { + "frame": 13197, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:44" + }, + { + "frame": 13202, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "13:45" + }, + { + "frame": 13333, + "killer": 1, + "name": "Corruptor", + "clock_position": null, + "time": "13:53" + }, + { + "frame": 13738, + "killer": 2, + "name": "SporeCrawler", + "clock_position": null, + "time": "14:18" + }, + { + "frame": 14412, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "15:00" + }, + { + "frame": 14412, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "15:00" + }, + { + "frame": 14418, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "15:01" + }, + { + "frame": 14418, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "15:01" + }, + { + "frame": 14418, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "15:01" + }, + { + "frame": 14430, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "15:01" + }, + { + "frame": 14437, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "15:02" + }, + { + "frame": 14444, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "15:02" + }, + { + "frame": 14451, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "15:03" + }, + { + "frame": 14461, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "15:03" + }, + { + "frame": 14471, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "15:04" + }, + { + "frame": 14535, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "15:08" + }, + { + "frame": 14559, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "15:09" + }, + { + "frame": 14613, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "15:13" + }, + { + "frame": 14751, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "15:21" + }, + { + "frame": 14774, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "15:23" + }, + { + "frame": 15158, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "15:47" + }, + { + "frame": 15158, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "15:47" + }, + { + "frame": 15207, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "15:50" + }, + { + "frame": 15207, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "15:50" + }, + { + "frame": 15247, + "killer": 1, + "name": "Overlord", + "clock_position": null, + "time": "15:52" + }, + { + "frame": 15431, + "killer": null, + "name": "Drone", + "clock_position": null, + "time": "16:04" + }, + { + "frame": 15693, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:20" + }, + { + "frame": 15732, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:23" + }, + { + "frame": 15746, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:24" + }, + { + "frame": 15748, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:24" + }, + { + "frame": 15771, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:25" + }, + { + "frame": 15784, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:26" + }, + { + "frame": 15798, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:27" + }, + { + "frame": 15803, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:27" + }, + { + "frame": 15817, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:28" + }, + { + "frame": 15839, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:29" + }, + { + "frame": 15840, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:30" + }, + { + "frame": 15857, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:31" + }, + { + "frame": 15870, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:31" + }, + { + "frame": 15879, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:32" + }, + { + "frame": 15881, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:32" + }, + { + "frame": 15883, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:32" + }, + { + "frame": 15886, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:32" + }, + { + "frame": 15896, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:33" + }, + { + "frame": 15910, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:34" + }, + { + "frame": 16082, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:45" + }, + { + "frame": 16139, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:48" + }, + { + "frame": 16229, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "16:54" + }, + { + "frame": 16814, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "17:30" + }, + { + "frame": 16885, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "17:35" + }, + { + "frame": 16948, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "17:39" + }, + { + "frame": 17051, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "17:45" + }, + { + "frame": 17118, + "killer": 1, + "name": "Queen", + "clock_position": null, + "time": "17:49" + }, + { + "frame": 17205, + "killer": 1, + "name": "Overlord", + "clock_position": null, + "time": "17:55" + }, + { + "frame": 18638, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "19:24" + }, + { + "frame": 18673, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "19:27" + }, + { + "frame": 18707, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "19:29" + }, + { + "frame": 18805, + "killer": 1, + "name": "CreepTumorBurrowed", + "clock_position": null, + "time": "19:35" + }, + { + "frame": 19048, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:50" + }, + { + "frame": 19048, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:50" + }, + { + "frame": 19049, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:50" + }, + { + "frame": 19062, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:51" + }, + { + "frame": 19063, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:51" + }, + { + "frame": 19080, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:52" + }, + { + "frame": 19081, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:52" + }, + { + "frame": 19081, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:52" + }, + { + "frame": 19081, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:52" + }, + { + "frame": 19087, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:52" + }, + { + "frame": 19114, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:54" + }, + { + "frame": 19119, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:54" + }, + { + "frame": 19127, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:55" + }, + { + "frame": 19142, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:56" + }, + { + "frame": 19146, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:56" + }, + { + "frame": 19152, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:57" + }, + { + "frame": 19152, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:57" + }, + { + "frame": 19152, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:57" + }, + { + "frame": 19159, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:57" + }, + { + "frame": 19176, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:58" + }, + { + "frame": 19176, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:58" + }, + { + "frame": 19179, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:58" + }, + { + "frame": 19185, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:59" + }, + { + "frame": 19185, + "killer": 1, + "name": "Corruptor", + "clock_position": null, + "time": "19:59" + }, + { + "frame": 19191, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "19:59" + }, + { + "frame": 19220, + "killer": 1, + "name": "Corruptor", + "clock_position": null, + "time": "20:01" + }, + { + "frame": 19221, + "killer": 1, + "name": "Corruptor", + "clock_position": null, + "time": "20:01" + }, + { + "frame": 19256, + "killer": 1, + "name": "Corruptor", + "clock_position": null, + "time": "20:03" + }, + { + "frame": 19269, + "killer": 1, + "name": "Ultralisk", + "clock_position": null, + "time": "20:04" + }, + { + "frame": 19283, + "killer": 1, + "name": "Corruptor", + "clock_position": null, + "time": "20:05" + }, + { + "frame": 19356, + "killer": 1, + "name": "Ultralisk", + "clock_position": null, + "time": "20:09" + }, + { + "frame": 19601, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "20:25" + }, + { + "frame": 19601, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "20:25" + }, + { + "frame": 19602, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "20:25" + }, + { + "frame": 19602, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "20:25" + }, + { + "frame": 19602, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "20:25" + }, + { + "frame": 19607, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "20:25" + }, + { + "frame": 19633, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "20:27" + }, + { + "frame": 19633, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "20:27" + }, + { + "frame": 19633, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "20:27" + }, + { + "frame": 19641, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "20:27" + }, + { + "frame": 19729, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "20:33" + }, + { + "frame": 19729, + "killer": 1, + "name": "Drone", + "clock_position": null, + "time": "20:33" + }, + { + "frame": 20007, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "20:50" + }, + { + "frame": 20078, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "20:54" + }, + { + "frame": 20094, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "20:55" + }, + { + "frame": 20137, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "20:58" + }, + { + "frame": 20154, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "20:59" + }, + { + "frame": 20154, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "20:59" + }, + { + "frame": 20176, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "21:01" + }, + { + "frame": 20198, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "21:02" + }, + { + "frame": 20220, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "21:03" + }, + { + "frame": 20242, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "21:05" + }, + { + "frame": 20265, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "21:06" + }, + { + "frame": 20288, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "21:08" + }, + { + "frame": 20324, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "21:10" + }, + { + "frame": 20358, + "killer": 1, + "name": "Zergling", + "clock_position": null, + "time": "21:12" + }, + { + "frame": 20560, + "killer": 1, + "name": "Ultralisk", + "clock_position": null, + "time": "21:25" + }, + { + "frame": 20642, + "killer": 1, + "name": "Ultralisk", + "clock_position": null, + "time": "21:30" } - ], - "clock_position": null, - "uid": 326029, - "race": "Zerg", - "team": 2, - "handicap": 100 + ], + "race": "Zerg", + "result": "Win", + "team": 2, + "uid": 326029 } - }, - "buildOrderExtracted": true, - "frames": 20675 + }, + "buildOrderExtracted": true, + "build": 25604, + "frames_per_second": 16, + "unix_timestamp": 1369154657 } \ No newline at end of file