Add files using upload-large-folder tool
Browse files- README.md +80 -3
- match_001/clip/match_001_000.mp4 +3 -0
- match_001/context.json +0 -0
- match_001/metadata.json +56 -0
- match_001/viewport.csv +0 -0
- match_002/context.json +0 -0
- match_002/metadata.json +56 -0
- match_002/viewport.csv +0 -0
- match_003/context.json +0 -0
- match_003/metadata.json +56 -0
- match_003/viewport.csv +0 -0
- match_004/context.json +2180 -0
- match_004/metadata.json +56 -0
- match_004/viewport.csv +0 -0
- match_005/context.json +0 -0
- match_005/metadata.json +56 -0
- match_005/viewport.csv +0 -0
- match_006/context.json +0 -0
- match_006/metadata.json +56 -0
- match_006/viewport.csv +0 -0
- match_007/context.json +2437 -0
- match_007/metadata.json +56 -0
- match_007/viewport.csv +0 -0
- match_008/context.json +0 -0
- match_008/metadata.json +56 -0
- match_008/viewport.csv +0 -0
- match_009/context.json +0 -0
- match_009/metadata.json +56 -0
- match_009/viewport.csv +0 -0
- match_010/context.json +0 -0
- match_010/metadata.json +56 -0
- match_010/viewport.csv +0 -0
- match_011/context.json +0 -0
- match_011/metadata.json +56 -0
- match_011/viewport.csv +0 -0
- match_012/context.json +0 -0
- match_012/metadata.json +56 -0
- match_012/viewport.csv +0 -0
- match_013/context.json +0 -0
- match_013/metadata.json +56 -0
- match_013/viewport.csv +0 -0
- match_014/context.json +0 -0
- match_014/metadata.json +56 -0
- match_014/viewport.csv +0 -0
- match_015/context.json +0 -0
- match_015/metadata.json +56 -0
- match_015/viewport.csv +0 -0
- match_016/context.json +0 -0
- match_016/metadata.json +56 -0
- match_016/viewport.csv +0 -0
README.md
CHANGED
|
@@ -1,3 +1,80 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: CASTER
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
license: cc-by-nc-4.0
|
| 6 |
+
size_categories:
|
| 7 |
+
- 10K<n<100K
|
| 8 |
+
tags:
|
| 9 |
+
- esports
|
| 10 |
+
- starcraft-brood-war
|
| 11 |
+
- multimodal
|
| 12 |
+
- video-language
|
| 13 |
+
- commentary-generation
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# CASTER
|
| 17 |
+
|
| 18 |
+
CASTER (Commentary Alignment and State Tracking for Esports Research) is a multimodal dataset for observation-grounded commentary generation in *StarCraft: Brood War*. It aligns replay-rendered observer-view clips, synchronized observer-visible structured state, and quality-controlled commentary utterances.
|
| 19 |
+
|
| 20 |
+
This release contains 239 matches and 28,734 utterance-level clip-state-commentary records. The repository includes 28,697 replay-rendered clips. A small number of trailing commentary records occur after replay termination and therefore do not have a released clip file. Original broadcast video/audio and replay source files are not redistributed.
|
| 21 |
+
|
| 22 |
+
For benchmark definitions, evaluation details, and a more detailed description of the dataset construction pipeline, please refer to the companion repository: <https://anonymous.4open.science/r/caster/>.
|
| 23 |
+
|
| 24 |
+
## Repository Structure
|
| 25 |
+
|
| 26 |
+
```text
|
| 27 |
+
CASTER/
|
| 28 |
+
├── README.md
|
| 29 |
+
├── match_001/
|
| 30 |
+
│ ├── clip/
|
| 31 |
+
│ │ ├── match_001_000.mp4
|
| 32 |
+
│ │ ├── match_001_001.mp4
|
| 33 |
+
│ │ └── ...
|
| 34 |
+
│ ├── context.json
|
| 35 |
+
│ ├── viewport.csv
|
| 36 |
+
│ ├── state.csv
|
| 37 |
+
│ └── metadata.json
|
| 38 |
+
├── match_002/
|
| 39 |
+
└── ...
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
## Files
|
| 43 |
+
|
| 44 |
+
- `clip/`: replay-rendered observer-view clips aligned to utterance segments.
|
| 45 |
+
- `context.json`: the main utterance-level benchmark file. Each record contains `seg_index`, `clip_path`, `speech`, `speech_tag`, `time`, and `events`.
|
| 46 |
+
- `viewport.csv`: synchronized observer viewport trace.
|
| 47 |
+
- `state.csv`: synchronized frame-indexed replay state used to derive observer-grounded events.
|
| 48 |
+
- `metadata.json`: match-level metadata and alignment information.
|
| 49 |
+
|
| 50 |
+
## Metadata Notes
|
| 51 |
+
|
| 52 |
+
- Player names are anonymized as `PLAYER_1` and `PLAYER_2`.
|
| 53 |
+
- `game_info.map` stores the standardized map name used in the release.
|
| 54 |
+
- `game_info.map_file` preserves the original raw map filename.
|
| 55 |
+
- `source.youtube_url` points to the original public YouTube source for provenance.
|
| 56 |
+
- `alignment` stores match-level synchronization metadata between replay-derived state and commentary timing.
|
| 57 |
+
|
| 58 |
+
## Usage Notes
|
| 59 |
+
|
| 60 |
+
- This release is organized by match directory rather than a single flat table. Users should read files directly from the repository hierarchy.
|
| 61 |
+
- `context.json` is the core supervision file for benchmark use.
|
| 62 |
+
- Some `context.json` records correspond to post-game commentary after replay termination; these records may not have a matching released clip.
|
| 63 |
+
|
| 64 |
+
## Intended Use
|
| 65 |
+
|
| 66 |
+
- Clip-to-Observation prediction
|
| 67 |
+
- Clip+Observation-to-Commentary generation
|
| 68 |
+
- Multimodal game understanding
|
| 69 |
+
- Esports commentary assistance research
|
| 70 |
+
|
| 71 |
+
## License
|
| 72 |
+
|
| 73 |
+
This dataset release is intended for non-commercial research use under CC BY-NC 4.0. Original source videos remain subject to the respective rights holders' and platform terms.
|
| 74 |
+
|
| 75 |
+
## Reference
|
| 76 |
+
|
| 77 |
+
If you use this dataset, please cite the accompanying paper:
|
| 78 |
+
`TBD`
|
| 79 |
+
|
| 80 |
+
|
match_001/clip/match_001_000.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db1b42316ee304a4556509ed19d9303707c1c5fc2c37771c1781af9b8ee8fdfe
|
| 3 |
+
size 178161
|
match_001/context.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_001/metadata.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata_schema_version": "release_v1",
|
| 3 |
+
"match_id": "match_001",
|
| 4 |
+
"source": {
|
| 5 |
+
"youtube_url": "https://www.youtube.com/watch?v=E-ZVOxxKbz0"
|
| 6 |
+
},
|
| 7 |
+
"game_info": {
|
| 8 |
+
"map": "Sniper Ridge 2.0",
|
| 9 |
+
"map_file": "신 저격능선 2.0",
|
| 10 |
+
"width": 128,
|
| 11 |
+
"height": 128,
|
| 12 |
+
"game_length_frames": 31894,
|
| 13 |
+
"players": [
|
| 14 |
+
{
|
| 15 |
+
"name": "PLAYER_1",
|
| 16 |
+
"race": "Zerg",
|
| 17 |
+
"start_position": {
|
| 18 |
+
"x": 7,
|
| 19 |
+
"y": 7
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "PLAYER_2",
|
| 24 |
+
"race": "Terran",
|
| 25 |
+
"start_position": {
|
| 26 |
+
"x": 7,
|
| 27 |
+
"y": 117
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
]
|
| 31 |
+
},
|
| 32 |
+
"alignment": {
|
| 33 |
+
"attempt_count": 1,
|
| 34 |
+
"final_offset_frames": 79,
|
| 35 |
+
"anchor": {
|
| 36 |
+
"player": "PLAYER_2",
|
| 37 |
+
"frame": 755,
|
| 38 |
+
"supply_from": 12,
|
| 39 |
+
"supply_to": 14
|
| 40 |
+
},
|
| 41 |
+
"best_match": {
|
| 42 |
+
"t_sec": 28.56,
|
| 43 |
+
"race": "terran",
|
| 44 |
+
"supply_from": 6,
|
| 45 |
+
"supply_to": 7,
|
| 46 |
+
"rs": 0.935,
|
| 47 |
+
"ds": 0.82
|
| 48 |
+
},
|
| 49 |
+
"search_range": {
|
| 50 |
+
"frame_start": 680,
|
| 51 |
+
"frame_end": 823,
|
| 52 |
+
"target_supply_from": 12,
|
| 53 |
+
"target_supply_to": 14
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
match_001/viewport.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_002/context.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_002/metadata.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata_schema_version": "release_v1",
|
| 3 |
+
"match_id": "match_002",
|
| 4 |
+
"source": {
|
| 5 |
+
"youtube_url": "https://www.youtube.com/watch?v=K2cyd5qbp1M"
|
| 6 |
+
},
|
| 7 |
+
"game_info": {
|
| 8 |
+
"map": "Fighting Spirit 1.3",
|
| 9 |
+
"map_file": "| iCCup | Fighting Spirit 1.3",
|
| 10 |
+
"width": 128,
|
| 11 |
+
"height": 128,
|
| 12 |
+
"game_length_frames": 34650,
|
| 13 |
+
"players": [
|
| 14 |
+
{
|
| 15 |
+
"name": "PLAYER_1",
|
| 16 |
+
"race": "Terran",
|
| 17 |
+
"start_position": {
|
| 18 |
+
"x": 7,
|
| 19 |
+
"y": 116
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "PLAYER_2",
|
| 24 |
+
"race": "Protoss",
|
| 25 |
+
"start_position": {
|
| 26 |
+
"x": 117,
|
| 27 |
+
"y": 117
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
]
|
| 31 |
+
},
|
| 32 |
+
"alignment": {
|
| 33 |
+
"attempt_count": 1,
|
| 34 |
+
"final_offset_frames": 68,
|
| 35 |
+
"anchor": {
|
| 36 |
+
"player": "PLAYER_2",
|
| 37 |
+
"frame": 1055,
|
| 38 |
+
"supply_from": 14,
|
| 39 |
+
"supply_to": 16
|
| 40 |
+
},
|
| 41 |
+
"best_match": {
|
| 42 |
+
"t_sec": 41.62,
|
| 43 |
+
"race": "protoss",
|
| 44 |
+
"supply_from": 7,
|
| 45 |
+
"supply_to": 8,
|
| 46 |
+
"rs": 0.941,
|
| 47 |
+
"ds": 0.809
|
| 48 |
+
},
|
| 49 |
+
"search_range": {
|
| 50 |
+
"frame_start": 991,
|
| 51 |
+
"frame_end": 1134,
|
| 52 |
+
"target_supply_from": 14,
|
| 53 |
+
"target_supply_to": 16
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
match_002/viewport.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_003/context.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_003/metadata.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata_schema_version": "release_v1",
|
| 3 |
+
"match_id": "match_003",
|
| 4 |
+
"source": {
|
| 5 |
+
"youtube_url": "https://www.youtube.com/watch?v=89L7JLxpTqg"
|
| 6 |
+
},
|
| 7 |
+
"game_info": {
|
| 8 |
+
"map": "Ground Zero 2.0",
|
| 9 |
+
"map_file": "| iCCup | Ground Zero 2.0",
|
| 10 |
+
"width": 128,
|
| 11 |
+
"height": 128,
|
| 12 |
+
"game_length_frames": 16956,
|
| 13 |
+
"players": [
|
| 14 |
+
{
|
| 15 |
+
"name": "PLAYER_1",
|
| 16 |
+
"race": "Zerg",
|
| 17 |
+
"start_position": {
|
| 18 |
+
"x": 7,
|
| 19 |
+
"y": 6
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "PLAYER_2",
|
| 24 |
+
"race": "Protoss",
|
| 25 |
+
"start_position": {
|
| 26 |
+
"x": 7,
|
| 27 |
+
"y": 118
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
]
|
| 31 |
+
},
|
| 32 |
+
"alignment": {
|
| 33 |
+
"attempt_count": 1,
|
| 34 |
+
"final_offset_frames": 79,
|
| 35 |
+
"anchor": {
|
| 36 |
+
"player": "PLAYER_1",
|
| 37 |
+
"frame": 625,
|
| 38 |
+
"supply_from": 12,
|
| 39 |
+
"supply_to": 14
|
| 40 |
+
},
|
| 41 |
+
"best_match": {
|
| 42 |
+
"t_sec": 23.12,
|
| 43 |
+
"race": "zerg",
|
| 44 |
+
"supply_from": 6,
|
| 45 |
+
"supply_to": 7,
|
| 46 |
+
"rs": 0.88,
|
| 47 |
+
"ds": 0.862
|
| 48 |
+
},
|
| 49 |
+
"search_range": {
|
| 50 |
+
"frame_start": 550,
|
| 51 |
+
"frame_end": 693,
|
| 52 |
+
"target_supply_from": 12,
|
| 53 |
+
"target_supply_to": 14
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
match_003/viewport.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_004/context.json
ADDED
|
@@ -0,0 +1,2180 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"seg_index": 0,
|
| 4 |
+
"clip_path": "match_004/clip/match_004_000",
|
| 5 |
+
"speech": "And here we are in set number two. At the top left, playing as the orange Zerg, we have [PLAYER_1].",
|
| 6 |
+
"speech_tag": "STATUS_REPORT",
|
| 7 |
+
"time": "35~241",
|
| 8 |
+
"events": [
|
| 9 |
+
{
|
| 10 |
+
"frames": "35~216",
|
| 11 |
+
"viewport": "[0,0]->[0,149]",
|
| 12 |
+
"units": {
|
| 13 |
+
"[PLAYER_1]": [
|
| 14 |
+
"Drone*4 [312,279]->[168,254]",
|
| 15 |
+
"Egg*1 [298,292]",
|
| 16 |
+
"Hatchery*1 [288,240]",
|
| 17 |
+
"Larva*2 [288,281]->[274,283]",
|
| 18 |
+
"Overlord*1 [382,307]->[406,305]"
|
| 19 |
+
]
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"frames": "217~241",
|
| 24 |
+
"viewport": "[0,3584]->[0,3627]",
|
| 25 |
+
"units": {
|
| 26 |
+
"[PLAYER_2]": [
|
| 27 |
+
"Drone*4 [194,3823]->[142,3832]",
|
| 28 |
+
"Egg*1 [291,3868]",
|
| 29 |
+
"Hatchery*1 [288,3824]",
|
| 30 |
+
"Larva*2 [230,3824]->[230,3829]",
|
| 31 |
+
"Overlord*1 [392,3680]->[392,3661]"
|
| 32 |
+
]
|
| 33 |
+
}
|
| 34 |
+
}
|
| 35 |
+
]
|
| 36 |
+
},
|
| 37 |
+
{
|
| 38 |
+
"seg_index": 1,
|
| 39 |
+
"clip_path": "match_004/clip/match_004_001",
|
| 40 |
+
"speech": "And starting at the bottom left as our purple Zerg, we have [PLAYER_2]. We're also joined once again by Green45Projects on the observer slot.",
|
| 41 |
+
"speech_tag": "PRODUCTION_CHAT",
|
| 42 |
+
"time": "241~458",
|
| 43 |
+
"events": [
|
| 44 |
+
{
|
| 45 |
+
"frames": "241~458",
|
| 46 |
+
"viewport": "[0,3627]",
|
| 47 |
+
"units": {
|
| 48 |
+
"[PLAYER_2]": [
|
| 49 |
+
"Drone*5 [171,3839]->[171,3841]",
|
| 50 |
+
"Egg*1 [225,3818]->[223,3817]",
|
| 51 |
+
"Hatchery*1 [288,3824]",
|
| 52 |
+
"Larva*2 [289,3829]->[288,3793]",
|
| 53 |
+
"Overlord*1 [392,3660]->[390,3607]"
|
| 54 |
+
]
|
| 55 |
+
}
|
| 56 |
+
}
|
| 57 |
+
]
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"seg_index": 2,
|
| 61 |
+
"clip_path": "match_004/clip/match_004_002",
|
| 62 |
+
"speech": "If anyone has any theories on who [PLAYER_2] actually is, please let us know! We've got a ZvZ unfolding here on [MAP_NAME] with some very close air positions.",
|
| 63 |
+
"speech_tag": "CAST_BANTER",
|
| 64 |
+
"time": "458~694",
|
| 65 |
+
"events": [
|
| 66 |
+
{
|
| 67 |
+
"frames": "458~694",
|
| 68 |
+
"viewport": "[0,3627]",
|
| 69 |
+
"units": {
|
| 70 |
+
"[PLAYER_2]": [
|
| 71 |
+
"Drone*5 [139,3858]->[155,3847]",
|
| 72 |
+
"Egg*2 [223,3811]",
|
| 73 |
+
"Hatchery*1 [288,3824]",
|
| 74 |
+
"Larva*1 [231,3784]->[231,3804]"
|
| 75 |
+
]
|
| 76 |
+
}
|
| 77 |
+
}
|
| 78 |
+
]
|
| 79 |
+
},
|
| 80 |
+
{
|
| 81 |
+
"seg_index": 3,
|
| 82 |
+
"clip_path": "match_004/clip/match_004_003",
|
| 83 |
+
"speech": "In this ZvZ on [MAP_NAME], spawn positions are actually less important than the timing of the Spawning Pool. The most critical factor to watch for early on is which player commits to their tech first.",
|
| 84 |
+
"speech_tag": "CAUSAL_EXPLAIN",
|
| 85 |
+
"time": "694~892",
|
| 86 |
+
"events": [
|
| 87 |
+
{
|
| 88 |
+
"frames": "694~811",
|
| 89 |
+
"viewport": "[0,3627]",
|
| 90 |
+
"units": {
|
| 91 |
+
"[PLAYER_2]": [
|
| 92 |
+
"Drone*6 [168,3842]->[149,3849]",
|
| 93 |
+
"Egg*1 [221,3804]",
|
| 94 |
+
"Hatchery*1 [288,3824]",
|
| 95 |
+
"Larva*2 [289,3814]->[284,3824]"
|
| 96 |
+
]
|
| 97 |
+
}
|
| 98 |
+
},
|
| 99 |
+
{
|
| 100 |
+
"frames": "812~892",
|
| 101 |
+
"viewport": "[0,107]->[0,85]",
|
| 102 |
+
"units": {
|
| 103 |
+
"[PLAYER_1]": [
|
| 104 |
+
"Drone*6 [130,289]->[143,274]",
|
| 105 |
+
"Egg*1 [229,201]",
|
| 106 |
+
"Hatchery*1 [288,240]",
|
| 107 |
+
"Larva*2 [293,245]->[253,225]"
|
| 108 |
+
]
|
| 109 |
+
}
|
| 110 |
+
}
|
| 111 |
+
]
|
| 112 |
+
},
|
| 113 |
+
{
|
| 114 |
+
"seg_index": 4,
|
| 115 |
+
"clip_path": "match_004/clip/match_004_004",
|
| 116 |
+
"speech": "With the differences in early scouting patterns, the question is whether one player can shut their opponent down before a slight economic advantage can actually come to fruition.",
|
| 117 |
+
"speech_tag": "PREDICTION",
|
| 118 |
+
"time": "892~1204",
|
| 119 |
+
"events": [
|
| 120 |
+
{
|
| 121 |
+
"frames": "892~986",
|
| 122 |
+
"viewport": "[0,85]",
|
| 123 |
+
"units": {
|
| 124 |
+
"[PLAYER_1]": [
|
| 125 |
+
"Drone*7 [155,263]->[147,276]",
|
| 126 |
+
"Egg*1 [218,250]",
|
| 127 |
+
"Hatchery*1 [288,240]",
|
| 128 |
+
"Larva*1 [288,200]->[231,230]"
|
| 129 |
+
]
|
| 130 |
+
}
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"frames": "987~1129",
|
| 134 |
+
"viewport": "[0,3669]->[0,3627]",
|
| 135 |
+
"units": {
|
| 136 |
+
"[PLAYER_2]": [
|
| 137 |
+
"Drone*7 [146,3827]->[160,3828]",
|
| 138 |
+
"Egg*1 [231,3842]",
|
| 139 |
+
"Hatchery*1 [288,3824]",
|
| 140 |
+
"Larva*2 [285,3821]->[290,3811]"
|
| 141 |
+
]
|
| 142 |
+
}
|
| 143 |
+
},
|
| 144 |
+
{
|
| 145 |
+
"frames": "1130~1184",
|
| 146 |
+
"viewport": "[0,2773]->[0,2581]",
|
| 147 |
+
"units": {
|
| 148 |
+
"[PLAYER_2]": [
|
| 149 |
+
"Overlord*1 [363,2922]->[364,2877]"
|
| 150 |
+
]
|
| 151 |
+
}
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"frames": "1185~1204",
|
| 155 |
+
"viewport": "[907,149]",
|
| 156 |
+
"units": {
|
| 157 |
+
"[PLAYER_1]": [
|
| 158 |
+
"Overlord*1 [1218,317]->[1233,317]"
|
| 159 |
+
]
|
| 160 |
+
}
|
| 161 |
+
}
|
| 162 |
+
]
|
| 163 |
+
},
|
| 164 |
+
{
|
| 165 |
+
"seg_index": 5,
|
| 166 |
+
"clip_path": "match_004/clip/match_004_005",
|
| 167 |
+
"speech": "[PLAYER_2] is executing a standard vertical scout, while [PLAYER_1] is scouting horizontally, which could suggest an opening for a 12 hatch.",
|
| 168 |
+
"speech_tag": "STATUS_REPORT",
|
| 169 |
+
"time": "1204~1402",
|
| 170 |
+
"events": [
|
| 171 |
+
{
|
| 172 |
+
"frames": "1204~1224",
|
| 173 |
+
"viewport": "[907,149]",
|
| 174 |
+
"units": {
|
| 175 |
+
"[PLAYER_1]": [
|
| 176 |
+
"Overlord*1 [1234,317]->[1251,318]"
|
| 177 |
+
]
|
| 178 |
+
}
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"frames": "1225~1280",
|
| 182 |
+
"viewport": "[0,2645]->[0,2517]",
|
| 183 |
+
"units": {
|
| 184 |
+
"[PLAYER_2]": [
|
| 185 |
+
"Overlord*1 [365,2843]->[366,2797]"
|
| 186 |
+
]
|
| 187 |
+
}
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"frames": "1281~1319",
|
| 191 |
+
"viewport": "[842,64]",
|
| 192 |
+
"units": {
|
| 193 |
+
"[PLAYER_1]": [
|
| 194 |
+
"Overlord*1 [1298,319]->[1330,319]"
|
| 195 |
+
]
|
| 196 |
+
}
|
| 197 |
+
},
|
| 198 |
+
{
|
| 199 |
+
"frames": "1328~1402",
|
| 200 |
+
"viewport": "[22,43]->[0,43]",
|
| 201 |
+
"units": {
|
| 202 |
+
"[PLAYER_1]": [
|
| 203 |
+
"Drone*8 [139,279]->[153,260]",
|
| 204 |
+
"Egg*1 [221,240]->[110,179]",
|
| 205 |
+
"Hatchery*1 [288,240]",
|
| 206 |
+
"Larva*1 [366,291]->[346,261]"
|
| 207 |
+
]
|
| 208 |
+
}
|
| 209 |
+
}
|
| 210 |
+
]
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"seg_index": 6,
|
| 214 |
+
"clip_path": "match_004/clip/match_004_006",
|
| 215 |
+
"speech": "I was completely off—it’s actually a 9 pool from [PLAYER_1]. In this matchup, these specific starting positions are really going to influence how this opening plays out.",
|
| 216 |
+
"speech_tag": "EVALUATION",
|
| 217 |
+
"time": "1402~1664",
|
| 218 |
+
"events": [
|
| 219 |
+
{
|
| 220 |
+
"frames": "1402~1478",
|
| 221 |
+
"viewport": "[0,43]->[0,85]",
|
| 222 |
+
"units": {
|
| 223 |
+
"[PLAYER_1]": [
|
| 224 |
+
"Drone*9 [147,251]->[167,267]",
|
| 225 |
+
"Hatchery*1 [288,240]",
|
| 226 |
+
"Larva*2 [346,250]->[290,250]"
|
| 227 |
+
]
|
| 228 |
+
}
|
| 229 |
+
},
|
| 230 |
+
{
|
| 231 |
+
"frames": "1479~1510",
|
| 232 |
+
"viewport": "[0,2325]",
|
| 233 |
+
"units": {
|
| 234 |
+
"[PLAYER_2]": [
|
| 235 |
+
"Overlord*1 [369,2631]->[369,2605]"
|
| 236 |
+
]
|
| 237 |
+
}
|
| 238 |
+
},
|
| 239 |
+
{
|
| 240 |
+
"frames": "1511~1589",
|
| 241 |
+
"viewport": "[0,3669]->[0,3541]",
|
| 242 |
+
"units": {
|
| 243 |
+
"[PLAYER_2]": [
|
| 244 |
+
"Drone*9 [137,3849]->[158,3836]",
|
| 245 |
+
"Hatchery*1 [288,3824]",
|
| 246 |
+
"Larva*2 [349,3852]->[234,3849]"
|
| 247 |
+
]
|
| 248 |
+
}
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"frames": "1590~1652",
|
| 252 |
+
"viewport": "[0,2453]->[0,2240]",
|
| 253 |
+
"units": {
|
| 254 |
+
"[PLAYER_2]": [
|
| 255 |
+
"Overlord*1 [370,2539]->[371,2487]"
|
| 256 |
+
]
|
| 257 |
+
}
|
| 258 |
+
},
|
| 259 |
+
{
|
| 260 |
+
"frames": "1653~1664",
|
| 261 |
+
"viewport": "[0,85]",
|
| 262 |
+
"units": {
|
| 263 |
+
"[PLAYER_1]": [
|
| 264 |
+
"Drone*8 [157,271]->[133,273]",
|
| 265 |
+
"Hatchery*1 [288,240]",
|
| 266 |
+
"Larva*2 [280,206]->[286,200]",
|
| 267 |
+
"Spawning_Pool*1 [176,96]"
|
| 268 |
+
]
|
| 269 |
+
}
|
| 270 |
+
}
|
| 271 |
+
]
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"seg_index": 7,
|
| 275 |
+
"clip_path": "match_004/clip/match_004_007",
|
| 276 |
+
"speech": "Since they are in vertical positions on [MAP_NAME], their naturals are extremely close by air, making it significantly more difficult to hold off [PLAYER_2]'s faster 9 pool.",
|
| 277 |
+
"speech_tag": "CAUSAL_EXPLAIN",
|
| 278 |
+
"time": "1664~1907",
|
| 279 |
+
"events": [
|
| 280 |
+
{
|
| 281 |
+
"frames": "1664~1708",
|
| 282 |
+
"viewport": "[0,85]",
|
| 283 |
+
"units": {
|
| 284 |
+
"[PLAYER_1]": [
|
| 285 |
+
"Drone*8 [132,273]->[133,273]",
|
| 286 |
+
"Hatchery*1 [288,240]",
|
| 287 |
+
"Larva*2 [287,200]->[292,210]",
|
| 288 |
+
"Spawning_Pool*1 [176,96]"
|
| 289 |
+
]
|
| 290 |
+
}
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"frames": "1812~1907",
|
| 294 |
+
"viewport": "[0,3349]->[0,3541]",
|
| 295 |
+
"units": {
|
| 296 |
+
"[PLAYER_2]": [
|
| 297 |
+
"Drone*8 [144,3866]->[160,3836]",
|
| 298 |
+
"Egg*1 [231,3824]",
|
| 299 |
+
"Hatchery*1 [288,3824]",
|
| 300 |
+
"Larva*2 [286,3806]->[283,3819]",
|
| 301 |
+
"Spawning_Pool*1 [176,3680]"
|
| 302 |
+
]
|
| 303 |
+
}
|
| 304 |
+
}
|
| 305 |
+
]
|
| 306 |
+
},
|
| 307 |
+
{
|
| 308 |
+
"seg_index": 8,
|
| 309 |
+
"clip_path": "match_004/clip/match_004_008",
|
| 310 |
+
"speech": "Both players are opting for a faster Spawning Pool to secure early Mutalisks, which is crucial on this layout. On larger maps like Fighting Spirit, you might get away with a 12-Hatchery, but the close vertical proximity here makes that extremely difficult to defend.",
|
| 311 |
+
"speech_tag": "CAUSAL_EXPLAIN",
|
| 312 |
+
"time": "1907~2149",
|
| 313 |
+
"events": [
|
| 314 |
+
{
|
| 315 |
+
"frames": "1907~1930",
|
| 316 |
+
"viewport": "[0,3541]",
|
| 317 |
+
"units": {
|
| 318 |
+
"[PLAYER_2]": [
|
| 319 |
+
"Drone*8 [161,3835]->[192,3824]",
|
| 320 |
+
"Egg*1 [231,3824]",
|
| 321 |
+
"Extractor*1 [288,3648]",
|
| 322 |
+
"Hatchery*1 [288,3824]",
|
| 323 |
+
"Larva*2 [283,3819]->[288,3809]",
|
| 324 |
+
"Spawning_Pool*1 [176,3680]"
|
| 325 |
+
]
|
| 326 |
+
}
|
| 327 |
+
},
|
| 328 |
+
{
|
| 329 |
+
"frames": "1931~2025",
|
| 330 |
+
"viewport": "[0,21]->[0,85]",
|
| 331 |
+
"units": {
|
| 332 |
+
"[PLAYER_1]": [
|
| 333 |
+
"Drone*7 [149,278]->[150,288]",
|
| 334 |
+
"Egg*1 [222,218]",
|
| 335 |
+
"Extractor*1 [288,64]",
|
| 336 |
+
"Hatchery*1 [288,240]",
|
| 337 |
+
"Larva*2 [361,220]->[351,230]",
|
| 338 |
+
"Spawning_Pool*1 [176,96]"
|
| 339 |
+
]
|
| 340 |
+
}
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"frames": "2026~2128",
|
| 344 |
+
"viewport": "[0,3712]->[0,3669]",
|
| 345 |
+
"units": {
|
| 346 |
+
"[PLAYER_2]": [
|
| 347 |
+
"Drone*7 [146,3866]->[185,3856]",
|
| 348 |
+
"Egg*1 [231,3824]->[107,3848]",
|
| 349 |
+
"Hatchery*1 [288,3824]",
|
| 350 |
+
"Larva*3 [308,3812]->[309,3814]",
|
| 351 |
+
"Spawning_Pool*1 [176,3680]"
|
| 352 |
+
]
|
| 353 |
+
}
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"frames": "2129~2149",
|
| 357 |
+
"viewport": "[0,64]->[0,21]",
|
| 358 |
+
"units": {
|
| 359 |
+
"[PLAYER_1]": [
|
| 360 |
+
"Drone*8 [139,264]->[149,271]",
|
| 361 |
+
"Egg*1 [346,220]",
|
| 362 |
+
"Extractor*1 [288,64]",
|
| 363 |
+
"Hatchery*1 [288,240]",
|
| 364 |
+
"Larva*2 [358,220]->[353,211]",
|
| 365 |
+
"Spawning_Pool*1 [176,96]"
|
| 366 |
+
]
|
| 367 |
+
}
|
| 368 |
+
}
|
| 369 |
+
]
|
| 370 |
+
},
|
| 371 |
+
{
|
| 372 |
+
"seg_index": 9,
|
| 373 |
+
"clip_path": "match_004/clip/match_004_009",
|
| 374 |
+
"speech": "By playing defensively and keeping your units at home, you can effectively deflect Zergling or Mutalisk harass. This passive approach is the key to managing a more economic-focused opening in the ZvZ matchup.",
|
| 375 |
+
"speech_tag": "CAUSAL_EXPLAIN",
|
| 376 |
+
"time": "2149~2324",
|
| 377 |
+
"events": [
|
| 378 |
+
{
|
| 379 |
+
"frames": "2149~2263",
|
| 380 |
+
"viewport": "[0,21]",
|
| 381 |
+
"units": {
|
| 382 |
+
"[PLAYER_1]": [
|
| 383 |
+
"Drone*8 [149,271]->[151,264]",
|
| 384 |
+
"Egg*1 [346,220]",
|
| 385 |
+
"Extractor*1 [288,64]",
|
| 386 |
+
"Hatchery*1 [288,240]",
|
| 387 |
+
"Larva*2 [353,211]->[287,215]",
|
| 388 |
+
"Spawning_Pool*1 [176,96]"
|
| 389 |
+
]
|
| 390 |
+
}
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"frames": "2264~2324",
|
| 394 |
+
"viewport": "[0,3584]->[0,3605]",
|
| 395 |
+
"units": {
|
| 396 |
+
"[PLAYER_2]": [
|
| 397 |
+
"Drone*8 [139,3864]->[160,3861]",
|
| 398 |
+
"Egg*1 [356,3824]",
|
| 399 |
+
"Extractor*1 [288,3648]",
|
| 400 |
+
"Hatchery*1 [288,3824]",
|
| 401 |
+
"Larva*2 [288,3815]->[290,3827]",
|
| 402 |
+
"Spawning_Pool*1 [176,3680]"
|
| 403 |
+
]
|
| 404 |
+
}
|
| 405 |
+
}
|
| 406 |
+
]
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"seg_index": 10,
|
| 410 |
+
"clip_path": "match_004/clip/match_004_010",
|
| 411 |
+
"speech": "In this matchup, playing an economic game will likely be much more difficult, and we can expect to see both [PLAYER_1] and [PLAYER_2] stay on a single base for a significantly longer period.",
|
| 412 |
+
"speech_tag": "PREDICTION",
|
| 413 |
+
"time": "2324~2565",
|
| 414 |
+
"events": [
|
| 415 |
+
{
|
| 416 |
+
"frames": "2324~2430",
|
| 417 |
+
"viewport": "[0,3605]",
|
| 418 |
+
"units": {
|
| 419 |
+
"[PLAYER_2]": [
|
| 420 |
+
"Drone*8 [159,3861]->[141,3866]",
|
| 421 |
+
"Egg*2 [290,3817]",
|
| 422 |
+
"Extractor*1 [288,3648]",
|
| 423 |
+
"Hatchery*1 [288,3824]",
|
| 424 |
+
"Larva*1 [356,3844]->[356,3802]",
|
| 425 |
+
"Spawning_Pool*1 [176,3680]"
|
| 426 |
+
]
|
| 427 |
+
}
|
| 428 |
+
},
|
| 429 |
+
{
|
| 430 |
+
"frames": "2431~2565",
|
| 431 |
+
"viewport": "[0,85]->[0,21]",
|
| 432 |
+
"units": {
|
| 433 |
+
"[PLAYER_1]": [
|
| 434 |
+
"Drone*8 [157,265]->[190,210]",
|
| 435 |
+
"Egg*2 [282,225]",
|
| 436 |
+
"Extractor*1 [288,64]",
|
| 437 |
+
"Hatchery*1 [288,240]",
|
| 438 |
+
"Larva*2 [351,225]->[351,250]",
|
| 439 |
+
"Spawning_Pool*1 [176,96]"
|
| 440 |
+
]
|
| 441 |
+
}
|
| 442 |
+
}
|
| 443 |
+
]
|
| 444 |
+
},
|
| 445 |
+
{
|
| 446 |
+
"seg_index": 11,
|
| 447 |
+
"clip_path": "match_004/clip/match_004_011",
|
| 448 |
+
"speech": "Even for a ZvZ match where one-base play is common, I expect both players to stay on a single base for even longer than usual in this case.",
|
| 449 |
+
"speech_tag": "PREDICTION",
|
| 450 |
+
"time": "2565~2704",
|
| 451 |
+
"events": [
|
| 452 |
+
{
|
| 453 |
+
"frames": "2565~2704",
|
| 454 |
+
"viewport": "[0,21]",
|
| 455 |
+
"units": {
|
| 456 |
+
"[PLAYER_1]": [
|
| 457 |
+
"Drone*9 [193,212]->[239,217]",
|
| 458 |
+
"Egg*1 [346,220]",
|
| 459 |
+
"Extractor*1 [288,64]",
|
| 460 |
+
"Hatchery*1 [288,240]",
|
| 461 |
+
"Larva*2 [351,250]->[359,240]",
|
| 462 |
+
"Spawning_Pool*1 [176,96]"
|
| 463 |
+
]
|
| 464 |
+
}
|
| 465 |
+
}
|
| 466 |
+
]
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"seg_index": 12,
|
| 470 |
+
"clip_path": "match_004/clip/match_004_012",
|
| 471 |
+
"speech": "[PLAYER_2] is going to maintain a significant advantage here. By getting the scout off first and confirming [PLAYER_1]'s location, he gains a vital edge against this one-base build.",
|
| 472 |
+
"speech_tag": "CAUSAL_EXPLAIN",
|
| 473 |
+
"time": "2704~2978",
|
| 474 |
+
"events": [
|
| 475 |
+
{
|
| 476 |
+
"frames": "2704~2747",
|
| 477 |
+
"viewport": "[0,21]",
|
| 478 |
+
"units": {
|
| 479 |
+
"[PLAYER_1]": [
|
| 480 |
+
"Drone*9 [229,210]->[202,209]",
|
| 481 |
+
"Egg*1 [346,220]",
|
| 482 |
+
"Extractor*1 [288,64]",
|
| 483 |
+
"Hatchery*1 [288,240]",
|
| 484 |
+
"Larva*2 [358,240]->[356,235]",
|
| 485 |
+
"Spawning_Pool*1 [176,96]"
|
| 486 |
+
]
|
| 487 |
+
}
|
| 488 |
+
},
|
| 489 |
+
{
|
| 490 |
+
"frames": "2748~2850",
|
| 491 |
+
"viewport": "[0,3520]",
|
| 492 |
+
"units": {
|
| 493 |
+
"[PLAYER_2]": [
|
| 494 |
+
"Drone*9 [209,3816]->[201,3822]",
|
| 495 |
+
"Egg*2 [351,3824]->[383,3801]",
|
| 496 |
+
"Extractor*1 [288,3648]",
|
| 497 |
+
"Hatchery*1 [288,3824]",
|
| 498 |
+
"Larva*2 [351,3848]->[349,3849]",
|
| 499 |
+
"Spawning_Pool*1 [176,3680]"
|
| 500 |
+
]
|
| 501 |
+
}
|
| 502 |
+
},
|
| 503 |
+
{
|
| 504 |
+
"frames": "2851~2978",
|
| 505 |
+
"viewport": "[0,85]",
|
| 506 |
+
"units": {
|
| 507 |
+
"[PLAYER_1]": [
|
| 508 |
+
"Drone*9 [218,210]->[208,213]",
|
| 509 |
+
"Egg*3 [357,234]",
|
| 510 |
+
"Extractor*1 [288,64]",
|
| 511 |
+
"Hatchery*1 [288,240]",
|
| 512 |
+
"Overlord*1 [344,250]->[341,355]",
|
| 513 |
+
"Spawning_Pool*1 [176,96]"
|
| 514 |
+
]
|
| 515 |
+
}
|
| 516 |
+
}
|
| 517 |
+
]
|
| 518 |
+
},
|
| 519 |
+
{
|
| 520 |
+
"seg_index": 13,
|
| 521 |
+
"clip_path": "match_004/clip/match_004_013",
|
| 522 |
+
"speech": "[PLAYER_1] is going to have to play extremely defensively here. Even after opening with a nine pool, he still needs to be careful since [PLAYER_2] has the scouting information.",
|
| 523 |
+
"speech_tag": "PREDICTION",
|
| 524 |
+
"time": "2978~3227",
|
| 525 |
+
"events": [
|
| 526 |
+
{
|
| 527 |
+
"frames": "2978~3168",
|
| 528 |
+
"viewport": "[0,85]->[0,363]",
|
| 529 |
+
"units": {
|
| 530 |
+
"[PLAYER_1]": [
|
| 531 |
+
"Drone*9 [208,213]->[172,217]",
|
| 532 |
+
"Egg*3 [357,234]",
|
| 533 |
+
"Hatchery*1 [288,240]",
|
| 534 |
+
"Overlord*1 [341,356]->[338,514]",
|
| 535 |
+
"Spawning_Pool*1 [176,96]"
|
| 536 |
+
]
|
| 537 |
+
}
|
| 538 |
+
},
|
| 539 |
+
{
|
| 540 |
+
"frames": "3169~3227",
|
| 541 |
+
"viewport": "[0,3584]->[0,3605]",
|
| 542 |
+
"units": {
|
| 543 |
+
"[PLAYER_2]": [
|
| 544 |
+
"Drone*9 [192,3831]->[176,3823]",
|
| 545 |
+
"Egg*3 [348,3840]",
|
| 546 |
+
"Extractor*1 [288,3648]",
|
| 547 |
+
"Hatchery*1 [288,3824]",
|
| 548 |
+
"Larva*1 [357,3834]->[353,3821]",
|
| 549 |
+
"Overlord*1 [686,3765]->[719,3763]",
|
| 550 |
+
"Spawning_Pool*1 [176,3680]"
|
| 551 |
+
]
|
| 552 |
+
}
|
| 553 |
+
}
|
| 554 |
+
]
|
| 555 |
+
},
|
| 556 |
+
{
|
| 557 |
+
"seg_index": 14,
|
| 558 |
+
"clip_path": "match_004/clip/match_004_014",
|
| 559 |
+
"speech": "[PLAYER_1] can't simply move his Zerglings across the map and risk a backstab, especially since [PLAYER_2] is about to have all the information necessary to make informed counter-moves.",
|
| 560 |
+
"speech_tag": "PREDICTION",
|
| 561 |
+
"time": "3227~3694",
|
| 562 |
+
"events": [
|
| 563 |
+
{
|
| 564 |
+
"frames": "3227~3326",
|
| 565 |
+
"viewport": "[0,3605]->[0,3648]",
|
| 566 |
+
"units": {
|
| 567 |
+
"[PLAYER_2]": [
|
| 568 |
+
"Drone*9 [177,3823]->[178,3820]",
|
| 569 |
+
"Egg*3 [348,3840]->[447,3653]",
|
| 570 |
+
"Extractor*1 [288,3648]",
|
| 571 |
+
"Hatchery*1 [288,3824]",
|
| 572 |
+
"Larva*1 [352,3820]->[356,3826]",
|
| 573 |
+
"Spawning_Pool*1 [176,3680]",
|
| 574 |
+
"Zergling*3 [341,3843]->[404,3690]"
|
| 575 |
+
]
|
| 576 |
+
}
|
| 577 |
+
}
|
| 578 |
+
]
|
| 579 |
+
},
|
| 580 |
+
{
|
| 581 |
+
"seg_index": 15,
|
| 582 |
+
"clip_path": "match_004/clip/match_004_015",
|
| 583 |
+
"speech": "[PLAYER_2] may be looking to sneak an extra drone or prioritize faster tech, as his Lair is significantly ahead of [PLAYER_1], who is focusing on Zergling Speed first.",
|
| 584 |
+
"speech_tag": "PREDICTION",
|
| 585 |
+
"time": "3317~3851",
|
| 586 |
+
"events": [
|
| 587 |
+
{
|
| 588 |
+
"frames": "3317~3350",
|
| 589 |
+
"viewport": "[0,3648]->[0,3627]",
|
| 590 |
+
"units": {
|
| 591 |
+
"[PLAYER_2]": [
|
| 592 |
+
"Drone*9 [177,3820]->[188,3833]",
|
| 593 |
+
"Extractor*1 [288,3648]",
|
| 594 |
+
"Lair*1 [288,3824]",
|
| 595 |
+
"Larva*1 [356,3826]->[346,3836]",
|
| 596 |
+
"Spawning_Pool*1 [176,3680]",
|
| 597 |
+
"Zergling*5 [418,3675]->[472,3609]"
|
| 598 |
+
]
|
| 599 |
+
}
|
| 600 |
+
},
|
| 601 |
+
{
|
| 602 |
+
"frames": "3351~3429",
|
| 603 |
+
"viewport": "[0,3392]->[130,3072]",
|
| 604 |
+
"units": {
|
| 605 |
+
"[PLAYER_2]": [
|
| 606 |
+
"Drone*5 [216,3780]->[208,3774]",
|
| 607 |
+
"Extractor*1 [288,3648]",
|
| 608 |
+
"Lair*1 [288,3824]",
|
| 609 |
+
"Larva*1 [346,3836]->[355,3845]",
|
| 610 |
+
"Spawning_Pool*1 [176,3680]",
|
| 611 |
+
"Zergling*6 [489,3524]->[506,3158]"
|
| 612 |
+
]
|
| 613 |
+
}
|
| 614 |
+
},
|
| 615 |
+
{
|
| 616 |
+
"frames": "3430~3509",
|
| 617 |
+
"viewport": "[22,789]->[173,768]",
|
| 618 |
+
"units": {
|
| 619 |
+
"[PLAYER_1]": [
|
| 620 |
+
"Overlord*1 [332,739]->[331,798]",
|
| 621 |
+
"Zergling*6 [444,828]->[622,1122]"
|
| 622 |
+
],
|
| 623 |
+
"[PLAYER_2]": [
|
| 624 |
+
"Overlord*1 [336,1008]->[335,942]"
|
| 625 |
+
]
|
| 626 |
+
}
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"frames": "3510~3541",
|
| 630 |
+
"viewport": "[302,981]->[346,1024]",
|
| 631 |
+
"units": {
|
| 632 |
+
"[PLAYER_1]": [
|
| 633 |
+
"Zergling*6 [625,1125]->[751,1239]"
|
| 634 |
+
]
|
| 635 |
+
}
|
| 636 |
+
},
|
| 637 |
+
{
|
| 638 |
+
"frames": "3542~3588",
|
| 639 |
+
"viewport": "[86,768]->[0,661]",
|
| 640 |
+
"units": {
|
| 641 |
+
"[PLAYER_1]": [
|
| 642 |
+
"Overlord*1 [330,825]->[329,864]",
|
| 643 |
+
"Zergling*3 [689,1188]->[704,1203]"
|
| 644 |
+
],
|
| 645 |
+
"[PLAYER_2]": [
|
| 646 |
+
"Overlord*1 [334,915]->[334,876]"
|
| 647 |
+
]
|
| 648 |
+
}
|
| 649 |
+
},
|
| 650 |
+
{
|
| 651 |
+
"frames": "3589~3660",
|
| 652 |
+
"viewport": "[151,3029]->[151,3008]",
|
| 653 |
+
"units": {
|
| 654 |
+
"[PLAYER_2]": [
|
| 655 |
+
"Zergling*6 [506,3169]->[573,3217]"
|
| 656 |
+
]
|
| 657 |
+
}
|
| 658 |
+
},
|
| 659 |
+
{
|
| 660 |
+
"frames": "3661~3723",
|
| 661 |
+
"viewport": "[0,43]->[0,64]",
|
| 662 |
+
"units": {
|
| 663 |
+
"[PLAYER_1]": [
|
| 664 |
+
"Drone*9 [183,227]->[192,211]",
|
| 665 |
+
"Egg*2 [353,240]->[360,293]",
|
| 666 |
+
"Extractor*1 [288,64]",
|
| 667 |
+
"Hatchery*1 [288,240]",
|
| 668 |
+
"Spawning_Pool*1 [176,96]",
|
| 669 |
+
"Zergling*1 [351,245]->[385,376]"
|
| 670 |
+
]
|
| 671 |
+
}
|
| 672 |
+
},
|
| 673 |
+
{
|
| 674 |
+
"frames": "3724~3818",
|
| 675 |
+
"viewport": "[0,3605]->[0,3627]",
|
| 676 |
+
"units": {
|
| 677 |
+
"[PLAYER_2]": [
|
| 678 |
+
"Drone*10 [219,3805]->[204,3810]",
|
| 679 |
+
"Egg*1 [356,3814]",
|
| 680 |
+
"Extractor*1 [288,3648]",
|
| 681 |
+
"Lair*1 [288,3824]",
|
| 682 |
+
"Spawning_Pool*1 [176,3680]"
|
| 683 |
+
]
|
| 684 |
+
}
|
| 685 |
+
},
|
| 686 |
+
{
|
| 687 |
+
"frames": "3819~3850",
|
| 688 |
+
"viewport": "[194,3029]->[324,2795]",
|
| 689 |
+
"units": {
|
| 690 |
+
"[PLAYER_2]": [
|
| 691 |
+
"Zergling*6 [578,3223]"
|
| 692 |
+
]
|
| 693 |
+
}
|
| 694 |
+
}
|
| 695 |
+
]
|
| 696 |
+
},
|
| 697 |
+
{
|
| 698 |
+
"seg_index": 16,
|
| 699 |
+
"clip_path": "match_004/clip/match_004_016",
|
| 700 |
+
"speech": "[PLAYER_2] is opting for a more defensive, fast Lair tech path. His Overlord has successfully scouted [PLAYER_1]'s Zerglings as they begin to move across the map.",
|
| 701 |
+
"speech_tag": "STATUS_REPORT",
|
| 702 |
+
"time": "3851~3999",
|
| 703 |
+
"events": [
|
| 704 |
+
{
|
| 705 |
+
"frames": "3852~3858",
|
| 706 |
+
"viewport": "[475,2624]",
|
| 707 |
+
"units": {
|
| 708 |
+
"[PLAYER_1]": [
|
| 709 |
+
"Zergling*1 [1048,2609]->[1038,2624]"
|
| 710 |
+
]
|
| 711 |
+
}
|
| 712 |
+
},
|
| 713 |
+
{
|
| 714 |
+
"frames": "3859~3921",
|
| 715 |
+
"viewport": "[734,2389]",
|
| 716 |
+
"units": {
|
| 717 |
+
"[PLAYER_1]": [
|
| 718 |
+
"Zergling*6 [1036,2480]->[1115,2729]"
|
| 719 |
+
]
|
| 720 |
+
}
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"frames": "3922~3999",
|
| 724 |
+
"viewport": "[281,3136]->[216,2880]",
|
| 725 |
+
"units": {
|
| 726 |
+
"[PLAYER_1]": [
|
| 727 |
+
"Zergling*1 [801,2932]->[703,2912]"
|
| 728 |
+
],
|
| 729 |
+
"[PLAYER_2]": [
|
| 730 |
+
"Zergling*6 [570,3224]->[554,3224]"
|
| 731 |
+
]
|
| 732 |
+
}
|
| 733 |
+
}
|
| 734 |
+
]
|
| 735 |
+
},
|
| 736 |
+
{
|
| 737 |
+
"seg_index": 17,
|
| 738 |
+
"clip_path": "match_004/clip/match_004_017",
|
| 739 |
+
"speech": "[PLAYER_2] immediately pulled his Zerglings back up the ramp to form a defensive arc. Even with equal unit counts, he needs to avoid being caught in the open while prioritizing that faster Lair tech.",
|
| 740 |
+
"speech_tag": "CAUSAL_EXPLAIN",
|
| 741 |
+
"time": "3999~4285",
|
| 742 |
+
"events": [
|
| 743 |
+
{
|
| 744 |
+
"frames": "3999~4285",
|
| 745 |
+
"viewport": "[216,2880]->[194,2965]",
|
| 746 |
+
"units": {
|
| 747 |
+
"[PLAYER_1]": [
|
| 748 |
+
"Zergling*6 [584,2875]->[406,3141]"
|
| 749 |
+
],
|
| 750 |
+
"[PLAYER_2]": [
|
| 751 |
+
"Zergling*6 [554,3224]->[507,3212]"
|
| 752 |
+
]
|
| 753 |
+
}
|
| 754 |
+
}
|
| 755 |
+
]
|
| 756 |
+
},
|
| 757 |
+
{
|
| 758 |
+
"seg_index": 18,
|
| 759 |
+
"clip_path": "match_004/clip/match_004_018",
|
| 760 |
+
"speech": "[PLAYER_2] is focusing on a defensive posture by holding the high ground at the ramp. While [PLAYER_1] is testing the waters with these pokes, it's unlikely he'll find a way to break through that stabilized arc.",
|
| 761 |
+
"speech_tag": "PREDICTION",
|
| 762 |
+
"time": "4285~4510",
|
| 763 |
+
"events": [
|
| 764 |
+
{
|
| 765 |
+
"frames": "4285~4510",
|
| 766 |
+
"viewport": "[194,2965]",
|
| 767 |
+
"units": {
|
| 768 |
+
"[PLAYER_1]": [
|
| 769 |
+
"Zergling*7 [531,3088]->[448,3096]"
|
| 770 |
+
],
|
| 771 |
+
"[PLAYER_2]": [
|
| 772 |
+
"Zergling*7 [511,3268]->[550,3219]"
|
| 773 |
+
]
|
| 774 |
+
}
|
| 775 |
+
}
|
| 776 |
+
]
|
| 777 |
+
},
|
| 778 |
+
{
|
| 779 |
+
"seg_index": 19,
|
| 780 |
+
"clip_path": "match_004/clip/match_004_019",
|
| 781 |
+
"speech": "[PLAYER_1] simply lacks the Zergling numbers required to break this position. He's attempting some clever micro, and he actually manages to pick off a free Zergling right there.",
|
| 782 |
+
"speech_tag": "ACTION_CALL",
|
| 783 |
+
"time": "4510~4762",
|
| 784 |
+
"events": [
|
| 785 |
+
{
|
| 786 |
+
"frames": "4510~4762",
|
| 787 |
+
"viewport": "[194,2965]->[173,2965]",
|
| 788 |
+
"units": {
|
| 789 |
+
"[PLAYER_1]": [
|
| 790 |
+
"Zergling*9 [543,3072]->[390,3106]"
|
| 791 |
+
],
|
| 792 |
+
"[PLAYER_2]": [
|
| 793 |
+
"Zergling*11 [535,3293]->[561,3271]"
|
| 794 |
+
]
|
| 795 |
+
}
|
| 796 |
+
}
|
| 797 |
+
]
|
| 798 |
+
},
|
| 799 |
+
{
|
| 800 |
+
"seg_index": 20,
|
| 801 |
+
"clip_path": "match_004/clip/match_004_020",
|
| 802 |
+
"speech": "I like to call this 'Zergling Chicken' when single units start nipping at each other. It’s a contest of nerves to see which player is going to blink first.",
|
| 803 |
+
"speech_tag": "CAST_BANTER",
|
| 804 |
+
"time": "4762~4979",
|
| 805 |
+
"events": [
|
| 806 |
+
{
|
| 807 |
+
"frames": "4762~4889",
|
| 808 |
+
"viewport": "[173,2965]",
|
| 809 |
+
"units": {
|
| 810 |
+
"[PLAYER_1]": [
|
| 811 |
+
"Zergling*8 [379,3087]->[328,3144]"
|
| 812 |
+
],
|
| 813 |
+
"[PLAYER_2]": [
|
| 814 |
+
"Zergling*11 [561,3270]->[542,3255]"
|
| 815 |
+
]
|
| 816 |
+
}
|
| 817 |
+
},
|
| 818 |
+
{
|
| 819 |
+
"frames": "4890~4945",
|
| 820 |
+
"viewport": "[0,3520]->[0,3605]",
|
| 821 |
+
"units": {
|
| 822 |
+
"[PLAYER_2]": [
|
| 823 |
+
"Drone*10 [218,3819]->[219,3809]",
|
| 824 |
+
"Egg*1 [351,3818]",
|
| 825 |
+
"Extractor*1 [288,3648]",
|
| 826 |
+
"Lair*1 [288,3824]",
|
| 827 |
+
"Larva*1 [346,3798]->[346,3784]",
|
| 828 |
+
"Spawning_Pool*1 [176,3680]"
|
| 829 |
+
]
|
| 830 |
+
}
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"frames": "4946~4979",
|
| 834 |
+
"viewport": "[281,3072]->[194,3008]",
|
| 835 |
+
"units": {
|
| 836 |
+
"[PLAYER_1]": [
|
| 837 |
+
"Zergling*7 [479,3137]->[364,3133]"
|
| 838 |
+
],
|
| 839 |
+
"[PLAYER_2]": [
|
| 840 |
+
"Zergling*11 [544,3253]->[527,3261]"
|
| 841 |
+
]
|
| 842 |
+
}
|
| 843 |
+
}
|
| 844 |
+
]
|
| 845 |
+
},
|
| 846 |
+
{
|
| 847 |
+
"seg_index": 21,
|
| 848 |
+
"clip_path": "match_004/clip/match_004_021",
|
| 849 |
+
"speech": "Wow, those were some poor trades for [PLAYER_1]. He lost a significant number of Zerglings in that exchange without gaining much in return.",
|
| 850 |
+
"speech_tag": "EVALUATION",
|
| 851 |
+
"time": "4979~5089",
|
| 852 |
+
"events": [
|
| 853 |
+
{
|
| 854 |
+
"frames": "4979~5056",
|
| 855 |
+
"viewport": "[194,3008]",
|
| 856 |
+
"units": {
|
| 857 |
+
"[PLAYER_1]": [
|
| 858 |
+
"Zergling*9 [478,3108]->[627,3044]"
|
| 859 |
+
],
|
| 860 |
+
"[PLAYER_2]": [
|
| 861 |
+
"Zergling*11 [527,3261]->[524,3247]"
|
| 862 |
+
]
|
| 863 |
+
}
|
| 864 |
+
},
|
| 865 |
+
{
|
| 866 |
+
"frames": "5057~5089",
|
| 867 |
+
"viewport": "[0,85]",
|
| 868 |
+
"units": {
|
| 869 |
+
"[PLAYER_1]": [
|
| 870 |
+
"Drone*9 [212,206]->[219,201]",
|
| 871 |
+
"Egg*1 [346,280]",
|
| 872 |
+
"Lair*1 [288,240]",
|
| 873 |
+
"Spawning_Pool*1 [176,96]"
|
| 874 |
+
],
|
| 875 |
+
"[PLAYER_2]": [
|
| 876 |
+
"Overlord*1 [301,391]"
|
| 877 |
+
]
|
| 878 |
+
}
|
| 879 |
+
}
|
| 880 |
+
]
|
| 881 |
+
},
|
| 882 |
+
{
|
| 883 |
+
"seg_index": 22,
|
| 884 |
+
"clip_path": "match_004/clip/match_004_022",
|
| 885 |
+
"speech": "I think [PLAYER_1] is actually even on supply, but his Zergling count might be a bit too high right now. Ultimately, though, I don't think it's going to matter that much.",
|
| 886 |
+
"speech_tag": "EVALUATION",
|
| 887 |
+
"time": "5090~5297",
|
| 888 |
+
"events": [
|
| 889 |
+
{
|
| 890 |
+
"frames": "5090~5135",
|
| 891 |
+
"viewport": "[0,85]",
|
| 892 |
+
"units": {
|
| 893 |
+
"[PLAYER_1]": [
|
| 894 |
+
"Drone*9 [219,201]->[195,200]",
|
| 895 |
+
"Egg*1 [346,280]",
|
| 896 |
+
"Lair*1 [288,240]",
|
| 897 |
+
"Spawning_Pool*1 [176,96]"
|
| 898 |
+
],
|
| 899 |
+
"[PLAYER_2]": [
|
| 900 |
+
"Overlord*1 [301,391]"
|
| 901 |
+
]
|
| 902 |
+
}
|
| 903 |
+
},
|
| 904 |
+
{
|
| 905 |
+
"frames": "5136~5175",
|
| 906 |
+
"viewport": "[0,3584]",
|
| 907 |
+
"units": {
|
| 908 |
+
"[PLAYER_2]": [
|
| 909 |
+
"Drone*9 [198,3806]->[200,3800]",
|
| 910 |
+
"Egg*1 [346,3784]",
|
| 911 |
+
"Extractor*1 [288,3648]",
|
| 912 |
+
"Lair*1 [288,3824]",
|
| 913 |
+
"Larva*1 [346,3814]",
|
| 914 |
+
"Spawning_Pool*1 [176,3680]",
|
| 915 |
+
"Spire*1 [288,3904]"
|
| 916 |
+
]
|
| 917 |
+
}
|
| 918 |
+
},
|
| 919 |
+
{
|
| 920 |
+
"frames": "5176~5222",
|
| 921 |
+
"viewport": "[86,3093]->[194,2965]",
|
| 922 |
+
"units": {
|
| 923 |
+
"[PLAYER_2]": [
|
| 924 |
+
"Zergling*13 [529,3248]"
|
| 925 |
+
]
|
| 926 |
+
}
|
| 927 |
+
},
|
| 928 |
+
{
|
| 929 |
+
"frames": "5223~5238",
|
| 930 |
+
"viewport": "[410,2773]",
|
| 931 |
+
"units": {
|
| 932 |
+
"[PLAYER_1]": [
|
| 933 |
+
"Zergling*9 [1051,2895]->[1051,2899]"
|
| 934 |
+
],
|
| 935 |
+
"[PLAYER_2]": [
|
| 936 |
+
"Zergling*3 [575,3208]"
|
| 937 |
+
]
|
| 938 |
+
}
|
| 939 |
+
},
|
| 940 |
+
{
|
| 941 |
+
"frames": "5239~5297",
|
| 942 |
+
"viewport": "[648,2688]->[648,2645]",
|
| 943 |
+
"units": {
|
| 944 |
+
"[PLAYER_1]": [
|
| 945 |
+
"Zergling*11 [1067,2850]->[1064,2886]"
|
| 946 |
+
]
|
| 947 |
+
}
|
| 948 |
+
}
|
| 949 |
+
]
|
| 950 |
+
},
|
| 951 |
+
{
|
| 952 |
+
"seg_index": 23,
|
| 953 |
+
"clip_path": "match_004/clip/match_004_023",
|
| 954 |
+
"speech": "With [PLAYER_1] positioning so many Zerglings at the top of the ramp, it is going to be incredibly difficult for [PLAYER_2] to force a bust with Zerglings alone.",
|
| 955 |
+
"speech_tag": "PREDICTION",
|
| 956 |
+
"time": "5297~5417",
|
| 957 |
+
"events": [
|
| 958 |
+
{
|
| 959 |
+
"frames": "5297~5349",
|
| 960 |
+
"viewport": "[648,2645]",
|
| 961 |
+
"units": {
|
| 962 |
+
"[PLAYER_1]": [
|
| 963 |
+
"Zergling*11 [1064,2886]"
|
| 964 |
+
]
|
| 965 |
+
}
|
| 966 |
+
},
|
| 967 |
+
{
|
| 968 |
+
"frames": "5350~5417",
|
| 969 |
+
"viewport": "[0,43]->[0,85]",
|
| 970 |
+
"units": {
|
| 971 |
+
"[PLAYER_1]": [
|
| 972 |
+
"Drone*10 [220,207]->[199,215]",
|
| 973 |
+
"Egg*1 [346,250]",
|
| 974 |
+
"Extractor*1 [288,64]",
|
| 975 |
+
"Lair*1 [288,240]",
|
| 976 |
+
"Larva*1 [346,240]",
|
| 977 |
+
"Spawning_Pool*1 [176,96]"
|
| 978 |
+
],
|
| 979 |
+
"[PLAYER_2]": [
|
| 980 |
+
"Overlord*1 [301,391]"
|
| 981 |
+
]
|
| 982 |
+
}
|
| 983 |
+
}
|
| 984 |
+
]
|
| 985 |
+
},
|
| 986 |
+
{
|
| 987 |
+
"seg_index": 24,
|
| 988 |
+
"clip_path": "match_004/clip/match_004_024",
|
| 989 |
+
"speech": "Interestingly, [PLAYER_2] hasn't researched Zergling speed. It seems he's skipping it to reserve gas for Mutalisks, leveraging his faster Spire timing to gain an advantage.",
|
| 990 |
+
"speech_tag": "CAUSAL_EXPLAIN",
|
| 991 |
+
"time": "5417~5697",
|
| 992 |
+
"events": [
|
| 993 |
+
{
|
| 994 |
+
"frames": "5417~5452",
|
| 995 |
+
"viewport": "[0,85]",
|
| 996 |
+
"units": {
|
| 997 |
+
"[PLAYER_1]": [
|
| 998 |
+
"Drone*10 [200,215]->[214,208]",
|
| 999 |
+
"Egg*1 [346,250]",
|
| 1000 |
+
"Lair*1 [288,240]",
|
| 1001 |
+
"Larva*1 [346,240]",
|
| 1002 |
+
"Spawning_Pool*1 [176,96]"
|
| 1003 |
+
],
|
| 1004 |
+
"[PLAYER_2]": [
|
| 1005 |
+
"Overlord*1 [301,391]"
|
| 1006 |
+
]
|
| 1007 |
+
}
|
| 1008 |
+
},
|
| 1009 |
+
{
|
| 1010 |
+
"frames": "5453~5571",
|
| 1011 |
+
"viewport": "[0,3584]->[0,3648]",
|
| 1012 |
+
"units": {
|
| 1013 |
+
"[PLAYER_2]": [
|
| 1014 |
+
"Drone*9 [211,3804]->[231,3800]",
|
| 1015 |
+
"Egg*2 [346,3809]->[363,3776]",
|
| 1016 |
+
"Extractor*1 [288,3648]",
|
| 1017 |
+
"Lair*1 [288,3824]",
|
| 1018 |
+
"Larva*1 [350,3820]->[364,3842]",
|
| 1019 |
+
"Spawning_Pool*1 [176,3680]",
|
| 1020 |
+
"Spire*1 [288,3904]",
|
| 1021 |
+
"Zergling*1 [339,3787]->[386,3685]"
|
| 1022 |
+
]
|
| 1023 |
+
}
|
| 1024 |
+
},
|
| 1025 |
+
{
|
| 1026 |
+
"frames": "5572~5611",
|
| 1027 |
+
"viewport": "[0,85]->[0,21]",
|
| 1028 |
+
"units": {
|
| 1029 |
+
"[PLAYER_1]": [
|
| 1030 |
+
"Drone*9 [207,208]->[219,217]",
|
| 1031 |
+
"Egg*1 [346,250]",
|
| 1032 |
+
"Extractor*1 [288,64]",
|
| 1033 |
+
"Lair*1 [288,240]",
|
| 1034 |
+
"Larva*1 [356,210]->[353,213]",
|
| 1035 |
+
"Spawning_Pool*1 [176,96]",
|
| 1036 |
+
"Spire*1 [256,128]"
|
| 1037 |
+
],
|
| 1038 |
+
"[PLAYER_2]": [
|
| 1039 |
+
"Overlord*1 [301,391]"
|
| 1040 |
+
]
|
| 1041 |
+
}
|
| 1042 |
+
},
|
| 1043 |
+
{
|
| 1044 |
+
"frames": "5612~5627",
|
| 1045 |
+
"viewport": "[43,2645]->[43,2667]",
|
| 1046 |
+
"units": {
|
| 1047 |
+
"[PLAYER_1]": [
|
| 1048 |
+
"Zergling*12 [668,2956]->[579,2997]"
|
| 1049 |
+
],
|
| 1050 |
+
"[PLAYER_2]": [
|
| 1051 |
+
"Zergling*1 [553,3075]->[512,3124]"
|
| 1052 |
+
]
|
| 1053 |
+
}
|
| 1054 |
+
},
|
| 1055 |
+
{
|
| 1056 |
+
"frames": "5628~5697",
|
| 1057 |
+
"viewport": "[65,2901]->[151,3008]",
|
| 1058 |
+
"units": {
|
| 1059 |
+
"[PLAYER_1]": [
|
| 1060 |
+
"Zergling*13 [588,2996]->[508,3092]"
|
| 1061 |
+
],
|
| 1062 |
+
"[PLAYER_2]": [
|
| 1063 |
+
"Zergling*15 [525,3260]->[534,3253]"
|
| 1064 |
+
]
|
| 1065 |
+
}
|
| 1066 |
+
}
|
| 1067 |
+
]
|
| 1068 |
+
},
|
| 1069 |
+
{
|
| 1070 |
+
"seg_index": 25,
|
| 1071 |
+
"clip_path": "match_004/clip/match_004_025",
|
| 1072 |
+
"speech": "Getting that earlier Spire will grant [PLAYER_2] a clear timing advantage, but if the match progresses into the mid-game, skipping Metabolic Boost now means he'll be forced to invest in that Zergling speed upgrade later on.",
|
| 1073 |
+
"speech_tag": "PREDICTION",
|
| 1074 |
+
"time": "5697~6083",
|
| 1075 |
+
"events": [
|
| 1076 |
+
{
|
| 1077 |
+
"frames": "5697~5936",
|
| 1078 |
+
"viewport": "[151,3008]->[734,2347]",
|
| 1079 |
+
"units": {
|
| 1080 |
+
"[PLAYER_1]": [
|
| 1081 |
+
"Zergling*13 [511,3094]->[1136,2392]"
|
| 1082 |
+
],
|
| 1083 |
+
"[PLAYER_2]": [
|
| 1084 |
+
"Zergling*15 [534,3253]"
|
| 1085 |
+
]
|
| 1086 |
+
}
|
| 1087 |
+
},
|
| 1088 |
+
{
|
| 1089 |
+
"frames": "5937~6083",
|
| 1090 |
+
"viewport": "[0,149]->[0,43]",
|
| 1091 |
+
"units": {
|
| 1092 |
+
"[PLAYER_1]": [
|
| 1093 |
+
"Drone*9 [234,216]->[221,204]",
|
| 1094 |
+
"Egg*1 [346,280]",
|
| 1095 |
+
"Extractor*1 [288,64]",
|
| 1096 |
+
"Lair*1 [288,240]",
|
| 1097 |
+
"Larva*2 [348,238]->[354,228]",
|
| 1098 |
+
"Overlord*1 [346,250]->[412,202]",
|
| 1099 |
+
"Spawning_Pool*1 [176,96]",
|
| 1100 |
+
"Spire*1 [256,128]"
|
| 1101 |
+
],
|
| 1102 |
+
"[PLAYER_2]": [
|
| 1103 |
+
"Overlord*1 [301,391]->[307,415]"
|
| 1104 |
+
]
|
| 1105 |
+
}
|
| 1106 |
+
}
|
| 1107 |
+
]
|
| 1108 |
+
},
|
| 1109 |
+
{
|
| 1110 |
+
"seg_index": 26,
|
| 1111 |
+
"clip_path": "match_004/clip/match_004_026",
|
| 1112 |
+
"speech": "Zergling speed is crucial for executing backstabs in the mid-game when Mutas are out of position. Without that mobility in your arsenal, your ground threat is going to be significantly weaker.",
|
| 1113 |
+
"speech_tag": "CAUSAL_EXPLAIN",
|
| 1114 |
+
"time": "6083~6366",
|
| 1115 |
+
"events": [
|
| 1116 |
+
{
|
| 1117 |
+
"frames": "6083~6309",
|
| 1118 |
+
"viewport": "[0,43]->[130,725]",
|
| 1119 |
+
"units": {
|
| 1120 |
+
"[PLAYER_1]": [
|
| 1121 |
+
"Drone*10 [234,211]->[192,231]",
|
| 1122 |
+
"Egg*1 [353,227]",
|
| 1123 |
+
"Extractor*1 [288,64]",
|
| 1124 |
+
"Lair*1 [288,240]",
|
| 1125 |
+
"Larva*1 [356,230]->[351,245]",
|
| 1126 |
+
"Overlord*1 [413,202]->[434,193]",
|
| 1127 |
+
"Spawning_Pool*1 [176,96]",
|
| 1128 |
+
"Spire*1 [256,128]",
|
| 1129 |
+
"Zergling*13 [470,868]->[542,850]"
|
| 1130 |
+
],
|
| 1131 |
+
"[PLAYER_2]": [
|
| 1132 |
+
"Overlord*1 [307,415]->[304,544]"
|
| 1133 |
+
]
|
| 1134 |
+
}
|
| 1135 |
+
},
|
| 1136 |
+
{
|
| 1137 |
+
"frames": "6310~6366",
|
| 1138 |
+
"viewport": "[0,3627]->[0,3648]",
|
| 1139 |
+
"units": {
|
| 1140 |
+
"[PLAYER_2]": [
|
| 1141 |
+
"Drone*9 [210,3808]->[201,3803]",
|
| 1142 |
+
"Egg*1 [350,3869]",
|
| 1143 |
+
"Extractor*1 [288,3648]",
|
| 1144 |
+
"Lair*1 [288,3824]",
|
| 1145 |
+
"Larva*2 [364,3837]->[359,3851]",
|
| 1146 |
+
"Overlord*1 [118,3888]->[80,3914]",
|
| 1147 |
+
"Spawning_Pool*1 [176,3680]",
|
| 1148 |
+
"Spire*1 [288,3904]"
|
| 1149 |
+
]
|
| 1150 |
+
}
|
| 1151 |
+
}
|
| 1152 |
+
]
|
| 1153 |
+
},
|
| 1154 |
+
{
|
| 1155 |
+
"seg_index": 27,
|
| 1156 |
+
"clip_path": "match_004/clip/match_004_027",
|
| 1157 |
+
"speech": "I completely agree; the impact of those Zerglings will depend on how long this game actually goes here on [MAP_NAME].",
|
| 1158 |
+
"speech_tag": "PREDICTION",
|
| 1159 |
+
"time": "6366~6494",
|
| 1160 |
+
"events": [
|
| 1161 |
+
{
|
| 1162 |
+
"frames": "6366~6492",
|
| 1163 |
+
"viewport": "[0,3648]->[43,3520]",
|
| 1164 |
+
"units": {
|
| 1165 |
+
"[PLAYER_2]": [
|
| 1166 |
+
"Drone*9 [201,3803]->[207,3808]",
|
| 1167 |
+
"Egg*1 [350,3869]",
|
| 1168 |
+
"Extractor*1 [288,3648]",
|
| 1169 |
+
"Lair*1 [288,3824]",
|
| 1170 |
+
"Larva*3 [354,3841]->[351,3834]",
|
| 1171 |
+
"Overlord*1 [79,3915]->[29,3951]",
|
| 1172 |
+
"Spawning_Pool*1 [176,3680]",
|
| 1173 |
+
"Spire*1 [288,3904]"
|
| 1174 |
+
]
|
| 1175 |
+
}
|
| 1176 |
+
},
|
| 1177 |
+
{
|
| 1178 |
+
"frames": "6493~6493",
|
| 1179 |
+
"viewport": "[108,3285]",
|
| 1180 |
+
"units": {
|
| 1181 |
+
"[PLAYER_2]": [
|
| 1182 |
+
"Drone*2 [344,3691]",
|
| 1183 |
+
"Extractor*1 [288,3648]",
|
| 1184 |
+
"Spawning_Pool*1 [176,3680]",
|
| 1185 |
+
"Zergling*4 [519,3290]"
|
| 1186 |
+
]
|
| 1187 |
+
}
|
| 1188 |
+
}
|
| 1189 |
+
]
|
| 1190 |
+
},
|
| 1191 |
+
{
|
| 1192 |
+
"seg_index": 28,
|
| 1193 |
+
"clip_path": "match_004/clip/match_004_028",
|
| 1194 |
+
"speech": "As I mentioned earlier, committing to a second base in these positions is quite risky. We might see both players decide to just hold their Zerglings defensively at the top of their ramps.",
|
| 1195 |
+
"speech_tag": "PREDICTION",
|
| 1196 |
+
"time": "6494~6800",
|
| 1197 |
+
"events": [
|
| 1198 |
+
{
|
| 1199 |
+
"frames": "6494~6500",
|
| 1200 |
+
"viewport": "[108,3285]",
|
| 1201 |
+
"units": {
|
| 1202 |
+
"[PLAYER_2]": [
|
| 1203 |
+
"Drone*2 [344,3691]",
|
| 1204 |
+
"Extractor*1 [288,3648]",
|
| 1205 |
+
"Spawning_Pool*1 [176,3680]",
|
| 1206 |
+
"Zergling*4 [519,3290]"
|
| 1207 |
+
]
|
| 1208 |
+
}
|
| 1209 |
+
},
|
| 1210 |
+
{
|
| 1211 |
+
"frames": "6501~6539",
|
| 1212 |
+
"viewport": "[130,3008]->[194,2944]",
|
| 1213 |
+
"units": {
|
| 1214 |
+
"[PLAYER_2]": [
|
| 1215 |
+
"Zergling*15 [534,3253]"
|
| 1216 |
+
]
|
| 1217 |
+
}
|
| 1218 |
+
},
|
| 1219 |
+
{
|
| 1220 |
+
"frames": "6540~6563",
|
| 1221 |
+
"viewport": "[238,640]->[194,576]",
|
| 1222 |
+
"units": {
|
| 1223 |
+
"[PLAYER_1]": [
|
| 1224 |
+
"Zergling*12 [550,828]->[549,829]"
|
| 1225 |
+
],
|
| 1226 |
+
"[PLAYER_2]": [
|
| 1227 |
+
"Overlord*1 [299,796]->[298,815]"
|
| 1228 |
+
]
|
| 1229 |
+
}
|
| 1230 |
+
},
|
| 1231 |
+
{
|
| 1232 |
+
"frames": "6564~6571",
|
| 1233 |
+
"viewport": "[0,363]",
|
| 1234 |
+
"units": {
|
| 1235 |
+
"[PLAYER_1]": [
|
| 1236 |
+
"Drone*1 [139,345]",
|
| 1237 |
+
"Zergling*5 [519,812]"
|
| 1238 |
+
],
|
| 1239 |
+
"[PLAYER_2]": [
|
| 1240 |
+
"Overlord*1 [298,816]->[298,821]"
|
| 1241 |
+
]
|
| 1242 |
+
}
|
| 1243 |
+
},
|
| 1244 |
+
{
|
| 1245 |
+
"frames": "6572~6642",
|
| 1246 |
+
"viewport": "[0,149]->[0,64]",
|
| 1247 |
+
"units": {
|
| 1248 |
+
"[PLAYER_1]": [
|
| 1249 |
+
"Drone*11 [179,217]->[192,224]",
|
| 1250 |
+
"Egg*1 [353,246]",
|
| 1251 |
+
"Extractor*1 [288,64]",
|
| 1252 |
+
"Lair*1 [288,240]",
|
| 1253 |
+
"Larva*1 [356,200]->[349,197]",
|
| 1254 |
+
"Overlord*1 [434,193]",
|
| 1255 |
+
"Spawning_Pool*1 [176,96]",
|
| 1256 |
+
"Spire*1 [256,128]"
|
| 1257 |
+
]
|
| 1258 |
+
}
|
| 1259 |
+
},
|
| 1260 |
+
{
|
| 1261 |
+
"frames": "6643~6674",
|
| 1262 |
+
"viewport": "[216,3136]",
|
| 1263 |
+
"units": {
|
| 1264 |
+
"[PLAYER_2]": [
|
| 1265 |
+
"Zergling*15 [534,3253]"
|
| 1266 |
+
]
|
| 1267 |
+
}
|
| 1268 |
+
},
|
| 1269 |
+
{
|
| 1270 |
+
"frames": "6675~6706",
|
| 1271 |
+
"viewport": "[216,640]",
|
| 1272 |
+
"units": {
|
| 1273 |
+
"[PLAYER_1]": [
|
| 1274 |
+
"Zergling*12 [542,828]->[528,822]"
|
| 1275 |
+
],
|
| 1276 |
+
"[PLAYER_2]": [
|
| 1277 |
+
"Overlord*1 [296,908]->[295,934]"
|
| 1278 |
+
]
|
| 1279 |
+
}
|
| 1280 |
+
},
|
| 1281 |
+
{
|
| 1282 |
+
"frames": "6707~6714",
|
| 1283 |
+
"viewport": "[43,427]",
|
| 1284 |
+
"units": {
|
| 1285 |
+
"[PLAYER_1]": [
|
| 1286 |
+
"Zergling*12 [528,822]"
|
| 1287 |
+
]
|
| 1288 |
+
}
|
| 1289 |
+
},
|
| 1290 |
+
{
|
| 1291 |
+
"frames": "6715~6800",
|
| 1292 |
+
"viewport": "[65,107]->[0,21]",
|
| 1293 |
+
"units": {
|
| 1294 |
+
"[PLAYER_1]": [
|
| 1295 |
+
"Drone*11 [197,220]->[203,217]",
|
| 1296 |
+
"Egg*1 [353,246]->[352,205]",
|
| 1297 |
+
"Extractor*1 [288,64]",
|
| 1298 |
+
"Lair*1 [288,240]",
|
| 1299 |
+
"Larva*2 [346,220]->[356,223]",
|
| 1300 |
+
"Overlord*1 [434,193]->[470,189]",
|
| 1301 |
+
"Spawning_Pool*1 [176,96]",
|
| 1302 |
+
"Spire*1 [256,128]"
|
| 1303 |
+
]
|
| 1304 |
+
}
|
| 1305 |
+
}
|
| 1306 |
+
]
|
| 1307 |
+
},
|
| 1308 |
+
{
|
| 1309 |
+
"seg_index": 29,
|
| 1310 |
+
"clip_path": "match_004/clip/match_004_029",
|
| 1311 |
+
"speech": "The Spire has just completed for [PLAYER_2], and he is immediately transitioning into Mutalisks.",
|
| 1312 |
+
"speech_tag": "STATUS_REPORT",
|
| 1313 |
+
"time": "6800~6901",
|
| 1314 |
+
"events": [
|
| 1315 |
+
{
|
| 1316 |
+
"frames": "6800~6801",
|
| 1317 |
+
"viewport": "[0,21]",
|
| 1318 |
+
"units": {
|
| 1319 |
+
"[PLAYER_1]": [
|
| 1320 |
+
"Drone*11 [203,218]",
|
| 1321 |
+
"Extractor*1 [288,64]",
|
| 1322 |
+
"Lair*1 [288,240]",
|
| 1323 |
+
"Larva*2 [354,223]->[352,223]",
|
| 1324 |
+
"Overlord*2 [411,196]->[411,197]",
|
| 1325 |
+
"Spawning_Pool*1 [176,96]",
|
| 1326 |
+
"Spire*1 [256,128]"
|
| 1327 |
+
]
|
| 1328 |
+
}
|
| 1329 |
+
},
|
| 1330 |
+
{
|
| 1331 |
+
"frames": "6802~6901",
|
| 1332 |
+
"viewport": "[0,3605]",
|
| 1333 |
+
"units": {
|
| 1334 |
+
"[PLAYER_2]": [
|
| 1335 |
+
"Drone*9 [210,3806]->[208,3806]",
|
| 1336 |
+
"Egg*3 [349,3816]",
|
| 1337 |
+
"Extractor*1 [288,3648]",
|
| 1338 |
+
"Lair*1 [288,3824]",
|
| 1339 |
+
"Overlord*2 [118,3927]->[85,3951]",
|
| 1340 |
+
"Spawning_Pool*1 [176,3680]",
|
| 1341 |
+
"Spire*1 [288,3904]"
|
| 1342 |
+
]
|
| 1343 |
+
}
|
| 1344 |
+
}
|
| 1345 |
+
]
|
| 1346 |
+
},
|
| 1347 |
+
{
|
| 1348 |
+
"seg_index": 30,
|
| 1349 |
+
"clip_path": "match_004/clip/match_004_030",
|
| 1350 |
+
"speech": "I was wondering if he might produce a pair of Scourge to quickly rush [PLAYER_1]'s base. He could have tried to snipe some of the Mutalisks just as they hatched from their eggs.",
|
| 1351 |
+
"speech_tag": "ALTERNATIVES",
|
| 1352 |
+
"time": "6901~7072",
|
| 1353 |
+
"events": [
|
| 1354 |
+
{
|
| 1355 |
+
"frames": "6901~6944",
|
| 1356 |
+
"viewport": "[0,3605]",
|
| 1357 |
+
"units": {
|
| 1358 |
+
"[PLAYER_2]": [
|
| 1359 |
+
"Drone*9 [208,3805]->[232,3797]",
|
| 1360 |
+
"Egg*3 [349,3816]",
|
| 1361 |
+
"Extractor*1 [288,3648]",
|
| 1362 |
+
"Lair*1 [288,3824]",
|
| 1363 |
+
"Overlord*2 [85,3951]->[70,3961]",
|
| 1364 |
+
"Spawning_Pool*1 [176,3680]",
|
| 1365 |
+
"Spire*1 [288,3904]"
|
| 1366 |
+
]
|
| 1367 |
+
}
|
| 1368 |
+
},
|
| 1369 |
+
{
|
| 1370 |
+
"frames": "6945~7072",
|
| 1371 |
+
"viewport": "[0,64]->[0,43]",
|
| 1372 |
+
"units": {
|
| 1373 |
+
"[PLAYER_1]": [
|
| 1374 |
+
"Drone*11 [184,216]->[190,214]",
|
| 1375 |
+
"Extractor*1 [288,64]",
|
| 1376 |
+
"Lair*1 [288,240]",
|
| 1377 |
+
"Larva*3 [353,219]->[349,216]",
|
| 1378 |
+
"Overlord*2 [438,240]->[455,204]",
|
| 1379 |
+
"Spawning_Pool*1 [176,96]",
|
| 1380 |
+
"Spire*1 [256,128]"
|
| 1381 |
+
]
|
| 1382 |
+
}
|
| 1383 |
+
}
|
| 1384 |
+
]
|
| 1385 |
+
},
|
| 1386 |
+
{
|
| 1387 |
+
"seg_index": 31,
|
| 1388 |
+
"clip_path": "match_004/clip/match_004_031",
|
| 1389 |
+
"speech": "It looks like [PLAYER_1] is opting to go straight for Mutalisks instead of Scourge. This is likely the better call, as the money saved by delaying Ling Speed provides an essential boost to his early air count.",
|
| 1390 |
+
"speech_tag": "EVALUATION",
|
| 1391 |
+
"time": "7072~7285",
|
| 1392 |
+
"events": [
|
| 1393 |
+
{
|
| 1394 |
+
"frames": "7072~7095",
|
| 1395 |
+
"viewport": "[0,43]",
|
| 1396 |
+
"units": {
|
| 1397 |
+
"[PLAYER_1]": [
|
| 1398 |
+
"Drone*11 [191,215]->[186,221]",
|
| 1399 |
+
"Extractor*1 [288,64]",
|
| 1400 |
+
"Lair*1 [288,240]",
|
| 1401 |
+
"Larva*3 [349,216]->[353,215]",
|
| 1402 |
+
"Overlord*2 [455,203]->[459,195]",
|
| 1403 |
+
"Spawning_Pool*1 [176,96]",
|
| 1404 |
+
"Spire*1 [256,128]"
|
| 1405 |
+
]
|
| 1406 |
+
}
|
| 1407 |
+
},
|
| 1408 |
+
{
|
| 1409 |
+
"frames": "7096~7285",
|
| 1410 |
+
"viewport": "[65,3691]->[0,3605]",
|
| 1411 |
+
"units": {
|
| 1412 |
+
"[PLAYER_2]": [
|
| 1413 |
+
"Drone*9 [213,3800]->[209,3809]",
|
| 1414 |
+
"Egg*3 [349,3816]",
|
| 1415 |
+
"Extractor*1 [288,3648]",
|
| 1416 |
+
"Lair*1 [288,3824]",
|
| 1417 |
+
"Larva*1 [356,3834]->[346,3844]",
|
| 1418 |
+
"Overlord*2 [51,3975]",
|
| 1419 |
+
"Spawning_Pool*1 [176,3680]",
|
| 1420 |
+
"Spire*1 [288,3904]"
|
| 1421 |
+
]
|
| 1422 |
+
}
|
| 1423 |
+
}
|
| 1424 |
+
]
|
| 1425 |
+
},
|
| 1426 |
+
{
|
| 1427 |
+
"seg_index": 32,
|
| 1428 |
+
"clip_path": "match_004/clip/match_004_032",
|
| 1429 |
+
"speech": "[PLAYER_1] is still delaying the Zergling speed upgrade, opting instead for a +1 Flyer Attack upgrade from the Spire to bolster his Mutalisks.",
|
| 1430 |
+
"speech_tag": "STATUS_REPORT",
|
| 1431 |
+
"time": "7285~7389",
|
| 1432 |
+
"events": [
|
| 1433 |
+
{
|
| 1434 |
+
"frames": "7285~7333",
|
| 1435 |
+
"viewport": "[0,3605]",
|
| 1436 |
+
"units": {
|
| 1437 |
+
"[PLAYER_2]": [
|
| 1438 |
+
"Drone*9 [209,3809]->[219,3800]",
|
| 1439 |
+
"Egg*4 [348,3823]",
|
| 1440 |
+
"Extractor*1 [288,3648]",
|
| 1441 |
+
"Lair*1 [288,3824]",
|
| 1442 |
+
"Overlord*2 [51,3975]",
|
| 1443 |
+
"Spawning_Pool*1 [176,3680]",
|
| 1444 |
+
"Spire*1 [288,3904]"
|
| 1445 |
+
]
|
| 1446 |
+
}
|
| 1447 |
+
},
|
| 1448 |
+
{
|
| 1449 |
+
"frames": "7334~7389",
|
| 1450 |
+
"viewport": "[43,21]->[0,21]",
|
| 1451 |
+
"units": {
|
| 1452 |
+
"[PLAYER_1]": [
|
| 1453 |
+
"Drone*11 [199,223]->[172,221]",
|
| 1454 |
+
"Extractor*1 [288,64]",
|
| 1455 |
+
"Lair*1 [288,240]",
|
| 1456 |
+
"Larva*3 [346,229]",
|
| 1457 |
+
"Overlord*1 [67,79]->[40,43]",
|
| 1458 |
+
"Spawning_Pool*1 [176,96]",
|
| 1459 |
+
"Spire*1 [256,128]"
|
| 1460 |
+
]
|
| 1461 |
+
}
|
| 1462 |
+
}
|
| 1463 |
+
]
|
| 1464 |
+
},
|
| 1465 |
+
{
|
| 1466 |
+
"seg_index": 33,
|
| 1467 |
+
"clip_path": "match_004/clip/match_004_033",
|
| 1468 |
+
"speech": "And look at this, [PLAYER_1] is also opting for the plus-one air attack upgrade for his Mutalisks. Very interesting tech choice.",
|
| 1469 |
+
"speech_tag": "STATUS_REPORT",
|
| 1470 |
+
"time": "7389~7484",
|
| 1471 |
+
"events": [
|
| 1472 |
+
{
|
| 1473 |
+
"frames": "7389~7460",
|
| 1474 |
+
"viewport": "[0,21]",
|
| 1475 |
+
"units": {
|
| 1476 |
+
"[PLAYER_1]": [
|
| 1477 |
+
"Drone*11 [172,221]->[194,216]",
|
| 1478 |
+
"Egg*3 [346,229]",
|
| 1479 |
+
"Extractor*1 [288,64]",
|
| 1480 |
+
"Lair*1 [288,240]",
|
| 1481 |
+
"Overlord*1 [40,42]->[28,25]",
|
| 1482 |
+
"Spawning_Pool*1 [176,96]",
|
| 1483 |
+
"Spire*1 [256,128]"
|
| 1484 |
+
]
|
| 1485 |
+
}
|
| 1486 |
+
},
|
| 1487 |
+
{
|
| 1488 |
+
"frames": "7461~7484",
|
| 1489 |
+
"viewport": "[86,3029]->[0,2859]",
|
| 1490 |
+
"units": {
|
| 1491 |
+
"[PLAYER_1]": [
|
| 1492 |
+
"Zergling*1 [435,2860]"
|
| 1493 |
+
],
|
| 1494 |
+
"[PLAYER_2]": [
|
| 1495 |
+
"Mutalisk*3 [337,3129]->[333,2982]",
|
| 1496 |
+
"Zergling*15 [534,3253]"
|
| 1497 |
+
]
|
| 1498 |
+
}
|
| 1499 |
+
}
|
| 1500 |
+
]
|
| 1501 |
+
},
|
| 1502 |
+
{
|
| 1503 |
+
"seg_index": 34,
|
| 1504 |
+
"clip_path": "match_004/clip/match_004_034",
|
| 1505 |
+
"speech": "That air attack upgrade is a bold choice by [PLAYER_1], as many pros consider it less optimal than armor. In a ZvZ mutalisk war, armor is typically prioritized because it reduces the bounce damage from glave wurms across your entire flock.",
|
| 1506 |
+
"speech_tag": "CAUSAL_EXPLAIN",
|
| 1507 |
+
"time": "7484~7722",
|
| 1508 |
+
"events": [
|
| 1509 |
+
{
|
| 1510 |
+
"frames": "7484~7507",
|
| 1511 |
+
"viewport": "[0,2859]",
|
| 1512 |
+
"units": {
|
| 1513 |
+
"[PLAYER_1]": [
|
| 1514 |
+
"Zergling*1 [435,2860]->[532,2839]"
|
| 1515 |
+
],
|
| 1516 |
+
"[PLAYER_2]": [
|
| 1517 |
+
"Mutalisk*3 [333,2976]->[330,2851]",
|
| 1518 |
+
"Zergling*15 [534,3253]"
|
| 1519 |
+
]
|
| 1520 |
+
}
|
| 1521 |
+
},
|
| 1522 |
+
{
|
| 1523 |
+
"frames": "7508~7722",
|
| 1524 |
+
"viewport": "[0,2624]->[0,1280]",
|
| 1525 |
+
"units": {
|
| 1526 |
+
"[PLAYER_1]": [
|
| 1527 |
+
"Overlord*1 [251,1291]->[251,1285]",
|
| 1528 |
+
"Zergling*1 [539,2832]->[596,2780]"
|
| 1529 |
+
],
|
| 1530 |
+
"[PLAYER_2]": [
|
| 1531 |
+
"Mutalisk*3 [329,2816]->[264,1397]",
|
| 1532 |
+
"Overlord*1 [282,1729]->[284,1776]"
|
| 1533 |
+
]
|
| 1534 |
+
}
|
| 1535 |
+
}
|
| 1536 |
+
]
|
| 1537 |
+
},
|
| 1538 |
+
{
|
| 1539 |
+
"seg_index": 35,
|
| 1540 |
+
"clip_path": "match_004/clip/match_004_035",
|
| 1541 |
+
"speech": "Investing in attack damage will improve the effectiveness of Mutalisks against Spore Colonies and allow them to one-shot Scourge. This is timely for [PLAYER_1], as [PLAYER_2] currently has a few Scourge out on the map.",
|
| 1542 |
+
"speech_tag": "CAUSAL_EXPLAIN",
|
| 1543 |
+
"time": "7722~8173",
|
| 1544 |
+
"events": [
|
| 1545 |
+
{
|
| 1546 |
+
"frames": "7722~8015",
|
| 1547 |
+
"viewport": "[0,1280]",
|
| 1548 |
+
"units": {
|
| 1549 |
+
"[PLAYER_1]": [
|
| 1550 |
+
"Overlord*1 [251,1284]->[246,1084]"
|
| 1551 |
+
],
|
| 1552 |
+
"[PLAYER_2]": [
|
| 1553 |
+
"Mutalisk*3 [263,1392]->[278,1279]",
|
| 1554 |
+
"Scourge*2 [234,1502]->[324,1528]"
|
| 1555 |
+
]
|
| 1556 |
+
}
|
| 1557 |
+
},
|
| 1558 |
+
{
|
| 1559 |
+
"frames": "8016~8055",
|
| 1560 |
+
"viewport": "[0,939]->[0,917]",
|
| 1561 |
+
"units": {
|
| 1562 |
+
"[PLAYER_2]": [
|
| 1563 |
+
"Mutalisk*3 [282,1284]->[409,1249]"
|
| 1564 |
+
]
|
| 1565 |
+
}
|
| 1566 |
+
},
|
| 1567 |
+
{
|
| 1568 |
+
"frames": "8056~8126",
|
| 1569 |
+
"viewport": "[130,555]->[130,597]",
|
| 1570 |
+
"units": {
|
| 1571 |
+
"[PLAYER_1]": [
|
| 1572 |
+
"Mutalisk*3 [420,657]->[389,836]",
|
| 1573 |
+
"Zergling*12 [528,822]"
|
| 1574 |
+
]
|
| 1575 |
+
}
|
| 1576 |
+
},
|
| 1577 |
+
{
|
| 1578 |
+
"frames": "8127~8158",
|
| 1579 |
+
"viewport": "[151,2773]->[0,2645]",
|
| 1580 |
+
"units": {
|
| 1581 |
+
"[PLAYER_1]": [
|
| 1582 |
+
"Zergling*1 [382,2865]"
|
| 1583 |
+
],
|
| 1584 |
+
"[PLAYER_2]": [
|
| 1585 |
+
"Zergling*3 [575,3208]"
|
| 1586 |
+
]
|
| 1587 |
+
}
|
| 1588 |
+
},
|
| 1589 |
+
{
|
| 1590 |
+
"frames": "8159~8173",
|
| 1591 |
+
"viewport": "[151,704]->[151,683]",
|
| 1592 |
+
"units": {
|
| 1593 |
+
"[PLAYER_1]": [
|
| 1594 |
+
"Zergling*12 [528,822]"
|
| 1595 |
+
]
|
| 1596 |
+
}
|
| 1597 |
+
}
|
| 1598 |
+
]
|
| 1599 |
+
},
|
| 1600 |
+
{
|
| 1601 |
+
"seg_index": 36,
|
| 1602 |
+
"clip_path": "match_004/clip/match_004_036",
|
| 1603 |
+
"speech": "[PLAYER_2] could potentially look for a snipe while the Mutalisk counts are still low. If [PLAYER_1] is caught off guard, a single Mutalisk could easily be picked off right at the start of the engagement.",
|
| 1604 |
+
"speech_tag": "PREDICTION",
|
| 1605 |
+
"time": "8173~8300",
|
| 1606 |
+
"events": [
|
| 1607 |
+
{
|
| 1608 |
+
"frames": "8173~8221",
|
| 1609 |
+
"viewport": "[151,683]->[151,533]",
|
| 1610 |
+
"units": {
|
| 1611 |
+
"[PLAYER_1]": [
|
| 1612 |
+
"Mutalisk*3 [312,575]->[313,570]",
|
| 1613 |
+
"Zergling*12 [528,822]"
|
| 1614 |
+
]
|
| 1615 |
+
}
|
| 1616 |
+
},
|
| 1617 |
+
{
|
| 1618 |
+
"frames": "8222~8300",
|
| 1619 |
+
"viewport": "[0,213]->[0,43]",
|
| 1620 |
+
"units": {
|
| 1621 |
+
"[PLAYER_1]": [
|
| 1622 |
+
"Drone*11 [205,218]->[178,220]",
|
| 1623 |
+
"Egg*2 [346,245]",
|
| 1624 |
+
"Extractor*1 [288,64]",
|
| 1625 |
+
"Lair*1 [288,240]",
|
| 1626 |
+
"Mutalisk*3 [314,570]->[316,615]",
|
| 1627 |
+
"Overlord*1 [28,25]",
|
| 1628 |
+
"Spawning_Pool*1 [176,96]",
|
| 1629 |
+
"Spire*1 [256,128]"
|
| 1630 |
+
]
|
| 1631 |
+
}
|
| 1632 |
+
}
|
| 1633 |
+
]
|
| 1634 |
+
},
|
| 1635 |
+
{
|
| 1636 |
+
"seg_index": 37,
|
| 1637 |
+
"clip_path": "match_004/clip/match_004_037",
|
| 1638 |
+
"speech": "In a high-level matchup, small Mutalisk numbers allow for quick snipes if a player is caught off guard. While top-tier control can mitigate this, Scourge often become more effective when precision micro isn't perfect.",
|
| 1639 |
+
"speech_tag": "CAUSAL_EXPLAIN",
|
| 1640 |
+
"time": "8300~8750",
|
| 1641 |
+
"events": [
|
| 1642 |
+
{
|
| 1643 |
+
"frames": "8300~8348",
|
| 1644 |
+
"viewport": "[0,43]",
|
| 1645 |
+
"units": {
|
| 1646 |
+
"[PLAYER_1]": [
|
| 1647 |
+
"Drone*11 [178,220]->[188,215]",
|
| 1648 |
+
"Egg*2 [346,245]",
|
| 1649 |
+
"Extractor*1 [288,64]",
|
| 1650 |
+
"Lair*1 [288,240]",
|
| 1651 |
+
"Mutalisk*3 [257,498]->[301,438]",
|
| 1652 |
+
"Overlord*1 [28,25]",
|
| 1653 |
+
"Spawning_Pool*1 [176,96]",
|
| 1654 |
+
"Spire*1 [256,128]"
|
| 1655 |
+
]
|
| 1656 |
+
}
|
| 1657 |
+
},
|
| 1658 |
+
{
|
| 1659 |
+
"frames": "8349~8372",
|
| 1660 |
+
"viewport": "[0,2923]",
|
| 1661 |
+
"units": {
|
| 1662 |
+
"[PLAYER_2]": [
|
| 1663 |
+
"Zergling*15 [534,3253]"
|
| 1664 |
+
]
|
| 1665 |
+
}
|
| 1666 |
+
},
|
| 1667 |
+
{
|
| 1668 |
+
"frames": "8373~8467",
|
| 1669 |
+
"viewport": "[0,2709]->[0,2752]",
|
| 1670 |
+
"units": {
|
| 1671 |
+
"[PLAYER_1]": [
|
| 1672 |
+
"Zergling*1 [382,2865]->[716,2865]"
|
| 1673 |
+
],
|
| 1674 |
+
"[PLAYER_2]": [
|
| 1675 |
+
"Mutalisk*3 [375,2696]->[611,2860]",
|
| 1676 |
+
"Scourge*2 [378,2735]->[616,2859]",
|
| 1677 |
+
"Zergling*2 [578,3199]"
|
| 1678 |
+
]
|
| 1679 |
+
}
|
| 1680 |
+
},
|
| 1681 |
+
{
|
| 1682 |
+
"frames": "8468~8546",
|
| 1683 |
+
"viewport": "[216,2752]->[626,2752]",
|
| 1684 |
+
"units": {
|
| 1685 |
+
"[PLAYER_1]": [
|
| 1686 |
+
"Zergling*1 [802,2865]->[1059,2924]"
|
| 1687 |
+
],
|
| 1688 |
+
"[PLAYER_2]": [
|
| 1689 |
+
"Mutalisk*4 [585,2948]->[545,3026]",
|
| 1690 |
+
"Scourge*2 [623,2859]->[558,2982]",
|
| 1691 |
+
"Zergling*2 [578,3199]"
|
| 1692 |
+
]
|
| 1693 |
+
}
|
| 1694 |
+
},
|
| 1695 |
+
{
|
| 1696 |
+
"frames": "8547~8578",
|
| 1697 |
+
"viewport": "[410,2752]->[324,2837]",
|
| 1698 |
+
"units": {
|
| 1699 |
+
"[PLAYER_1]": [
|
| 1700 |
+
"Zergling*1 [1051,2922]"
|
| 1701 |
+
],
|
| 1702 |
+
"[PLAYER_2]": [
|
| 1703 |
+
"Mutalisk*3 [525,3079]->[453,3274]",
|
| 1704 |
+
"Scourge*2 [516,3084]->[445,3285]",
|
| 1705 |
+
"Zergling*14 [537,3249]"
|
| 1706 |
+
]
|
| 1707 |
+
}
|
| 1708 |
+
},
|
| 1709 |
+
{
|
| 1710 |
+
"frames": "8579~8634",
|
| 1711 |
+
"viewport": "[734,2645]",
|
| 1712 |
+
"units": {
|
| 1713 |
+
"[PLAYER_1]": [
|
| 1714 |
+
"Zergling*1 [1051,2922]"
|
| 1715 |
+
]
|
| 1716 |
+
}
|
| 1717 |
+
},
|
| 1718 |
+
{
|
| 1719 |
+
"frames": "8635~8665",
|
| 1720 |
+
"viewport": "[151,640]->[0,363]",
|
| 1721 |
+
"units": {
|
| 1722 |
+
"[PLAYER_1]": [
|
| 1723 |
+
"Drone*1 [139,345]",
|
| 1724 |
+
"Zergling*12 [528,822]"
|
| 1725 |
+
]
|
| 1726 |
+
}
|
| 1727 |
+
},
|
| 1728 |
+
{
|
| 1729 |
+
"frames": "8666~8750",
|
| 1730 |
+
"viewport": "[0,85]->[0,43]",
|
| 1731 |
+
"units": {
|
| 1732 |
+
"[PLAYER_1]": [
|
| 1733 |
+
"Drone*11 [183,220]->[184,224]",
|
| 1734 |
+
"Extractor*1 [288,64]",
|
| 1735 |
+
"Lair*1 [288,240]",
|
| 1736 |
+
"Larva*2 [352,223]->[346,225]",
|
| 1737 |
+
"Mutalisk*4 [289,323]->[350,349]",
|
| 1738 |
+
"Overlord*2 [187,132]->[183,140]",
|
| 1739 |
+
"Spawning_Pool*1 [176,96]",
|
| 1740 |
+
"Spire*1 [256,128]"
|
| 1741 |
+
]
|
| 1742 |
+
}
|
| 1743 |
+
}
|
| 1744 |
+
]
|
| 1745 |
+
},
|
| 1746 |
+
{
|
| 1747 |
+
"seg_index": 38,
|
| 1748 |
+
"clip_path": "match_004/clip/match_004_038",
|
| 1749 |
+
"speech": "Comparing plus-one air attack to plus-one carapace, the primary reason to favor the attack upgrade is that it's more cost-effective at 100 minerals and 100 gas, whereas carapace requires a steeper investment of 150/150.",
|
| 1750 |
+
"speech_tag": "CAUSAL_EXPLAIN",
|
| 1751 |
+
"time": "8750~9011",
|
| 1752 |
+
"events": [
|
| 1753 |
+
{
|
| 1754 |
+
"frames": "8750~8943",
|
| 1755 |
+
"viewport": "[0,43]",
|
| 1756 |
+
"units": {
|
| 1757 |
+
"[PLAYER_1]": [
|
| 1758 |
+
"Drone*11 [184,225]->[188,223]",
|
| 1759 |
+
"Egg*2 [351,230]",
|
| 1760 |
+
"Extractor*1 [288,64]",
|
| 1761 |
+
"Lair*1 [288,240]",
|
| 1762 |
+
"Mutalisk*4 [349,349]->[423,323]",
|
| 1763 |
+
"Overlord*2 [183,140]->[161,217]",
|
| 1764 |
+
"Spawning_Pool*1 [176,96]",
|
| 1765 |
+
"Spire*1 [256,128]"
|
| 1766 |
+
]
|
| 1767 |
+
}
|
| 1768 |
+
},
|
| 1769 |
+
{
|
| 1770 |
+
"frames": "8944~8975",
|
| 1771 |
+
"viewport": "[216,3029]->[130,3093]",
|
| 1772 |
+
"units": {
|
| 1773 |
+
"[PLAYER_2]": [
|
| 1774 |
+
"Mutalisk*6 [501,3428]->[505,3380]",
|
| 1775 |
+
"Scourge*2 [502,3419]->[505,3381]",
|
| 1776 |
+
"Zergling*15 [534,3253]->[538,3254]"
|
| 1777 |
+
]
|
| 1778 |
+
}
|
| 1779 |
+
},
|
| 1780 |
+
{
|
| 1781 |
+
"frames": "8976~9011",
|
| 1782 |
+
"viewport": "[0,3499]->[0,3627]",
|
| 1783 |
+
"units": {
|
| 1784 |
+
"[PLAYER_2]": [
|
| 1785 |
+
"Drone*9 [199,3808]->[203,3811]",
|
| 1786 |
+
"Egg*2 [346,3829]",
|
| 1787 |
+
"Extractor*1 [288,3648]",
|
| 1788 |
+
"Lair*1 [288,3824]",
|
| 1789 |
+
"Overlord*2 [51,3975]",
|
| 1790 |
+
"Spawning_Pool*1 [176,3680]",
|
| 1791 |
+
"Spire*1 [288,3904]"
|
| 1792 |
+
]
|
| 1793 |
+
}
|
| 1794 |
+
}
|
| 1795 |
+
]
|
| 1796 |
+
},
|
| 1797 |
+
{
|
| 1798 |
+
"seg_index": 39,
|
| 1799 |
+
"clip_path": "match_004/clip/match_004_039",
|
| 1800 |
+
"speech": "I believe the plus one air attack also finishes slightly faster than the carapace upgrade. Specifically, the attack upgrade has a shorter research duration, giving it a quicker timing.",
|
| 1801 |
+
"speech_tag": "STATUS_REPORT",
|
| 1802 |
+
"time": "9011~9196",
|
| 1803 |
+
"events": [
|
| 1804 |
+
{
|
| 1805 |
+
"frames": "9011~9086",
|
| 1806 |
+
"viewport": "[0,3627]",
|
| 1807 |
+
"units": {
|
| 1808 |
+
"[PLAYER_2]": [
|
| 1809 |
+
"Drone*9 [202,3811]->[221,3801]",
|
| 1810 |
+
"Egg*2 [346,3829]",
|
| 1811 |
+
"Extractor*1 [288,3648]",
|
| 1812 |
+
"Lair*1 [288,3824]",
|
| 1813 |
+
"Larva*1 [347,3824]->[351,3820]",
|
| 1814 |
+
"Overlord*2 [51,3975]",
|
| 1815 |
+
"Spawning_Pool*1 [176,3680]",
|
| 1816 |
+
"Spire*1 [288,3904]"
|
| 1817 |
+
]
|
| 1818 |
+
}
|
| 1819 |
+
},
|
| 1820 |
+
{
|
| 1821 |
+
"frames": "9087~9110",
|
| 1822 |
+
"viewport": "[410,2645]",
|
| 1823 |
+
"units": {
|
| 1824 |
+
"[PLAYER_1]": [
|
| 1825 |
+
"Zergling*1 [912,2906]"
|
| 1826 |
+
]
|
| 1827 |
+
}
|
| 1828 |
+
},
|
| 1829 |
+
{
|
| 1830 |
+
"frames": "9111~9141",
|
| 1831 |
+
"viewport": "[194,2773]->[259,2965]",
|
| 1832 |
+
"units": {
|
| 1833 |
+
"[PLAYER_2]": [
|
| 1834 |
+
"Mutalisk*6 [825,3198]->[934,3149]",
|
| 1835 |
+
"Overlord*1 [260,2941]->[259,2966]",
|
| 1836 |
+
"Scourge*2 [840,3188]->[923,3150]",
|
| 1837 |
+
"Zergling*15 [538,3254]"
|
| 1838 |
+
]
|
| 1839 |
+
}
|
| 1840 |
+
},
|
| 1841 |
+
{
|
| 1842 |
+
"frames": "9142~9165",
|
| 1843 |
+
"viewport": "[497,2965]",
|
| 1844 |
+
"units": {
|
| 1845 |
+
"[PLAYER_2]": [
|
| 1846 |
+
"Mutalisk*6 [1012,3101]->[1134,3008]",
|
| 1847 |
+
"Scourge*2 [1025,3091]->[1146,2996]",
|
| 1848 |
+
"Zergling*14 [543,3254]"
|
| 1849 |
+
]
|
| 1850 |
+
}
|
| 1851 |
+
},
|
| 1852 |
+
{
|
| 1853 |
+
"frames": "9166~9196",
|
| 1854 |
+
"viewport": "[713,2880]->[713,2752]",
|
| 1855 |
+
"units": {
|
| 1856 |
+
"[PLAYER_1]": [
|
| 1857 |
+
"Zergling*1 [912,2906]->[733,2870]"
|
| 1858 |
+
],
|
| 1859 |
+
"[PLAYER_2]": [
|
| 1860 |
+
"Mutalisk*6 [1139,3004]->[1267,2921]",
|
| 1861 |
+
"Scourge*2 [1149,2995]->[1278,2915]"
|
| 1862 |
+
]
|
| 1863 |
+
}
|
| 1864 |
+
}
|
| 1865 |
+
]
|
| 1866 |
+
},
|
| 1867 |
+
{
|
| 1868 |
+
"seg_index": 40,
|
| 1869 |
+
"clip_path": "match_004/clip/match_004_040",
|
| 1870 |
+
"speech": "By opting for Flyer Attack instead of Carapace, you're setting up for a crucial timing attack; this allows you to strike the moment your upgrade completes, potentially catching your opponent before their armor upgrade is finished.",
|
| 1871 |
+
"speech_tag": "CAUSAL_EXPLAIN",
|
| 1872 |
+
"time": "9212~9629",
|
| 1873 |
+
"events": [
|
| 1874 |
+
{
|
| 1875 |
+
"frames": "9212~9253",
|
| 1876 |
+
"viewport": "[799,2645]->[670,2645]",
|
| 1877 |
+
"units": {
|
| 1878 |
+
"[PLAYER_2]": [
|
| 1879 |
+
"Mutalisk*6 [1159,2910]->[889,2862]",
|
| 1880 |
+
"Scourge*2 [1168,2904]->[894,2861]"
|
| 1881 |
+
]
|
| 1882 |
+
}
|
| 1883 |
+
},
|
| 1884 |
+
{
|
| 1885 |
+
"frames": "9254~9491",
|
| 1886 |
+
"viewport": "[497,2773]->[216,2709]",
|
| 1887 |
+
"units": {
|
| 1888 |
+
"[PLAYER_1]": [
|
| 1889 |
+
"Zergling*1 [431,2864]->[616,2804]"
|
| 1890 |
+
],
|
| 1891 |
+
"[PLAYER_2]": [
|
| 1892 |
+
"Mutalisk*6 [882,2861]->[545,3114]",
|
| 1893 |
+
"Overlord*1 [256,3106]->[256,3168]",
|
| 1894 |
+
"Scourge*2 [887,2861]->[493,3124]",
|
| 1895 |
+
"Zergling*3 [575,3208]"
|
| 1896 |
+
]
|
| 1897 |
+
}
|
| 1898 |
+
},
|
| 1899 |
+
{
|
| 1900 |
+
"frames": "9492~9514",
|
| 1901 |
+
"viewport": "[0,597]->[0,491]",
|
| 1902 |
+
"units": {
|
| 1903 |
+
"[PLAYER_1]": [
|
| 1904 |
+
"Mutalisk*6 [333,590]->[331,610]",
|
| 1905 |
+
"Overlord*1 [192,800]",
|
| 1906 |
+
"Zergling*12 [528,822]"
|
| 1907 |
+
]
|
| 1908 |
+
}
|
| 1909 |
+
},
|
| 1910 |
+
{
|
| 1911 |
+
"frames": "9515~9594",
|
| 1912 |
+
"viewport": "[0,192]->[0,21]",
|
| 1913 |
+
"units": {
|
| 1914 |
+
"[PLAYER_1]": [
|
| 1915 |
+
"Drone*11 [174,219]->[207,213]",
|
| 1916 |
+
"Egg*2 [351,240]",
|
| 1917 |
+
"Extractor*1 [288,64]",
|
| 1918 |
+
"Lair*1 [288,240]",
|
| 1919 |
+
"Mutalisk*6 [358,506]->[393,380]",
|
| 1920 |
+
"Overlord*1 [28,25]",
|
| 1921 |
+
"Spawning_Pool*1 [176,96]",
|
| 1922 |
+
"Spire*1 [256,128]"
|
| 1923 |
+
]
|
| 1924 |
+
}
|
| 1925 |
+
},
|
| 1926 |
+
{
|
| 1927 |
+
"frames": "9595~9629",
|
| 1928 |
+
"viewport": "[216,2965]->[216,3008]",
|
| 1929 |
+
"units": {
|
| 1930 |
+
"[PLAYER_2]": [
|
| 1931 |
+
"Mutalisk*7 [419,3268]->[385,3111]",
|
| 1932 |
+
"Overlord*1 [256,3344]->[256,3372]",
|
| 1933 |
+
"Scourge*4 [392,3328]->[369,3226]",
|
| 1934 |
+
"Zergling*15 [548,3155]->[638,3102]"
|
| 1935 |
+
]
|
| 1936 |
+
}
|
| 1937 |
+
}
|
| 1938 |
+
]
|
| 1939 |
+
},
|
| 1940 |
+
{
|
| 1941 |
+
"seg_index": 41,
|
| 1942 |
+
"clip_path": "match_004/clip/match_004_041",
|
| 1943 |
+
"speech": "That would have been interesting, but since both players opted for +1 Attack instead of Carapace, that timing won't materialize. It now looks like [PLAYER_2] is starting to move across the map.",
|
| 1944 |
+
"speech_tag": "PREDICTION",
|
| 1945 |
+
"time": "9646~9928",
|
| 1946 |
+
"events": [
|
| 1947 |
+
{
|
| 1948 |
+
"frames": "9646~9928",
|
| 1949 |
+
"viewport": "[151,3051]->[0,1045]",
|
| 1950 |
+
"units": {
|
| 1951 |
+
"[PLAYER_2]": [
|
| 1952 |
+
"Mutalisk*7 [391,2810]->[621,1233]",
|
| 1953 |
+
"Overlord*1 [256,3386]->[256,3402]",
|
| 1954 |
+
"Scourge*4 [363,3019]->[508,1308]",
|
| 1955 |
+
"Zergling*8 [619,3152]->[662,3146]"
|
| 1956 |
+
]
|
| 1957 |
+
}
|
| 1958 |
+
}
|
| 1959 |
+
]
|
| 1960 |
+
},
|
| 1961 |
+
{
|
| 1962 |
+
"seg_index": 42,
|
| 1963 |
+
"clip_path": "match_004/clip/match_004_042",
|
| 1964 |
+
"speech": "[PLAYER_2]'s upgrade isn't finished yet, so he'll likely avoid a direct engagement until it pops. He is on track to finish his +1 Flyer Attack slightly ahead of [PLAYER_1].",
|
| 1965 |
+
"speech_tag": "PREDICTION",
|
| 1966 |
+
"time": "9934~10089",
|
| 1967 |
+
"events": [
|
| 1968 |
+
{
|
| 1969 |
+
"frames": "9934~10030",
|
| 1970 |
+
"viewport": "[0,1045]->[324,725]",
|
| 1971 |
+
"units": {
|
| 1972 |
+
"[PLAYER_1]": [
|
| 1973 |
+
"Mutalisk*6 [485,706]->[510,740]",
|
| 1974 |
+
"Zergling*11 [526,837]->[557,862]"
|
| 1975 |
+
],
|
| 1976 |
+
"[PLAYER_2]": [
|
| 1977 |
+
"Mutalisk*7 [624,1196]->[596,866]",
|
| 1978 |
+
"Scourge*4 [534,1277]->[580,1083]",
|
| 1979 |
+
"Zergling*2 [961,1498]->[977,1479]"
|
| 1980 |
+
]
|
| 1981 |
+
}
|
| 1982 |
+
},
|
| 1983 |
+
{
|
| 1984 |
+
"frames": "10031~10070",
|
| 1985 |
+
"viewport": "[713,1237]->[605,1237]",
|
| 1986 |
+
"units": {
|
| 1987 |
+
"[PLAYER_1]": [
|
| 1988 |
+
"Zergling*1 [1120,1300]->[1299,1435]"
|
| 1989 |
+
],
|
| 1990 |
+
"[PLAYER_2]": [
|
| 1991 |
+
"Zergling*11 [1035,1466]->[1122,1405]"
|
| 1992 |
+
]
|
| 1993 |
+
}
|
| 1994 |
+
},
|
| 1995 |
+
{
|
| 1996 |
+
"frames": "10071~10089",
|
| 1997 |
+
"viewport": "[216,789]->[216,683]",
|
| 1998 |
+
"units": {
|
| 1999 |
+
"[PLAYER_1]": [
|
| 2000 |
+
"Mutalisk*6 [555,820]->[547,852]",
|
| 2001 |
+
"Zergling*8 [526,819]"
|
| 2002 |
+
],
|
| 2003 |
+
"[PLAYER_2]": [
|
| 2004 |
+
"Mutalisk*7 [793,984]->[695,959]",
|
| 2005 |
+
"Scourge*2 [793,998]->[694,971]"
|
| 2006 |
+
]
|
| 2007 |
+
}
|
| 2008 |
+
}
|
| 2009 |
+
]
|
| 2010 |
+
},
|
| 2011 |
+
{
|
| 2012 |
+
"seg_index": 43,
|
| 2013 |
+
"clip_path": "match_004/clip/match_004_043",
|
| 2014 |
+
"speech": "Even with both players opting for attack upgrades, [PLAYER_2] is hitting a timing and coming in right now. This is absolutely crazy!",
|
| 2015 |
+
"speech_tag": "ACTION_CALL",
|
| 2016 |
+
"time": "10090~10298",
|
| 2017 |
+
"events": [
|
| 2018 |
+
{
|
| 2019 |
+
"frames": "10090~10276",
|
| 2020 |
+
"viewport": "[216,683]->[216,469]",
|
| 2021 |
+
"units": {
|
| 2022 |
+
"[PLAYER_1]": [
|
| 2023 |
+
"Mutalisk*7 [532,824]->[577,551]",
|
| 2024 |
+
"Zergling*8 [526,819]"
|
| 2025 |
+
],
|
| 2026 |
+
"[PLAYER_2]": [
|
| 2027 |
+
"Mutalisk*7 [690,955]->[530,500]",
|
| 2028 |
+
"Scourge*4 [621,1064]->[549,743]",
|
| 2029 |
+
"Zergling*1 [616,1052]->[623,1055]"
|
| 2030 |
+
]
|
| 2031 |
+
}
|
| 2032 |
+
},
|
| 2033 |
+
{
|
| 2034 |
+
"frames": "10277~10298",
|
| 2035 |
+
"viewport": "[151,213]->[259,341]",
|
| 2036 |
+
"units": {
|
| 2037 |
+
"[PLAYER_1]": [
|
| 2038 |
+
"Drone*7 [184,238]->[202,236]",
|
| 2039 |
+
"Egg*1 [356,230]",
|
| 2040 |
+
"Lair*1 [288,240]",
|
| 2041 |
+
"Larva*1 [351,286]->[354,289]",
|
| 2042 |
+
"Mutalisk*5 [587,459]->[615,375]",
|
| 2043 |
+
"Overlord*1 [746,267]->[759,267]",
|
| 2044 |
+
"Zergling*2 [535,790]"
|
| 2045 |
+
],
|
| 2046 |
+
"[PLAYER_2]": [
|
| 2047 |
+
"Mutalisk*7 [533,495]->[597,390]",
|
| 2048 |
+
"Scourge*1 [581,531]->[674,543]"
|
| 2049 |
+
]
|
| 2050 |
+
}
|
| 2051 |
+
}
|
| 2052 |
+
]
|
| 2053 |
+
},
|
| 2054 |
+
{
|
| 2055 |
+
"seg_index": 44,
|
| 2056 |
+
"clip_path": "match_004/clip/match_004_044",
|
| 2057 |
+
"speech": "[PLAYER_2] clearly has the advantage in this engagement. [PLAYER_1] is forced into a retreat, though he may just be attempting to micro and dodge those incoming Scourge.",
|
| 2058 |
+
"speech_tag": "EVALUATION",
|
| 2059 |
+
"time": "10300~10391",
|
| 2060 |
+
"events": [
|
| 2061 |
+
{
|
| 2062 |
+
"frames": "10300~10391",
|
| 2063 |
+
"viewport": "[259,341]->[86,171]",
|
| 2064 |
+
"units": {
|
| 2065 |
+
"[PLAYER_1]": [
|
| 2066 |
+
"Drone*11 [214,223]->[176,224]",
|
| 2067 |
+
"Egg*1 [356,230]",
|
| 2068 |
+
"Lair*1 [288,240]",
|
| 2069 |
+
"Larva*1 [346,281]",
|
| 2070 |
+
"Mutalisk*5 [614,362]->[546,358]",
|
| 2071 |
+
"Overlord*1 [773,267]->[831,267]",
|
| 2072 |
+
"Spire*1 [256,128]",
|
| 2073 |
+
"Zergling*2 [535,790]"
|
| 2074 |
+
],
|
| 2075 |
+
"[PLAYER_2]": [
|
| 2076 |
+
"Mutalisk*7 [610,391]->[563,346]",
|
| 2077 |
+
"Scourge*1 [669,531]->[518,385]"
|
| 2078 |
+
]
|
| 2079 |
+
}
|
| 2080 |
+
}
|
| 2081 |
+
]
|
| 2082 |
+
},
|
| 2083 |
+
{
|
| 2084 |
+
"seg_index": 45,
|
| 2085 |
+
"clip_path": "match_004/clip/match_004_045",
|
| 2086 |
+
"speech": "The anti-Scourge micro there was unfortunately lacking, allowing [PLAYER_2] to maintain a solid advantage.",
|
| 2087 |
+
"speech_tag": "EVALUATION",
|
| 2088 |
+
"time": "10391~10424",
|
| 2089 |
+
"events": [
|
| 2090 |
+
{
|
| 2091 |
+
"frames": "10391~10424",
|
| 2092 |
+
"viewport": "[86,171]->[151,149]",
|
| 2093 |
+
"units": {
|
| 2094 |
+
"[PLAYER_1]": [
|
| 2095 |
+
"Drone*10 [167,234]->[162,233]",
|
| 2096 |
+
"Egg*1 [346,281]",
|
| 2097 |
+
"Lair*1 [288,240]",
|
| 2098 |
+
"Larva*1 [347,240]->[351,234]",
|
| 2099 |
+
"Mutalisk*2 [441,295]->[484,306]",
|
| 2100 |
+
"Overlord*1 [845,267]->[850,267]"
|
| 2101 |
+
],
|
| 2102 |
+
"[PLAYER_2]": [
|
| 2103 |
+
"Mutalisk*7 [563,346]->[561,338]"
|
| 2104 |
+
]
|
| 2105 |
+
}
|
| 2106 |
+
}
|
| 2107 |
+
]
|
| 2108 |
+
},
|
| 2109 |
+
{
|
| 2110 |
+
"seg_index": 46,
|
| 2111 |
+
"clip_path": "match_004/clip/match_004_046",
|
| 2112 |
+
"speech": "[PLAYER_2] is choosing to stand and fight here, maintaining a significant Mutalisk lead over [PLAYER_1] as the air-to-air engagement continues.",
|
| 2113 |
+
"speech_tag": "STATUS_REPORT",
|
| 2114 |
+
"time": "10425~10532",
|
| 2115 |
+
"events": [
|
| 2116 |
+
{
|
| 2117 |
+
"frames": "10425~10532",
|
| 2118 |
+
"viewport": "[151,149]->[151,128]",
|
| 2119 |
+
"units": {
|
| 2120 |
+
"[PLAYER_1]": [
|
| 2121 |
+
"Drone*11 [182,224]->[194,223]",
|
| 2122 |
+
"Egg*1 [346,281]",
|
| 2123 |
+
"Lair*1 [288,240]",
|
| 2124 |
+
"Larva*1 [353,233]->[366,220]",
|
| 2125 |
+
"Mutalisk*2 [488,307]->[531,323]"
|
| 2126 |
+
],
|
| 2127 |
+
"[PLAYER_2]": [
|
| 2128 |
+
"Mutalisk*6 [563,339]->[557,310]"
|
| 2129 |
+
]
|
| 2130 |
+
}
|
| 2131 |
+
}
|
| 2132 |
+
]
|
| 2133 |
+
},
|
| 2134 |
+
{
|
| 2135 |
+
"seg_index": 47,
|
| 2136 |
+
"clip_path": "match_004/clip/match_004_047",
|
| 2137 |
+
"speech": "[PLAYER_1] is forced to concede as he realizes he cannot win this engagement. [PLAYER_2] is so far ahead that he is even sending in his Zerglings to finish the job.",
|
| 2138 |
+
"speech_tag": "EVALUATION",
|
| 2139 |
+
"time": "10532~10695",
|
| 2140 |
+
"events": [
|
| 2141 |
+
{
|
| 2142 |
+
"frames": "10532~10601",
|
| 2143 |
+
"viewport": "[151,128]->[151,235]",
|
| 2144 |
+
"units": {
|
| 2145 |
+
"[PLAYER_2]": [
|
| 2146 |
+
"Mutalisk*6 [557,310]->[556,305]"
|
| 2147 |
+
]
|
| 2148 |
+
}
|
| 2149 |
+
},
|
| 2150 |
+
{
|
| 2151 |
+
"frames": "10602~10695",
|
| 2152 |
+
"viewport": "[151,661]->[151,597]",
|
| 2153 |
+
"units": {
|
| 2154 |
+
"[PLAYER_2]": [
|
| 2155 |
+
"Zergling*9 [525,842]->[403,714]"
|
| 2156 |
+
]
|
| 2157 |
+
}
|
| 2158 |
+
}
|
| 2159 |
+
]
|
| 2160 |
+
},
|
| 2161 |
+
{
|
| 2162 |
+
"seg_index": 48,
|
| 2163 |
+
"clip_path": "match_004/clip/match_004_048",
|
| 2164 |
+
"speech": "[PLAYER_1] recognizes the game is over and GGs out as his remaining forces are overcome. Interestingly, [PLAYER_2] is still actively practicing his Mutalisk micro even as [PLAYER_1] concedes the match.",
|
| 2165 |
+
"speech_tag": "SUMMARY",
|
| 2166 |
+
"time": "10695~10867",
|
| 2167 |
+
"events": [
|
| 2168 |
+
{
|
| 2169 |
+
"frames": "10695~10859",
|
| 2170 |
+
"viewport": "[151,597]->[0,149]",
|
| 2171 |
+
"units": {
|
| 2172 |
+
"[PLAYER_2]": [
|
| 2173 |
+
"Mutalisk*6 [233,329]->[206,344]",
|
| 2174 |
+
"Zergling*9 [401,709]->[348,331]"
|
| 2175 |
+
]
|
| 2176 |
+
}
|
| 2177 |
+
}
|
| 2178 |
+
]
|
| 2179 |
+
}
|
| 2180 |
+
]
|
match_004/metadata.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata_schema_version": "release_v1",
|
| 3 |
+
"match_id": "match_004",
|
| 4 |
+
"source": {
|
| 5 |
+
"youtube_url": "https://www.youtube.com/watch?v=VNr21xpIJKo"
|
| 6 |
+
},
|
| 7 |
+
"game_info": {
|
| 8 |
+
"map": "Ground Zero 2.0",
|
| 9 |
+
"map_file": "| iCCup | Ground Zero 2.0",
|
| 10 |
+
"width": 128,
|
| 11 |
+
"height": 128,
|
| 12 |
+
"game_length_frames": 10823,
|
| 13 |
+
"players": [
|
| 14 |
+
{
|
| 15 |
+
"name": "PLAYER_1",
|
| 16 |
+
"race": "Zerg",
|
| 17 |
+
"start_position": {
|
| 18 |
+
"x": 7,
|
| 19 |
+
"y": 6
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "PLAYER_2",
|
| 24 |
+
"race": "Zerg",
|
| 25 |
+
"start_position": {
|
| 26 |
+
"x": 7,
|
| 27 |
+
"y": 118
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
]
|
| 31 |
+
},
|
| 32 |
+
"alignment": {
|
| 33 |
+
"attempt_count": 1,
|
| 34 |
+
"final_offset_frames": 35,
|
| 35 |
+
"anchor": {
|
| 36 |
+
"player": "PLAYER_1",
|
| 37 |
+
"frame": 601,
|
| 38 |
+
"supply_from": 12,
|
| 39 |
+
"supply_to": 14
|
| 40 |
+
},
|
| 41 |
+
"best_match": {
|
| 42 |
+
"t_sec": 23.928,
|
| 43 |
+
"race": "zerg",
|
| 44 |
+
"supply_from": 6,
|
| 45 |
+
"supply_to": 7,
|
| 46 |
+
"rs": 0.88,
|
| 47 |
+
"ds": 0.841
|
| 48 |
+
},
|
| 49 |
+
"search_range": {
|
| 50 |
+
"frame_start": 570,
|
| 51 |
+
"frame_end": 713,
|
| 52 |
+
"target_supply_from": 12,
|
| 53 |
+
"target_supply_to": 14
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
match_004/viewport.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_005/context.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_005/metadata.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata_schema_version": "release_v1",
|
| 3 |
+
"match_id": "match_005",
|
| 4 |
+
"source": {
|
| 5 |
+
"youtube_url": "https://www.youtube.com/watch?v=CNuSsGf9w9I"
|
| 6 |
+
},
|
| 7 |
+
"game_info": {
|
| 8 |
+
"map": "Sniper Ridge 2.0",
|
| 9 |
+
"map_file": "| iCCup | Sniper Ridge 2.0",
|
| 10 |
+
"width": 128,
|
| 11 |
+
"height": 128,
|
| 12 |
+
"game_length_frames": 33599,
|
| 13 |
+
"players": [
|
| 14 |
+
{
|
| 15 |
+
"name": "PLAYER_1",
|
| 16 |
+
"race": "Zerg",
|
| 17 |
+
"start_position": {
|
| 18 |
+
"x": 7,
|
| 19 |
+
"y": 7
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "PLAYER_2",
|
| 24 |
+
"race": "Protoss",
|
| 25 |
+
"start_position": {
|
| 26 |
+
"x": 117,
|
| 27 |
+
"y": 117
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
]
|
| 31 |
+
},
|
| 32 |
+
"alignment": {
|
| 33 |
+
"attempt_count": 1,
|
| 34 |
+
"final_offset_frames": 67,
|
| 35 |
+
"anchor": {
|
| 36 |
+
"player": "PLAYER_2",
|
| 37 |
+
"frame": 667,
|
| 38 |
+
"supply_from": 12,
|
| 39 |
+
"supply_to": 14
|
| 40 |
+
},
|
| 41 |
+
"best_match": {
|
| 42 |
+
"t_sec": 25.36,
|
| 43 |
+
"race": "protoss",
|
| 44 |
+
"supply_from": 6,
|
| 45 |
+
"supply_to": 7,
|
| 46 |
+
"rs": 0.94,
|
| 47 |
+
"ds": 0.862
|
| 48 |
+
},
|
| 49 |
+
"search_range": {
|
| 50 |
+
"frame_start": 604,
|
| 51 |
+
"frame_end": 747,
|
| 52 |
+
"target_supply_from": 12,
|
| 53 |
+
"target_supply_to": 14
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
match_005/viewport.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_006/context.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_006/metadata.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata_schema_version": "release_v1",
|
| 3 |
+
"match_id": "match_006",
|
| 4 |
+
"source": {
|
| 5 |
+
"youtube_url": "https://www.youtube.com/watch?v=ihdOWkIvULU"
|
| 6 |
+
},
|
| 7 |
+
"game_info": {
|
| 8 |
+
"map": "Sniper Ridge 2.0",
|
| 9 |
+
"map_file": "신 저격능선 2.0",
|
| 10 |
+
"width": 128,
|
| 11 |
+
"height": 128,
|
| 12 |
+
"game_length_frames": 33948,
|
| 13 |
+
"players": [
|
| 14 |
+
{
|
| 15 |
+
"name": "PLAYER_1",
|
| 16 |
+
"race": "Terran",
|
| 17 |
+
"start_position": {
|
| 18 |
+
"x": 117,
|
| 19 |
+
"y": 7
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "PLAYER_2",
|
| 24 |
+
"race": "Zerg",
|
| 25 |
+
"start_position": {
|
| 26 |
+
"x": 117,
|
| 27 |
+
"y": 117
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
]
|
| 31 |
+
},
|
| 32 |
+
"alignment": {
|
| 33 |
+
"attempt_count": 1,
|
| 34 |
+
"final_offset_frames": 50,
|
| 35 |
+
"anchor": {
|
| 36 |
+
"player": "PLAYER_2",
|
| 37 |
+
"frame": 577,
|
| 38 |
+
"supply_from": 12,
|
| 39 |
+
"supply_to": 14
|
| 40 |
+
},
|
| 41 |
+
"best_match": {
|
| 42 |
+
"t_sec": 22.29,
|
| 43 |
+
"race": "zerg",
|
| 44 |
+
"supply_from": 6,
|
| 45 |
+
"supply_to": 7,
|
| 46 |
+
"rs": 0.881,
|
| 47 |
+
"ds": 0.861
|
| 48 |
+
},
|
| 49 |
+
"search_range": {
|
| 50 |
+
"frame_start": 531,
|
| 51 |
+
"frame_end": 674,
|
| 52 |
+
"target_supply_from": 12,
|
| 53 |
+
"target_supply_to": 14
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
match_006/viewport.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_007/context.json
ADDED
|
@@ -0,0 +1,2437 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"seg_index": 0,
|
| 4 |
+
"clip_path": "match_007/clip/match_007_000",
|
| 5 |
+
"speech": "And here we are in the final set. At the top right, playing as the brown Zerg, we have [PLAYER_1].",
|
| 6 |
+
"speech_tag": "STATUS_REPORT",
|
| 7 |
+
"time": "32~188",
|
| 8 |
+
"events": [
|
| 9 |
+
{
|
| 10 |
+
"frames": "32~188",
|
| 11 |
+
"viewport": "[3456,85]",
|
| 12 |
+
"units": {
|
| 13 |
+
"[PLAYER_1]": [
|
| 14 |
+
"Drone*4 [3830,308]->[3912,309]",
|
| 15 |
+
"Egg*1 [3808,313]",
|
| 16 |
+
"Hatchery*1 [3808,272]",
|
| 17 |
+
"Larva*2 [3809,320]->[3813,313]",
|
| 18 |
+
"Overlord*1 [3711,336]->[3764,394]"
|
| 19 |
+
]
|
| 20 |
+
}
|
| 21 |
+
}
|
| 22 |
+
]
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
"seg_index": 1,
|
| 26 |
+
"clip_path": "match_007/clip/match_007_001",
|
| 27 |
+
"speech": "And in the bottom left, starting as the blue Zerg, we have [PLAYER_2]. He was briefly inactive and seems to have split his drones a little bit late there.",
|
| 28 |
+
"speech_tag": "EVALUATION",
|
| 29 |
+
"time": "188~329",
|
| 30 |
+
"events": [
|
| 31 |
+
{
|
| 32 |
+
"frames": "188~190",
|
| 33 |
+
"viewport": "[3456,85]",
|
| 34 |
+
"units": {
|
| 35 |
+
"[PLAYER_1]": [
|
| 36 |
+
"Drone*4 [3909,310]->[3904,310]",
|
| 37 |
+
"Egg*1 [3808,313]",
|
| 38 |
+
"Hatchery*1 [3808,272]",
|
| 39 |
+
"Larva*2 [3813,313]",
|
| 40 |
+
"Overlord*1 [3764,395]->[3764,397]"
|
| 41 |
+
]
|
| 42 |
+
}
|
| 43 |
+
},
|
| 44 |
+
{
|
| 45 |
+
"frames": "191~329",
|
| 46 |
+
"viewport": "[0,3605]",
|
| 47 |
+
"units": {
|
| 48 |
+
"[PLAYER_2]": [
|
| 49 |
+
"Drone*4 [163,3802]->[131,3801]",
|
| 50 |
+
"Egg*1 [288,3801]",
|
| 51 |
+
"Hatchery*1 [288,3760]",
|
| 52 |
+
"Larva*2 [284,3806]->[226,3750]",
|
| 53 |
+
"Overlord*1 [406,3629]->[406,3585]"
|
| 54 |
+
]
|
| 55 |
+
}
|
| 56 |
+
}
|
| 57 |
+
]
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"seg_index": 2,
|
| 61 |
+
"clip_path": "match_007/clip/match_007_002",
|
| 62 |
+
"speech": "Hold on, our blue Zerg [PLAYER_2] is getting his economy moving, but those drones are already mining. It feels like he was just a half-second slow on that initial worker split.",
|
| 63 |
+
"speech_tag": "EVALUATION",
|
| 64 |
+
"time": "329~448",
|
| 65 |
+
"events": [
|
| 66 |
+
{
|
| 67 |
+
"frames": "329~340",
|
| 68 |
+
"viewport": "[0,3605]",
|
| 69 |
+
"units": {
|
| 70 |
+
"[PLAYER_2]": [
|
| 71 |
+
"Drone*5 [162,3801]->[164,3800]",
|
| 72 |
+
"Hatchery*1 [288,3760]",
|
| 73 |
+
"Larva*3 [266,3753]->[265,3752]"
|
| 74 |
+
]
|
| 75 |
+
}
|
| 76 |
+
},
|
| 77 |
+
{
|
| 78 |
+
"frames": "341~396",
|
| 79 |
+
"viewport": "[3456,43]->[3456,107]",
|
| 80 |
+
"units": {
|
| 81 |
+
"[PLAYER_1]": [
|
| 82 |
+
"Drone*5 [3916,309]->[3903,301]",
|
| 83 |
+
"Hatchery*1 [3808,272]",
|
| 84 |
+
"Larva*3 [3782,302]->[3787,306]",
|
| 85 |
+
"Overlord*1 [3760,536]->[3760,566]"
|
| 86 |
+
]
|
| 87 |
+
}
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"frames": "397~448",
|
| 91 |
+
"viewport": "[0,3712]->[0,3605]",
|
| 92 |
+
"units": {
|
| 93 |
+
"[PLAYER_2]": [
|
| 94 |
+
"Drone*5 [170,3806]->[132,3814]",
|
| 95 |
+
"Egg*1 [221,3740]",
|
| 96 |
+
"Hatchery*1 [288,3760]",
|
| 97 |
+
"Larva*2 [297,3760]->[283,3735]"
|
| 98 |
+
]
|
| 99 |
+
}
|
| 100 |
+
}
|
| 101 |
+
]
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"seg_index": 3,
|
| 105 |
+
"clip_path": "match_007/clip/match_007_003",
|
| 106 |
+
"speech": "Yeah, maybe. It's hard to tell for sure because I was focused on [PLAYER_1]'s production at the time.",
|
| 107 |
+
"speech_tag": "PRODUCTION_CHAT",
|
| 108 |
+
"time": "448~544",
|
| 109 |
+
"events": [
|
| 110 |
+
{
|
| 111 |
+
"frames": "448~544",
|
| 112 |
+
"viewport": "[0,3605]",
|
| 113 |
+
"units": {
|
| 114 |
+
"[PLAYER_2]": [
|
| 115 |
+
"Drone*5 [132,3814]->[193,3795]",
|
| 116 |
+
"Egg*1 [221,3740]",
|
| 117 |
+
"Hatchery*1 [288,3760]",
|
| 118 |
+
"Larva*2 [283,3735]->[220,3770]"
|
| 119 |
+
]
|
| 120 |
+
}
|
| 121 |
+
}
|
| 122 |
+
]
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"seg_index": 4,
|
| 126 |
+
"clip_path": "match_007/clip/match_007_004",
|
| 127 |
+
"speech": "Both players are mirroring each other perfectly, sitting at identical supply and starting their drone morphs almost simultaneously. With [PLAYER_1] and [PLAYER_2] in cross positions and scouting in the same direction, this is as even as a matchup can get.",
|
| 128 |
+
"speech_tag": "STATUS_REPORT",
|
| 129 |
+
"time": "544~1029",
|
| 130 |
+
"events": [
|
| 131 |
+
{
|
| 132 |
+
"frames": "544~840",
|
| 133 |
+
"viewport": "[0,3605]",
|
| 134 |
+
"units": {
|
| 135 |
+
"[PLAYER_2]": [
|
| 136 |
+
"Drone*5 [192,3795]->[132,3814]",
|
| 137 |
+
"Egg*2 [224,3760]->[223,3760]",
|
| 138 |
+
"Hatchery*1 [288,3760]",
|
| 139 |
+
"Larva*1 [219,3770]->[218,3787]"
|
| 140 |
+
]
|
| 141 |
+
}
|
| 142 |
+
}
|
| 143 |
+
]
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"seg_index": 5,
|
| 147 |
+
"clip_path": "match_007/clip/match_007_005",
|
| 148 |
+
"speech": "Both players are mirroring each other's macro perfectly, and starting in cross positions on [MAP_NAME], it may be quite some time before they actually find one another.",
|
| 149 |
+
"speech_tag": "PREDICTION",
|
| 150 |
+
"time": "617~1029",
|
| 151 |
+
"events": [
|
| 152 |
+
{
|
| 153 |
+
"frames": "617~840",
|
| 154 |
+
"viewport": "[0,3605]",
|
| 155 |
+
"units": {
|
| 156 |
+
"[PLAYER_2]": [
|
| 157 |
+
"Drone*6 [147,3802]->[169,3798]",
|
| 158 |
+
"Egg*1 [228,3780]",
|
| 159 |
+
"Hatchery*1 [288,3760]",
|
| 160 |
+
"Larva*2 [283,3773]->[250,3769]"
|
| 161 |
+
]
|
| 162 |
+
}
|
| 163 |
+
},
|
| 164 |
+
{
|
| 165 |
+
"frames": "841~1029",
|
| 166 |
+
"viewport": "[3456,171]->[3456,85]",
|
| 167 |
+
"units": {
|
| 168 |
+
"[PLAYER_1]": [
|
| 169 |
+
"Drone*6 [3960,319]->[3952,315]",
|
| 170 |
+
"Egg*2 [3763,294]->[3850,239]",
|
| 171 |
+
"Hatchery*1 [3808,272]",
|
| 172 |
+
"Larva*1 [3741,303]->[3750,310]"
|
| 173 |
+
]
|
| 174 |
+
}
|
| 175 |
+
}
|
| 176 |
+
]
|
| 177 |
+
},
|
| 178 |
+
{
|
| 179 |
+
"seg_index": 6,
|
| 180 |
+
"clip_path": "match_007/clip/match_007_006",
|
| 181 |
+
"speech": "I think the player who takes the risk and goes for a 12-hatch here will gain a significant advantage, though that's unlikely given that we saw a 9-pool gas build in the previous game.",
|
| 182 |
+
"speech_tag": "PREDICTION",
|
| 183 |
+
"time": "1029~1233",
|
| 184 |
+
"events": [
|
| 185 |
+
{
|
| 186 |
+
"frames": "1029~1134",
|
| 187 |
+
"viewport": "[3456,85]",
|
| 188 |
+
"units": {
|
| 189 |
+
"[PLAYER_1]": [
|
| 190 |
+
"Drone*7 [3952,299]->[3924,307]",
|
| 191 |
+
"Egg*2 [3748,293]",
|
| 192 |
+
"Hatchery*1 [3808,272]",
|
| 193 |
+
"Larva*1 [3749,272]->[3751,302]"
|
| 194 |
+
]
|
| 195 |
+
}
|
| 196 |
+
},
|
| 197 |
+
{
|
| 198 |
+
"frames": "1135~1158",
|
| 199 |
+
"viewport": "[3456,1067]",
|
| 200 |
+
"units": {
|
| 201 |
+
"[PLAYER_1]": [
|
| 202 |
+
"Overlord*1 [3745,1183]->[3745,1202]"
|
| 203 |
+
]
|
| 204 |
+
}
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"frames": "1159~1233",
|
| 208 |
+
"viewport": "[0,2453]->[0,2581]",
|
| 209 |
+
"units": {
|
| 210 |
+
"[PLAYER_2]": [
|
| 211 |
+
"Overlord*1 [379,2824]->[378,2762]"
|
| 212 |
+
]
|
| 213 |
+
}
|
| 214 |
+
}
|
| 215 |
+
]
|
| 216 |
+
},
|
| 217 |
+
{
|
| 218 |
+
"seg_index": 7,
|
| 219 |
+
"clip_path": "match_007/clip/match_007_007",
|
| 220 |
+
"speech": "If either player decides to take a risk and opt for a 12-hatchery, the delayed scouting could allow them to get away with it and secure a significant economic advantage.",
|
| 221 |
+
"speech_tag": "PREDICTION",
|
| 222 |
+
"time": "1235~1536",
|
| 223 |
+
"events": [
|
| 224 |
+
{
|
| 225 |
+
"frames": "1235~1261",
|
| 226 |
+
"viewport": "[0,2581]",
|
| 227 |
+
"units": {
|
| 228 |
+
"[PLAYER_2]": [
|
| 229 |
+
"Overlord*1 [378,2760]->[377,2739]"
|
| 230 |
+
]
|
| 231 |
+
}
|
| 232 |
+
},
|
| 233 |
+
{
|
| 234 |
+
"frames": "1262~1396",
|
| 235 |
+
"viewport": "[0,3605]",
|
| 236 |
+
"units": {
|
| 237 |
+
"[PLAYER_2]": [
|
| 238 |
+
"Drone*8 [165,3775]->[150,3782]",
|
| 239 |
+
"Egg*1 [231,3740]",
|
| 240 |
+
"Hatchery*1 [288,3760]",
|
| 241 |
+
"Larva*1 [348,3793]->[346,3801]"
|
| 242 |
+
]
|
| 243 |
+
}
|
| 244 |
+
},
|
| 245 |
+
{
|
| 246 |
+
"frames": "1397~1475",
|
| 247 |
+
"viewport": "[3456,192]->[3456,64]",
|
| 248 |
+
"units": {
|
| 249 |
+
"[PLAYER_1]": [
|
| 250 |
+
"Drone*9 [3937,293]->[3945,304]",
|
| 251 |
+
"Hatchery*1 [3808,272]",
|
| 252 |
+
"Larva*2 [3750,282]->[3751,287]"
|
| 253 |
+
]
|
| 254 |
+
}
|
| 255 |
+
}
|
| 256 |
+
]
|
| 257 |
+
},
|
| 258 |
+
{
|
| 259 |
+
"seg_index": 8,
|
| 260 |
+
"clip_path": "match_007/clip/match_007_008",
|
| 261 |
+
"speech": "It looks like [PLAYER_1] isn't taking that risk; both players are mirroring each other with a 9-pool build once again.",
|
| 262 |
+
"speech_tag": "STATUS_REPORT",
|
| 263 |
+
"time": "1457~1717",
|
| 264 |
+
"events": [
|
| 265 |
+
{
|
| 266 |
+
"frames": "1457~1570",
|
| 267 |
+
"viewport": "[3456,64]->[3456,107]",
|
| 268 |
+
"units": {
|
| 269 |
+
"[PLAYER_1]": [
|
| 270 |
+
"Drone*9 [3945,305]->[3940,291]",
|
| 271 |
+
"Hatchery*1 [3808,272]",
|
| 272 |
+
"Larva*2 [3751,287]->[3747,291]"
|
| 273 |
+
]
|
| 274 |
+
}
|
| 275 |
+
},
|
| 276 |
+
{
|
| 277 |
+
"frames": "1571~1626",
|
| 278 |
+
"viewport": "[0,3605]->[0,3499]",
|
| 279 |
+
"units": {
|
| 280 |
+
"[PLAYER_2]": [
|
| 281 |
+
"Drone*9 [164,3770]->[160,3770]",
|
| 282 |
+
"Hatchery*1 [288,3760]",
|
| 283 |
+
"Larva*2 [229,3791]->[231,3780]"
|
| 284 |
+
]
|
| 285 |
+
}
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"frames": "1627~1717",
|
| 289 |
+
"viewport": "[3456,64]->[3456,107]",
|
| 290 |
+
"units": {
|
| 291 |
+
"[PLAYER_1]": [
|
| 292 |
+
"Drone*8 [3951,315]->[3934,300]",
|
| 293 |
+
"Hatchery*1 [3808,272]",
|
| 294 |
+
"Larva*2 [3748,284]->[3748,299]",
|
| 295 |
+
"Spawning_Pool*1 [3920,128]"
|
| 296 |
+
]
|
| 297 |
+
}
|
| 298 |
+
}
|
| 299 |
+
]
|
| 300 |
+
},
|
| 301 |
+
{
|
| 302 |
+
"seg_index": 9,
|
| 303 |
+
"clip_path": "match_007/clip/match_007_009",
|
| 304 |
+
"speech": "You might think there are some mind games at play here, as [PLAYER_2] might not expect [PLAYER_1] to go for the exact same opening again.",
|
| 305 |
+
"speech_tag": "PREDICTION",
|
| 306 |
+
"time": "1717~2051",
|
| 307 |
+
"events": [
|
| 308 |
+
{
|
| 309 |
+
"frames": "1717~1919",
|
| 310 |
+
"viewport": "[3456,107]->[3456,21]",
|
| 311 |
+
"units": {
|
| 312 |
+
"[PLAYER_1]": [
|
| 313 |
+
"Drone*8 [3935,300]->[3927,280]",
|
| 314 |
+
"Egg*1 [3745,298]",
|
| 315 |
+
"Extractor*1 [3808,96]",
|
| 316 |
+
"Hatchery*1 [3808,272]",
|
| 317 |
+
"Larva*2 [3750,287]->[3740,246]",
|
| 318 |
+
"Spawning_Pool*1 [3920,128]"
|
| 319 |
+
]
|
| 320 |
+
}
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"frames": "1920~2051",
|
| 324 |
+
"viewport": "[0,3349]->[0,3563]",
|
| 325 |
+
"units": {
|
| 326 |
+
"[PLAYER_2]": [
|
| 327 |
+
"Drone*7 [171,3788]->[134,3784]",
|
| 328 |
+
"Egg*1 [221,3790]",
|
| 329 |
+
"Extractor*1 [288,3584]",
|
| 330 |
+
"Hatchery*1 [288,3760]",
|
| 331 |
+
"Larva*2 [288,3750]->[293,3740]",
|
| 332 |
+
"Spawning_Pool*1 [176,3616]"
|
| 333 |
+
]
|
| 334 |
+
}
|
| 335 |
+
}
|
| 336 |
+
]
|
| 337 |
+
},
|
| 338 |
+
{
|
| 339 |
+
"seg_index": 10,
|
| 340 |
+
"clip_path": "match_007/clip/match_007_010",
|
| 341 |
+
"speech": "I mean, obviously, I'd probably 9-pull twice in a row myself. I'm not usually that cheesy, but these guys definitely are!",
|
| 342 |
+
"speech_tag": "CAST_BANTER",
|
| 343 |
+
"time": "2051~2307",
|
| 344 |
+
"events": [
|
| 345 |
+
{
|
| 346 |
+
"frames": "2051~2141",
|
| 347 |
+
"viewport": "[0,3563]",
|
| 348 |
+
"units": {
|
| 349 |
+
"[PLAYER_2]": [
|
| 350 |
+
"Drone*8 [140,3788]->[165,3793]",
|
| 351 |
+
"Egg*1 [361,3744]->[360,3746]",
|
| 352 |
+
"Extractor*1 [288,3584]",
|
| 353 |
+
"Hatchery*1 [288,3760]",
|
| 354 |
+
"Larva*2 [289,3750]->[287,3781]",
|
| 355 |
+
"Spawning_Pool*1 [176,3616]"
|
| 356 |
+
]
|
| 357 |
+
}
|
| 358 |
+
},
|
| 359 |
+
{
|
| 360 |
+
"frames": "2142~2268",
|
| 361 |
+
"viewport": "[3456,85]",
|
| 362 |
+
"units": {
|
| 363 |
+
"[PLAYER_1]": [
|
| 364 |
+
"Drone*8 [3946,303]->[3944,309]",
|
| 365 |
+
"Egg*1 [3751,242]",
|
| 366 |
+
"Extractor*1 [3808,96]",
|
| 367 |
+
"Hatchery*1 [3808,272]",
|
| 368 |
+
"Larva*2 [3748,253]->[3746,247]",
|
| 369 |
+
"Spawning_Pool*1 [3920,128]"
|
| 370 |
+
]
|
| 371 |
+
}
|
| 372 |
+
}
|
| 373 |
+
]
|
| 374 |
+
},
|
| 375 |
+
{
|
| 376 |
+
"seg_index": 11,
|
| 377 |
+
"clip_path": "match_007/clip/match_007_011",
|
| 378 |
+
"speech": "I mean, doing a 9-hatch twice in a row is just bold. It's such a disgusting build that no one should really use it, except maybe me, since my Zerg is actually that terrible.",
|
| 379 |
+
"speech_tag": "CAST_BANTER",
|
| 380 |
+
"time": "2156~2544",
|
| 381 |
+
"events": [
|
| 382 |
+
{
|
| 383 |
+
"frames": "2156~2379",
|
| 384 |
+
"viewport": "[3456,85]",
|
| 385 |
+
"units": {
|
| 386 |
+
"[PLAYER_1]": [
|
| 387 |
+
"Drone*8 [3944,310]->[3937,315]",
|
| 388 |
+
"Egg*2 [3751,247]",
|
| 389 |
+
"Extractor*1 [3808,96]",
|
| 390 |
+
"Hatchery*1 [3808,272]",
|
| 391 |
+
"Larva*1 [3751,252]->[3743,284]",
|
| 392 |
+
"Spawning_Pool*1 [3920,128]"
|
| 393 |
+
]
|
| 394 |
+
}
|
| 395 |
+
},
|
| 396 |
+
{
|
| 397 |
+
"frames": "2380~2544",
|
| 398 |
+
"viewport": "[0,3584]->[0,3563]",
|
| 399 |
+
"units": {
|
| 400 |
+
"[PLAYER_2]": [
|
| 401 |
+
"Drone*8 [145,3785]->[148,3804]",
|
| 402 |
+
"Egg*2 [295,3761]",
|
| 403 |
+
"Extractor*1 [288,3584]",
|
| 404 |
+
"Hatchery*1 [288,3760]",
|
| 405 |
+
"Larva*2 [346,3779]->[351,3785]",
|
| 406 |
+
"Spawning_Pool*1 [176,3616]"
|
| 407 |
+
]
|
| 408 |
+
}
|
| 409 |
+
}
|
| 410 |
+
]
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"seg_index": 12,
|
| 414 |
+
"clip_path": "match_007/clip/match_007_012",
|
| 415 |
+
"speech": "Both players are taking their gas simultaneously once again. We'll have to keep a close eye on where the first major tech or unit diversion in their builds will occur.",
|
| 416 |
+
"speech_tag": "PREDICTION",
|
| 417 |
+
"time": "2465~2646",
|
| 418 |
+
"events": [
|
| 419 |
+
{
|
| 420 |
+
"frames": "2465~2646",
|
| 421 |
+
"viewport": "[0,3563]",
|
| 422 |
+
"units": {
|
| 423 |
+
"[PLAYER_2]": [
|
| 424 |
+
"Drone*9 [158,3801]->[205,3741]",
|
| 425 |
+
"Egg*1 [361,3744]",
|
| 426 |
+
"Extractor*1 [288,3584]",
|
| 427 |
+
"Hatchery*1 [288,3760]",
|
| 428 |
+
"Larva*2 [351,3785]->[346,3774]",
|
| 429 |
+
"Spawning_Pool*1 [176,3616]"
|
| 430 |
+
]
|
| 431 |
+
}
|
| 432 |
+
}
|
| 433 |
+
]
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"seg_index": 13,
|
| 437 |
+
"clip_path": "match_007/clip/match_007_013",
|
| 438 |
+
"speech": "Both players are gathering gas now, so we have to see who prioritizes Metabolic Boost and who goes straight for the Lair. It's possible we see both players opt for a fast Lair here.",
|
| 439 |
+
"speech_tag": "PREDICTION",
|
| 440 |
+
"time": "2646~2741",
|
| 441 |
+
"events": [
|
| 442 |
+
{
|
| 443 |
+
"frames": "2646~2741",
|
| 444 |
+
"viewport": "[0,3563]",
|
| 445 |
+
"units": {
|
| 446 |
+
"[PLAYER_2]": [
|
| 447 |
+
"Drone*9 [196,3731]->[219,3729]",
|
| 448 |
+
"Egg*1 [361,3744]",
|
| 449 |
+
"Extractor*1 [288,3584]",
|
| 450 |
+
"Hatchery*1 [288,3760]",
|
| 451 |
+
"Larva*2 [346,3774]->[351,3779]",
|
| 452 |
+
"Spawning_Pool*1 [176,3616]"
|
| 453 |
+
]
|
| 454 |
+
}
|
| 455 |
+
}
|
| 456 |
+
]
|
| 457 |
+
},
|
| 458 |
+
{
|
| 459 |
+
"seg_index": 14,
|
| 460 |
+
"clip_path": "match_007/clip/match_007_014",
|
| 461 |
+
"speech": "I am honestly expecting [PLAYER_2] to prioritize Metabolic Boost while [PLAYER_1] goes for a fast Lair upgrade. If that happens, it could start looking pretty grim for [PLAYER_2] in the early stages.",
|
| 462 |
+
"speech_tag": "PREDICTION",
|
| 463 |
+
"time": "2741~3013",
|
| 464 |
+
"events": [
|
| 465 |
+
{
|
| 466 |
+
"frames": "2741~2839",
|
| 467 |
+
"viewport": "[0,3563]",
|
| 468 |
+
"units": {
|
| 469 |
+
"[PLAYER_2]": [
|
| 470 |
+
"Drone*9 [218,3729]->[200,3730]",
|
| 471 |
+
"Egg*3 [352,3785]",
|
| 472 |
+
"Extractor*1 [288,3584]",
|
| 473 |
+
"Hatchery*1 [288,3760]",
|
| 474 |
+
"Overlord*1 [361,3744]->[432,3702]",
|
| 475 |
+
"Spawning_Pool*1 [176,3616]"
|
| 476 |
+
]
|
| 477 |
+
}
|
| 478 |
+
},
|
| 479 |
+
{
|
| 480 |
+
"frames": "2840~3013",
|
| 481 |
+
"viewport": "[3391,85]->[3456,85]",
|
| 482 |
+
"units": {
|
| 483 |
+
"[PLAYER_1]": [
|
| 484 |
+
"Drone*9 [3905,258]->[3917,255]",
|
| 485 |
+
"Egg*3 [3742,276]",
|
| 486 |
+
"Extractor*1 [3808,96]",
|
| 487 |
+
"Hatchery*1 [3808,272]",
|
| 488 |
+
"Overlord*1 [3660,228]->[3543,309]",
|
| 489 |
+
"Spawning_Pool*1 [3920,128]"
|
| 490 |
+
]
|
| 491 |
+
}
|
| 492 |
+
}
|
| 493 |
+
]
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"seg_index": 15,
|
| 497 |
+
"clip_path": "match_007/clip/match_007_015",
|
| 498 |
+
"speech": "I'm not going to make any predictions here, as ZvZ can be so volatile. Looking at the tech paths, [PLAYER_1] is indeed opting for a Lair first.",
|
| 499 |
+
"speech_tag": "STATUS_REPORT",
|
| 500 |
+
"time": "3013~3245",
|
| 501 |
+
"events": [
|
| 502 |
+
{
|
| 503 |
+
"frames": "3013~3149",
|
| 504 |
+
"viewport": "[3456,85]",
|
| 505 |
+
"units": {
|
| 506 |
+
"[PLAYER_1]": [
|
| 507 |
+
"Drone*9 [3917,255]->[3903,252]",
|
| 508 |
+
"Egg*3 [3742,276]",
|
| 509 |
+
"Extractor*1 [3808,96]",
|
| 510 |
+
"Hatchery*1 [3808,272]",
|
| 511 |
+
"Overlord*1 [3542,310]->[3458,386]",
|
| 512 |
+
"Spawning_Pool*1 [3920,128]"
|
| 513 |
+
]
|
| 514 |
+
}
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"frames": "3150~3245",
|
| 518 |
+
"viewport": "[216,3499]->[0,3541]",
|
| 519 |
+
"units": {
|
| 520 |
+
"[PLAYER_2]": [
|
| 521 |
+
"Drone*9 [181,3744]->[196,3737]",
|
| 522 |
+
"Egg*3 [352,3785]",
|
| 523 |
+
"Extractor*1 [288,3584]",
|
| 524 |
+
"Hatchery*1 [288,3760]",
|
| 525 |
+
"Larva*1 [347,3760]->[346,3760]",
|
| 526 |
+
"Overlord*1 [690,3702]->[719,3702]",
|
| 527 |
+
"Spawning_Pool*1 [176,3616]"
|
| 528 |
+
]
|
| 529 |
+
}
|
| 530 |
+
}
|
| 531 |
+
]
|
| 532 |
+
},
|
| 533 |
+
{
|
| 534 |
+
"seg_index": 16,
|
| 535 |
+
"clip_path": "match_007/clip/match_007_016",
|
| 536 |
+
"speech": "Looks like Kante and I are both prophets here, seeing right into the future of this match! [PLAYER_1] is indeed starting that Lair.",
|
| 537 |
+
"speech_tag": "CAST_BANTER",
|
| 538 |
+
"time": "3245~3503",
|
| 539 |
+
"events": [
|
| 540 |
+
{
|
| 541 |
+
"frames": "3245~3252",
|
| 542 |
+
"viewport": "[0,3541]",
|
| 543 |
+
"units": {
|
| 544 |
+
"[PLAYER_2]": [
|
| 545 |
+
"Drone*9 [195,3737]->[189,3737]",
|
| 546 |
+
"Egg*4 [350,3779]",
|
| 547 |
+
"Extractor*1 [288,3584]",
|
| 548 |
+
"Hatchery*1 [288,3760]",
|
| 549 |
+
"Spawning_Pool*1 [176,3616]"
|
| 550 |
+
]
|
| 551 |
+
}
|
| 552 |
+
},
|
| 553 |
+
{
|
| 554 |
+
"frames": "3253~3284",
|
| 555 |
+
"viewport": "[3456,21]",
|
| 556 |
+
"units": {
|
| 557 |
+
"[PLAYER_1]": [
|
| 558 |
+
"Drone*9 [3932,260]->[3926,265]",
|
| 559 |
+
"Egg*3 [3742,276]->[3763,274]",
|
| 560 |
+
"Extractor*1 [3808,96]",
|
| 561 |
+
"Lair*1 [3808,272]",
|
| 562 |
+
"Larva*1 [3751,252]",
|
| 563 |
+
"Spawning_Pool*1 [3920,128]",
|
| 564 |
+
"Zergling*3 [3735,279]->[3717,279]"
|
| 565 |
+
]
|
| 566 |
+
}
|
| 567 |
+
},
|
| 568 |
+
{
|
| 569 |
+
"frames": "3285~3355",
|
| 570 |
+
"viewport": "[0,3435]->[0,3563]",
|
| 571 |
+
"units": {
|
| 572 |
+
"[PLAYER_2]": [
|
| 573 |
+
"Drone*9 [172,3738]->[194,3737]",
|
| 574 |
+
"Egg*1 [346,3760]",
|
| 575 |
+
"Extractor*1 [288,3584]",
|
| 576 |
+
"Hatchery*1 [288,3760]",
|
| 577 |
+
"Spawning_Pool*1 [176,3616]",
|
| 578 |
+
"Zergling*6 [370,3787]->[680,3825]"
|
| 579 |
+
]
|
| 580 |
+
}
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"frames": "3356~3503",
|
| 584 |
+
"viewport": "[238,3563]->[756,3349]",
|
| 585 |
+
"units": {
|
| 586 |
+
"[PLAYER_2]": [
|
| 587 |
+
"Drone*6 [260,3729]->[256,3724]",
|
| 588 |
+
"Egg*1 [346,3760]",
|
| 589 |
+
"Extractor*1 [288,3584]",
|
| 590 |
+
"Hatchery*1 [288,3760]",
|
| 591 |
+
"Overlord*1 [862,3702]->[983,3702]",
|
| 592 |
+
"Zergling*6 [688,3822]->[1202,3432]"
|
| 593 |
+
]
|
| 594 |
+
}
|
| 595 |
+
}
|
| 596 |
+
]
|
| 597 |
+
},
|
| 598 |
+
{
|
| 599 |
+
"seg_index": 17,
|
| 600 |
+
"clip_path": "match_007/clip/match_007_017",
|
| 601 |
+
"speech": "I'm a little bit concerned though, as [PLAYER_1] is moving his Zerglings out onto the map immediately.",
|
| 602 |
+
"speech_tag": "EVALUATION",
|
| 603 |
+
"time": "3503~3631",
|
| 604 |
+
"events": [
|
| 605 |
+
{
|
| 606 |
+
"frames": "3503~3561",
|
| 607 |
+
"viewport": "[756,3349]->[929,3179]",
|
| 608 |
+
"units": {
|
| 609 |
+
"[PLAYER_2]": [
|
| 610 |
+
"Overlord*1 [984,3702]->[1019,3702]",
|
| 611 |
+
"Zergling*6 [1205,3428]->[1352,3211]"
|
| 612 |
+
]
|
| 613 |
+
}
|
| 614 |
+
},
|
| 615 |
+
{
|
| 616 |
+
"frames": "3562~3625",
|
| 617 |
+
"viewport": "[2592,533]->[2419,704]",
|
| 618 |
+
"units": {
|
| 619 |
+
"[PLAYER_1]": [
|
| 620 |
+
"Overlord*1 [3205,620]->[3192,633]",
|
| 621 |
+
"Zergling*6 [2724,919]->[2580,1119]"
|
| 622 |
+
]
|
| 623 |
+
}
|
| 624 |
+
},
|
| 625 |
+
{
|
| 626 |
+
"frames": "3626~3631",
|
| 627 |
+
"viewport": "[1123,2816]",
|
| 628 |
+
"units": {
|
| 629 |
+
"[PLAYER_2]": [
|
| 630 |
+
"Zergling*6 [1604,2927]->[1621,2912]"
|
| 631 |
+
]
|
| 632 |
+
}
|
| 633 |
+
}
|
| 634 |
+
]
|
| 635 |
+
},
|
| 636 |
+
{
|
| 637 |
+
"seg_index": 18,
|
| 638 |
+
"clip_path": "match_007/clip/match_007_018",
|
| 639 |
+
"speech": "With the 9-pool opening, [PLAYER_1] should be relatively safe unless a 4-pool is coming, but without Zergling Speed researched yet, staying out on the map for too long could put him in a very risky position.",
|
| 640 |
+
"speech_tag": "PREDICTION",
|
| 641 |
+
"time": "3631~3837",
|
| 642 |
+
"events": [
|
| 643 |
+
{
|
| 644 |
+
"frames": "3631~3837",
|
| 645 |
+
"viewport": "[1123,2816]->[1750,2069]",
|
| 646 |
+
"units": {
|
| 647 |
+
"[PLAYER_1]": [
|
| 648 |
+
"Zergling*1 [2021,2050]->[2037,2049]"
|
| 649 |
+
],
|
| 650 |
+
"[PLAYER_2]": [
|
| 651 |
+
"Zergling*6 [1624,2908]->[2147,2122]"
|
| 652 |
+
]
|
| 653 |
+
}
|
| 654 |
+
}
|
| 655 |
+
]
|
| 656 |
+
},
|
| 657 |
+
{
|
| 658 |
+
"seg_index": 19,
|
| 659 |
+
"clip_path": "match_007/clip/match_007_019",
|
| 660 |
+
"speech": "Both groups of zerglings meet in the middle of the map and immediately retreat. That brief posturing didn't last long at all.",
|
| 661 |
+
"speech_tag": "SUMMARY",
|
| 662 |
+
"time": "3837~4037",
|
| 663 |
+
"events": [
|
| 664 |
+
{
|
| 665 |
+
"frames": "3837~3951",
|
| 666 |
+
"viewport": "[1750,2069]->[1728,1963]",
|
| 667 |
+
"units": {
|
| 668 |
+
"[PLAYER_1]": [
|
| 669 |
+
"Zergling*5 [2035,1913]->[2161,1752]"
|
| 670 |
+
],
|
| 671 |
+
"[PLAYER_2]": [
|
| 672 |
+
"Zergling*6 [2160,2115]->[2010,2360]"
|
| 673 |
+
]
|
| 674 |
+
}
|
| 675 |
+
},
|
| 676 |
+
{
|
| 677 |
+
"frames": "3967~4021",
|
| 678 |
+
"viewport": "[1944,1472]->[2030,1323]",
|
| 679 |
+
"units": {
|
| 680 |
+
"[PLAYER_1]": [
|
| 681 |
+
"Zergling*5 [2447,1468]->[2602,1330]"
|
| 682 |
+
]
|
| 683 |
+
}
|
| 684 |
+
},
|
| 685 |
+
{
|
| 686 |
+
"frames": "4022~4037",
|
| 687 |
+
"viewport": "[2203,1173]",
|
| 688 |
+
"units": {
|
| 689 |
+
"[PLAYER_1]": [
|
| 690 |
+
"Zergling*6 [2626,1281]->[2651,1263]"
|
| 691 |
+
]
|
| 692 |
+
}
|
| 693 |
+
}
|
| 694 |
+
]
|
| 695 |
+
},
|
| 696 |
+
{
|
| 697 |
+
"seg_index": 20,
|
| 698 |
+
"clip_path": "match_007/clip/match_007_020",
|
| 699 |
+
"speech": "Both players likely have a clear read on the situation. If [PLAYER_2] sees those Zerglings pull back that decisively, he'll likely suspect that [PLAYER_1] is rushing for a fast Lair.",
|
| 700 |
+
"speech_tag": "PREDICTION",
|
| 701 |
+
"time": "4037~4322",
|
| 702 |
+
"events": [
|
| 703 |
+
{
|
| 704 |
+
"frames": "4037~4069",
|
| 705 |
+
"viewport": "[2203,1173]",
|
| 706 |
+
"units": {
|
| 707 |
+
"[PLAYER_1]": [
|
| 708 |
+
"Zergling*5 [2653,1286]->[2692,1311]"
|
| 709 |
+
]
|
| 710 |
+
}
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"frames": "4070~4188",
|
| 714 |
+
"viewport": "[3456,85]",
|
| 715 |
+
"units": {
|
| 716 |
+
"[PLAYER_1]": [
|
| 717 |
+
"Drone*10 [3899,258]->[3892,256]",
|
| 718 |
+
"Egg*2 [3750,291]->[3675,308]",
|
| 719 |
+
"Extractor*1 [3808,96]",
|
| 720 |
+
"Lair*1 [3808,272]",
|
| 721 |
+
"Spawning_Pool*1 [3920,128]",
|
| 722 |
+
"Zergling*1 [3742,273]->[3689,334]"
|
| 723 |
+
]
|
| 724 |
+
}
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"frames": "4189~4252",
|
| 728 |
+
"viewport": "[2592,1621]->[2592,1813]",
|
| 729 |
+
"units": {
|
| 730 |
+
"[PLAYER_1]": [
|
| 731 |
+
"Zergling*2 [2960,2098]->[2960,2269]"
|
| 732 |
+
]
|
| 733 |
+
}
|
| 734 |
+
},
|
| 735 |
+
{
|
| 736 |
+
"frames": "4253~4275",
|
| 737 |
+
"viewport": "[562,3712]->[518,3712]",
|
| 738 |
+
"units": {
|
| 739 |
+
"[PLAYER_2]": [
|
| 740 |
+
"Zergling*10 [896,3759]->[883,3779]"
|
| 741 |
+
]
|
| 742 |
+
}
|
| 743 |
+
},
|
| 744 |
+
{
|
| 745 |
+
"frames": "4276~4322",
|
| 746 |
+
"viewport": "[86,3712]->[0,3605]",
|
| 747 |
+
"units": {
|
| 748 |
+
"[PLAYER_2]": [
|
| 749 |
+
"Drone*9 [219,3724]->[198,3724]",
|
| 750 |
+
"Egg*2 [347,3749]->[357,3745]",
|
| 751 |
+
"Lair*1 [288,3760]",
|
| 752 |
+
"Spawning_Pool*1 [176,3616]",
|
| 753 |
+
"Zergling*2 [784,3850]->[776,3850]"
|
| 754 |
+
]
|
| 755 |
+
}
|
| 756 |
+
}
|
| 757 |
+
]
|
| 758 |
+
},
|
| 759 |
+
{
|
| 760 |
+
"seg_index": 21,
|
| 761 |
+
"clip_path": "match_007/clip/match_007_021",
|
| 762 |
+
"speech": "Both players are likely aware of each other's tech paths, but keep in mind that [PLAYER_2] isn't rushing Lair himself. He might be trying to bluff [PLAYER_1] by retreating his Zerglings so decisively, making it look like he's the one focusing on a quicker Lair.",
|
| 763 |
+
"speech_tag": "PREDICTION",
|
| 764 |
+
"time": "4322~4584",
|
| 765 |
+
"events": [
|
| 766 |
+
{
|
| 767 |
+
"frames": "4322~4363",
|
| 768 |
+
"viewport": "[0,3605]",
|
| 769 |
+
"units": {
|
| 770 |
+
"[PLAYER_2]": [
|
| 771 |
+
"Drone*10 [215,3723]->[216,3729]",
|
| 772 |
+
"Egg*1 [346,3776]",
|
| 773 |
+
"Lair*1 [288,3760]",
|
| 774 |
+
"Spawning_Pool*1 [176,3616]"
|
| 775 |
+
]
|
| 776 |
+
}
|
| 777 |
+
},
|
| 778 |
+
{
|
| 779 |
+
"frames": "4364~4418",
|
| 780 |
+
"viewport": "[670,3712]->[475,3627]",
|
| 781 |
+
"units": {
|
| 782 |
+
"[PLAYER_2]": [
|
| 783 |
+
"Zergling*10 [870,3813]->[870,3816]"
|
| 784 |
+
]
|
| 785 |
+
}
|
| 786 |
+
},
|
| 787 |
+
{
|
| 788 |
+
"frames": "4419~4466",
|
| 789 |
+
"viewport": "[3456,85]",
|
| 790 |
+
"units": {
|
| 791 |
+
"[PLAYER_1]": [
|
| 792 |
+
"Drone*10 [3914,257]->[3926,257]",
|
| 793 |
+
"Egg*1 [3751,272]",
|
| 794 |
+
"Extractor*1 [3808,96]",
|
| 795 |
+
"Lair*1 [3808,272]",
|
| 796 |
+
"Spawning_Pool*1 [3920,128]",
|
| 797 |
+
"Zergling*2 [3747,313]->[3571,332]"
|
| 798 |
+
]
|
| 799 |
+
}
|
| 800 |
+
},
|
| 801 |
+
{
|
| 802 |
+
"frames": "4467~4545",
|
| 803 |
+
"viewport": "[670,3584]->[475,3563]",
|
| 804 |
+
"units": {
|
| 805 |
+
"[PLAYER_2]": [
|
| 806 |
+
"Zergling*10 [870,3823]->[866,3823]"
|
| 807 |
+
]
|
| 808 |
+
}
|
| 809 |
+
},
|
| 810 |
+
{
|
| 811 |
+
"frames": "4546~4584",
|
| 812 |
+
"viewport": "[216,3563]->[22,3563]",
|
| 813 |
+
"units": {
|
| 814 |
+
"[PLAYER_2]": [
|
| 815 |
+
"Drone*11 [225,3737]->[213,3735]",
|
| 816 |
+
"Extractor*1 [288,3584]",
|
| 817 |
+
"Lair*1 [288,3760]",
|
| 818 |
+
"Larva*1 [346,3760]->[359,3747]",
|
| 819 |
+
"Spawning_Pool*1 [176,3616]",
|
| 820 |
+
"Zergling*9 [861,3823]"
|
| 821 |
+
]
|
| 822 |
+
}
|
| 823 |
+
}
|
| 824 |
+
]
|
| 825 |
+
},
|
| 826 |
+
{
|
| 827 |
+
"seg_index": 22,
|
| 828 |
+
"clip_path": "match_007/clip/match_007_022",
|
| 829 |
+
"speech": "[PLAYER_2] is setting up a defensive Zergling wall instead of going for an attack, but look at [PLAYER_1]—he's managed to sneak two Zerglings around the side!",
|
| 830 |
+
"speech_tag": "ACTION_CALL",
|
| 831 |
+
"time": "4584~4762",
|
| 832 |
+
"events": [
|
| 833 |
+
{
|
| 834 |
+
"frames": "4584~4585",
|
| 835 |
+
"viewport": "[22,3563]",
|
| 836 |
+
"units": {
|
| 837 |
+
"[PLAYER_2]": [
|
| 838 |
+
"Drone*11 [213,3735]->[214,3735]",
|
| 839 |
+
"Extractor*1 [288,3584]",
|
| 840 |
+
"Lair*1 [288,3760]",
|
| 841 |
+
"Larva*1 [360,3746]->[362,3745]",
|
| 842 |
+
"Spawning_Pool*1 [176,3616]"
|
| 843 |
+
]
|
| 844 |
+
}
|
| 845 |
+
},
|
| 846 |
+
{
|
| 847 |
+
"frames": "4586~4664",
|
| 848 |
+
"viewport": "[432,3563]->[562,3584]",
|
| 849 |
+
"units": {
|
| 850 |
+
"[PLAYER_2]": [
|
| 851 |
+
"Zergling*10 [866,3821]"
|
| 852 |
+
]
|
| 853 |
+
}
|
| 854 |
+
},
|
| 855 |
+
{
|
| 856 |
+
"frames": "4665~4759",
|
| 857 |
+
"viewport": "[2160,3520]->[1771,3328]",
|
| 858 |
+
"units": {
|
| 859 |
+
"[PLAYER_1]": [
|
| 860 |
+
"Zergling*2 [2082,3486]->[1908,3311]"
|
| 861 |
+
],
|
| 862 |
+
"[PLAYER_2]": [
|
| 863 |
+
"Overlord*1 [1898,3773]->[1943,3779]"
|
| 864 |
+
]
|
| 865 |
+
}
|
| 866 |
+
},
|
| 867 |
+
{
|
| 868 |
+
"frames": "4760~4762",
|
| 869 |
+
"viewport": "[1620,3157]",
|
| 870 |
+
"units": {
|
| 871 |
+
"[PLAYER_1]": [
|
| 872 |
+
"Zergling*2 [1844,3255]->[1839,3248]"
|
| 873 |
+
]
|
| 874 |
+
}
|
| 875 |
+
}
|
| 876 |
+
]
|
| 877 |
+
},
|
| 878 |
+
{
|
| 879 |
+
"seg_index": 23,
|
| 880 |
+
"clip_path": "match_007/clip/match_007_023",
|
| 881 |
+
"speech": "Deviating from the pressure he showed in the first game, [PLAYER_2] is maintaining a defensive posture with his Zerglings. Consequently, these two Zerglings from [PLAYER_1] that are sneaking around unlikely to find an opening.",
|
| 882 |
+
"speech_tag": "STATUS_REPORT",
|
| 883 |
+
"time": "4764~4952",
|
| 884 |
+
"events": [
|
| 885 |
+
{
|
| 886 |
+
"frames": "4764~4902",
|
| 887 |
+
"viewport": "[1620,3157]->[1102,3136]",
|
| 888 |
+
"units": {
|
| 889 |
+
"[PLAYER_1]": [
|
| 890 |
+
"Zergling*2 [1833,3244]->[1216,3361]"
|
| 891 |
+
]
|
| 892 |
+
}
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"frames": "4903~4910",
|
| 896 |
+
"viewport": "[907,3307]",
|
| 897 |
+
"units": {
|
| 898 |
+
"[PLAYER_1]": [
|
| 899 |
+
"Zergling*2 [1212,3365]->[1202,3394]"
|
| 900 |
+
]
|
| 901 |
+
}
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"frames": "4911~4926",
|
| 905 |
+
"viewport": "[713,3541]->[562,3627]",
|
| 906 |
+
"units": {
|
| 907 |
+
"[PLAYER_2]": [
|
| 908 |
+
"Zergling*10 [868,3831]->[870,3827]"
|
| 909 |
+
]
|
| 910 |
+
}
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"frames": "4927~4952",
|
| 914 |
+
"viewport": "[778,3477]->[864,3157]",
|
| 915 |
+
"units": {
|
| 916 |
+
"[PLAYER_1]": [
|
| 917 |
+
"Zergling*2 [1202,3505]->[1214,3615]"
|
| 918 |
+
],
|
| 919 |
+
"[PLAYER_2]": [
|
| 920 |
+
"Zergling*10 [870,3827]"
|
| 921 |
+
]
|
| 922 |
+
}
|
| 923 |
+
}
|
| 924 |
+
]
|
| 925 |
+
},
|
| 926 |
+
{
|
| 927 |
+
"seg_index": 24,
|
| 928 |
+
"clip_path": "match_007/clip/match_007_024",
|
| 929 |
+
"speech": "It was a clever idea from [PLAYER_1] to scout, but [PLAYER_2] seems well-prepared. I suspect [PLAYER_2] may have delayed or adjusted his Metabolic Boost timing, though it looks like it's actually finished.",
|
| 930 |
+
"speech_tag": "EVALUATION",
|
| 931 |
+
"time": "4956~5117",
|
| 932 |
+
"events": [
|
| 933 |
+
{
|
| 934 |
+
"frames": "4956~5117",
|
| 935 |
+
"viewport": "[864,3157]->[626,3605]",
|
| 936 |
+
"units": {
|
| 937 |
+
"[PLAYER_1]": [
|
| 938 |
+
"Zergling*2 [1210,3648]->[1258,3603]"
|
| 939 |
+
],
|
| 940 |
+
"[PLAYER_2]": [
|
| 941 |
+
"Zergling*10 [870,3827]"
|
| 942 |
+
]
|
| 943 |
+
}
|
| 944 |
+
}
|
| 945 |
+
]
|
| 946 |
+
},
|
| 947 |
+
{
|
| 948 |
+
"seg_index": 25,
|
| 949 |
+
"clip_path": "match_007/clip/match_007_025",
|
| 950 |
+
"speech": "I was questioning [PLAYER_2]'s tech for a second, but seeing those Zerglings maneuver makes me think Metabolic Boost has finished. Either way, [PLAYER_2] is sitting on a significant bank of resources right now.",
|
| 951 |
+
"speech_tag": "STATUS_REPORT",
|
| 952 |
+
"time": "5124~5386",
|
| 953 |
+
"events": [
|
| 954 |
+
{
|
| 955 |
+
"frames": "5124~5180",
|
| 956 |
+
"viewport": "[626,3605]->[648,3605]",
|
| 957 |
+
"units": {
|
| 958 |
+
"[PLAYER_1]": [
|
| 959 |
+
"Zergling*2 [1251,3610]->[1183,3657]"
|
| 960 |
+
],
|
| 961 |
+
"[PLAYER_2]": [
|
| 962 |
+
"Zergling*10 [870,3827]"
|
| 963 |
+
]
|
| 964 |
+
}
|
| 965 |
+
},
|
| 966 |
+
{
|
| 967 |
+
"frames": "5181~5275",
|
| 968 |
+
"viewport": "[3413,235]->[3456,21]",
|
| 969 |
+
"units": {
|
| 970 |
+
"[PLAYER_1]": [
|
| 971 |
+
"Drone*10 [3898,258]->[3916,257]",
|
| 972 |
+
"Egg*1 [3742,263]",
|
| 973 |
+
"Extractor*1 [3808,96]",
|
| 974 |
+
"Lair*1 [3808,272]",
|
| 975 |
+
"Spawning_Pool*1 [3920,128]",
|
| 976 |
+
"Spire*1 [3744,160]",
|
| 977 |
+
"Zergling*1 [3504,285]->[3418,285]"
|
| 978 |
+
]
|
| 979 |
+
}
|
| 980 |
+
},
|
| 981 |
+
{
|
| 982 |
+
"frames": "5276~5354",
|
| 983 |
+
"viewport": "[540,3520]->[518,3627]",
|
| 984 |
+
"units": {
|
| 985 |
+
"[PLAYER_1]": [
|
| 986 |
+
"Zergling*2 [1071,3706]->[1072,3720]"
|
| 987 |
+
],
|
| 988 |
+
"[PLAYER_2]": [
|
| 989 |
+
"Zergling*10 [870,3827]"
|
| 990 |
+
]
|
| 991 |
+
}
|
| 992 |
+
},
|
| 993 |
+
{
|
| 994 |
+
"frames": "5355~5362",
|
| 995 |
+
"viewport": "[302,3627]",
|
| 996 |
+
"units": {
|
| 997 |
+
"[PLAYER_1]": [
|
| 998 |
+
"Zergling*1 [963,3760]->[982,3735]"
|
| 999 |
+
],
|
| 1000 |
+
"[PLAYER_2]": [
|
| 1001 |
+
"Drone*3 [336,3654]->[336,3653]",
|
| 1002 |
+
"Egg*1 [346,3750]",
|
| 1003 |
+
"Lair*1 [288,3760]",
|
| 1004 |
+
"Larva*1 [350,3713]->[346,3720]",
|
| 1005 |
+
"Zergling*10 [870,3827]"
|
| 1006 |
+
]
|
| 1007 |
+
}
|
| 1008 |
+
},
|
| 1009 |
+
{
|
| 1010 |
+
"frames": "5363~5386",
|
| 1011 |
+
"viewport": "[0,3499]",
|
| 1012 |
+
"units": {
|
| 1013 |
+
"[PLAYER_2]": [
|
| 1014 |
+
"Drone*12 [199,3740]->[184,3741]",
|
| 1015 |
+
"Egg*1 [346,3750]",
|
| 1016 |
+
"Extractor*1 [288,3584]",
|
| 1017 |
+
"Lair*1 [288,3760]",
|
| 1018 |
+
"Larva*1 [346,3720]->[349,3737]",
|
| 1019 |
+
"Spawning_Pool*1 [176,3616]"
|
| 1020 |
+
]
|
| 1021 |
+
}
|
| 1022 |
+
}
|
| 1023 |
+
]
|
| 1024 |
+
},
|
| 1025 |
+
{
|
| 1026 |
+
"seg_index": 26,
|
| 1027 |
+
"clip_path": "match_007/clip/match_007_026",
|
| 1028 |
+
"speech": "Alright, Let's see how they move when they engage. I think he might have Metabolic Boost, but it is hard to tell because they are only moving in such short bursts.",
|
| 1029 |
+
"speech_tag": "PRODUCTION_CHAT",
|
| 1030 |
+
"time": "5386~5553",
|
| 1031 |
+
"events": [
|
| 1032 |
+
{
|
| 1033 |
+
"frames": "5386~5402",
|
| 1034 |
+
"viewport": "[0,3499]",
|
| 1035 |
+
"units": {
|
| 1036 |
+
"[PLAYER_2]": [
|
| 1037 |
+
"Drone*12 [184,3741]->[187,3744]",
|
| 1038 |
+
"Egg*1 [346,3750]",
|
| 1039 |
+
"Extractor*1 [288,3584]",
|
| 1040 |
+
"Lair*1 [288,3760]",
|
| 1041 |
+
"Larva*1 [347,3738]->[346,3740]",
|
| 1042 |
+
"Spawning_Pool*1 [176,3616]"
|
| 1043 |
+
]
|
| 1044 |
+
}
|
| 1045 |
+
},
|
| 1046 |
+
{
|
| 1047 |
+
"frames": "5403~5410",
|
| 1048 |
+
"viewport": "[281,3499]",
|
| 1049 |
+
"units": {
|
| 1050 |
+
"[PLAYER_2]": [
|
| 1051 |
+
"Drone*3 [328,3654]->[328,3655]",
|
| 1052 |
+
"Egg*1 [346,3750]",
|
| 1053 |
+
"Extractor*1 [288,3584]",
|
| 1054 |
+
"Lair*1 [288,3760]",
|
| 1055 |
+
"Larva*1 [346,3740]",
|
| 1056 |
+
"Zergling*10 [870,3827]"
|
| 1057 |
+
]
|
| 1058 |
+
}
|
| 1059 |
+
},
|
| 1060 |
+
{
|
| 1061 |
+
"frames": "5411~5553",
|
| 1062 |
+
"viewport": "[475,3669]->[562,3605]",
|
| 1063 |
+
"units": {
|
| 1064 |
+
"[PLAYER_1]": [
|
| 1065 |
+
"Zergling*1 [1022,3680]->[1017,3649]"
|
| 1066 |
+
],
|
| 1067 |
+
"[PLAYER_2]": [
|
| 1068 |
+
"Zergling*10 [870,3827]->[873,3822]"
|
| 1069 |
+
]
|
| 1070 |
+
}
|
| 1071 |
+
}
|
| 1072 |
+
]
|
| 1073 |
+
},
|
| 1074 |
+
{
|
| 1075 |
+
"seg_index": 27,
|
| 1076 |
+
"clip_path": "match_007/clip/match_007_027",
|
| 1077 |
+
"speech": "I'm trying to gauge his movement speed to see if he's adjusting those units, but it's difficult to tell since they aren't repositioning much. It's possible he may have canceled that command.",
|
| 1078 |
+
"speech_tag": "PRODUCTION_CHAT",
|
| 1079 |
+
"time": "5553~5767",
|
| 1080 |
+
"events": [
|
| 1081 |
+
{
|
| 1082 |
+
"frames": "5553~5743",
|
| 1083 |
+
"viewport": "[562,3605]->[583,3627]",
|
| 1084 |
+
"units": {
|
| 1085 |
+
"[PLAYER_2]": [
|
| 1086 |
+
"Zergling*10 [873,3822]"
|
| 1087 |
+
]
|
| 1088 |
+
}
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"frames": "5744~5767",
|
| 1092 |
+
"viewport": "[151,3627]->[0,3520]",
|
| 1093 |
+
"units": {
|
| 1094 |
+
"[PLAYER_2]": [
|
| 1095 |
+
"Drone*11 [211,3753]->[233,3752]",
|
| 1096 |
+
"Egg*1 [356,3730]",
|
| 1097 |
+
"Extractor*1 [288,3584]",
|
| 1098 |
+
"Lair*1 [288,3760]",
|
| 1099 |
+
"Larva*2 [351,3748]->[353,3743]",
|
| 1100 |
+
"Overlord*1 [335,3749]->[323,3762]",
|
| 1101 |
+
"Spawning_Pool*1 [176,3616]",
|
| 1102 |
+
"Spire*1 [256,3648]",
|
| 1103 |
+
"Zergling*2 [838,3789]"
|
| 1104 |
+
]
|
| 1105 |
+
}
|
| 1106 |
+
}
|
| 1107 |
+
]
|
| 1108 |
+
},
|
| 1109 |
+
{
|
| 1110 |
+
"seg_index": 28,
|
| 1111 |
+
"clip_path": "match_007/clip/match_007_028",
|
| 1112 |
+
"speech": "Bakayu in chat claims he cancelled Zergling speed, and I'm inclined to believe him if only because of that impressive mustache. It genuinely looks like [PLAYER_2] may have cancelled that upgrade to squeeze out another drone.",
|
| 1113 |
+
"speech_tag": "CAST_BANTER",
|
| 1114 |
+
"time": "5767~6251",
|
| 1115 |
+
"events": [
|
| 1116 |
+
{
|
| 1117 |
+
"frames": "5767~5791",
|
| 1118 |
+
"viewport": "[0,3520]->[22,3520]",
|
| 1119 |
+
"units": {
|
| 1120 |
+
"[PLAYER_2]": [
|
| 1121 |
+
"Drone*11 [233,3752]->[231,3751]",
|
| 1122 |
+
"Egg*1 [356,3730]",
|
| 1123 |
+
"Extractor*1 [288,3584]",
|
| 1124 |
+
"Lair*1 [288,3760]",
|
| 1125 |
+
"Larva*2 [352,3743]->[351,3743]",
|
| 1126 |
+
"Overlord*1 [322,3763]->[309,3778]",
|
| 1127 |
+
"Spawning_Pool*1 [176,3616]",
|
| 1128 |
+
"Spire*1 [256,3648]"
|
| 1129 |
+
]
|
| 1130 |
+
}
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"frames": "5792~5838",
|
| 1134 |
+
"viewport": "[454,3627]->[540,3627]",
|
| 1135 |
+
"units": {
|
| 1136 |
+
"[PLAYER_2]": [
|
| 1137 |
+
"Drone*1 [646,3909]->[813,3787]",
|
| 1138 |
+
"Zergling*10 [886,3813]->[955,3719]"
|
| 1139 |
+
]
|
| 1140 |
+
}
|
| 1141 |
+
},
|
| 1142 |
+
{
|
| 1143 |
+
"frames": "5839~5894",
|
| 1144 |
+
"viewport": "[2916,149]",
|
| 1145 |
+
"units": {
|
| 1146 |
+
"[PLAYER_1]": [
|
| 1147 |
+
"Zergling*12 [3221,300]"
|
| 1148 |
+
]
|
| 1149 |
+
}
|
| 1150 |
+
}
|
| 1151 |
+
]
|
| 1152 |
+
},
|
| 1153 |
+
{
|
| 1154 |
+
"seg_index": 29,
|
| 1155 |
+
"clip_path": "match_007/clip/match_007_029",
|
| 1156 |
+
"speech": "[PLAYER_2] is looking to expand here, but they will definitely need to get Spore Colonies up quickly. It actually looks like [PLAYER_1]'s Mutalisks might be out and attacking this expansion before the creep even finishes.",
|
| 1157 |
+
"speech_tag": "PREDICTION",
|
| 1158 |
+
"time": "5886~6401",
|
| 1159 |
+
"events": [
|
| 1160 |
+
{
|
| 1161 |
+
"frames": "5886~5894",
|
| 1162 |
+
"viewport": "[2916,149]",
|
| 1163 |
+
"units": {
|
| 1164 |
+
"[PLAYER_1]": [
|
| 1165 |
+
"Zergling*12 [3221,300]"
|
| 1166 |
+
]
|
| 1167 |
+
}
|
| 1168 |
+
},
|
| 1169 |
+
{
|
| 1170 |
+
"frames": "5895~5902",
|
| 1171 |
+
"viewport": "[3197,149]",
|
| 1172 |
+
"units": {
|
| 1173 |
+
"[PLAYER_1]": [
|
| 1174 |
+
"Drone*5 [3856,215]->[3857,219]",
|
| 1175 |
+
"Egg*1 [3738,279]",
|
| 1176 |
+
"Lair*1 [3808,272]",
|
| 1177 |
+
"Larva*1 [3741,239]->[3739,237]",
|
| 1178 |
+
"Overlord*1 [3737,188]->[3742,186]",
|
| 1179 |
+
"Spire*1 [3744,160]",
|
| 1180 |
+
"Zergling*10 [3233,299]"
|
| 1181 |
+
]
|
| 1182 |
+
}
|
| 1183 |
+
},
|
| 1184 |
+
{
|
| 1185 |
+
"frames": "5903~5957",
|
| 1186 |
+
"viewport": "[3456,149]->[3456,21]",
|
| 1187 |
+
"units": {
|
| 1188 |
+
"[PLAYER_1]": [
|
| 1189 |
+
"Drone*10 [3898,256]->[3913,263]",
|
| 1190 |
+
"Egg*1 [3738,279]",
|
| 1191 |
+
"Extractor*1 [3808,96]",
|
| 1192 |
+
"Lair*1 [3808,272]",
|
| 1193 |
+
"Larva*1 [3738,236]->[3751,232]",
|
| 1194 |
+
"Overlord*1 [3743,185]->[3783,166]",
|
| 1195 |
+
"Spawning_Pool*1 [3920,128]",
|
| 1196 |
+
"Spire*1 [3744,160]"
|
| 1197 |
+
]
|
| 1198 |
+
}
|
| 1199 |
+
},
|
| 1200 |
+
{
|
| 1201 |
+
"frames": "5958~6298",
|
| 1202 |
+
"viewport": "[648,3328]->[907,3392]",
|
| 1203 |
+
"units": {
|
| 1204 |
+
"[PLAYER_2]": [
|
| 1205 |
+
"Drone*1 [1236,3451]->[1216,3632]",
|
| 1206 |
+
"Zergling*10 [1168,3351]->[1163,3464]"
|
| 1207 |
+
]
|
| 1208 |
+
}
|
| 1209 |
+
},
|
| 1210 |
+
{
|
| 1211 |
+
"frames": "6299~6386",
|
| 1212 |
+
"viewport": "[0,3541]",
|
| 1213 |
+
"units": {
|
| 1214 |
+
"[PLAYER_2]": [
|
| 1215 |
+
"Drone*12 [179,3737]->[198,3734]",
|
| 1216 |
+
"Egg*2 [351,3770]",
|
| 1217 |
+
"Extractor*1 [288,3584]",
|
| 1218 |
+
"Lair*1 [288,3760]",
|
| 1219 |
+
"Overlord*1 [175,3929]",
|
| 1220 |
+
"Spawning_Pool*1 [176,3616]",
|
| 1221 |
+
"Spire*1 [256,3648]"
|
| 1222 |
+
]
|
| 1223 |
+
}
|
| 1224 |
+
},
|
| 1225 |
+
{
|
| 1226 |
+
"frames": "6387~6401",
|
| 1227 |
+
"viewport": "[3456,21]",
|
| 1228 |
+
"units": {
|
| 1229 |
+
"[PLAYER_1]": [
|
| 1230 |
+
"Drone*10 [3906,259]->[3911,258]",
|
| 1231 |
+
"Extractor*1 [3808,96]",
|
| 1232 |
+
"Lair*1 [3808,272]",
|
| 1233 |
+
"Larva*2 [3746,248]->[3742,253]",
|
| 1234 |
+
"Overlord*2 [3941,101]->[3946,98]",
|
| 1235 |
+
"Spawning_Pool*1 [3920,128]",
|
| 1236 |
+
"Spire*1 [3744,160]"
|
| 1237 |
+
]
|
| 1238 |
+
}
|
| 1239 |
+
}
|
| 1240 |
+
]
|
| 1241 |
+
},
|
| 1242 |
+
{
|
| 1243 |
+
"seg_index": 30,
|
| 1244 |
+
"clip_path": "match_007/clip/match_007_030",
|
| 1245 |
+
"speech": "I wonder if [PLAYER_2] is just going to produce a mass of Scourge and hope that [PLAYER_1] cannot micro against them.",
|
| 1246 |
+
"speech_tag": "PREDICTION",
|
| 1247 |
+
"time": "6434~6608",
|
| 1248 |
+
"events": [
|
| 1249 |
+
{
|
| 1250 |
+
"frames": "6434~6481",
|
| 1251 |
+
"viewport": "[0,3605]",
|
| 1252 |
+
"units": {
|
| 1253 |
+
"[PLAYER_2]": [
|
| 1254 |
+
"Drone*12 [189,3731]->[174,3736]",
|
| 1255 |
+
"Egg*2 [351,3770]",
|
| 1256 |
+
"Lair*1 [288,3760]",
|
| 1257 |
+
"Larva*1 [347,3760]->[357,3768]",
|
| 1258 |
+
"Overlord*1 [175,3929]",
|
| 1259 |
+
"Spawning_Pool*1 [176,3616]",
|
| 1260 |
+
"Spire*1 [256,3648]"
|
| 1261 |
+
]
|
| 1262 |
+
}
|
| 1263 |
+
},
|
| 1264 |
+
{
|
| 1265 |
+
"frames": "6482~6528",
|
| 1266 |
+
"viewport": "[864,3221]->[864,3371]",
|
| 1267 |
+
"units": {
|
| 1268 |
+
"[PLAYER_2]": [
|
| 1269 |
+
"Hatchery*1 [1216,3632]",
|
| 1270 |
+
"Zergling*10 [1135,3504]->[1148,3504]"
|
| 1271 |
+
]
|
| 1272 |
+
}
|
| 1273 |
+
},
|
| 1274 |
+
{
|
| 1275 |
+
"frames": "6529~6584",
|
| 1276 |
+
"viewport": "[1706,1813]->[1793,1685]",
|
| 1277 |
+
"units": {
|
| 1278 |
+
"[PLAYER_1]": [
|
| 1279 |
+
"Zergling*10 [1989,2141]->[1962,2205]"
|
| 1280 |
+
]
|
| 1281 |
+
}
|
| 1282 |
+
},
|
| 1283 |
+
{
|
| 1284 |
+
"frames": "6585~6608",
|
| 1285 |
+
"viewport": "[1706,1941]->[1663,1963]",
|
| 1286 |
+
"units": {
|
| 1287 |
+
"[PLAYER_1]": [
|
| 1288 |
+
"Zergling*6 [1875,2317]->[1831,2388]"
|
| 1289 |
+
]
|
| 1290 |
+
}
|
| 1291 |
+
}
|
| 1292 |
+
]
|
| 1293 |
+
},
|
| 1294 |
+
{
|
| 1295 |
+
"seg_index": 31,
|
| 1296 |
+
"clip_path": "match_007/clip/match_007_031",
|
| 1297 |
+
"speech": "He might be looking to mass up Scourge here, hoping that a sudden burst of damage can catch [PLAYER_1] off guard before the Mutalisk numbers become overwhelming.",
|
| 1298 |
+
"speech_tag": "PREDICTION",
|
| 1299 |
+
"time": "6620~6752",
|
| 1300 |
+
"events": [
|
| 1301 |
+
{
|
| 1302 |
+
"frames": "6620~6703",
|
| 1303 |
+
"viewport": "[3456,128]->[3456,21]",
|
| 1304 |
+
"units": {
|
| 1305 |
+
"[PLAYER_1]": [
|
| 1306 |
+
"Drone*10 [3906,258]->[3918,260]",
|
| 1307 |
+
"Egg*3 [3741,263]",
|
| 1308 |
+
"Extractor*1 [3808,96]",
|
| 1309 |
+
"Lair*1 [3808,272]",
|
| 1310 |
+
"Overlord*2 [4026,50]->[4055,35]",
|
| 1311 |
+
"Spawning_Pool*1 [3920,128]",
|
| 1312 |
+
"Spire*1 [3744,160]"
|
| 1313 |
+
]
|
| 1314 |
+
}
|
| 1315 |
+
},
|
| 1316 |
+
{
|
| 1317 |
+
"frames": "6704~6752",
|
| 1318 |
+
"viewport": "[1382,2517]->[1318,2539]",
|
| 1319 |
+
"units": {
|
| 1320 |
+
"[PLAYER_1]": [
|
| 1321 |
+
"Zergling*10 [1534,2831]->[1484,2959]"
|
| 1322 |
+
]
|
| 1323 |
+
}
|
| 1324 |
+
}
|
| 1325 |
+
]
|
| 1326 |
+
},
|
| 1327 |
+
{
|
| 1328 |
+
"seg_index": 32,
|
| 1329 |
+
"clip_path": "match_007/clip/match_007_032",
|
| 1330 |
+
"speech": "Ah, genius. That's a great plan from [PLAYER_2], I really love the strategic direction he's taking here.",
|
| 1331 |
+
"speech_tag": "EVALUATION",
|
| 1332 |
+
"time": "6769~6849",
|
| 1333 |
+
"events": [
|
| 1334 |
+
{
|
| 1335 |
+
"frames": "6769~6790",
|
| 1336 |
+
"viewport": "[1231,2645]",
|
| 1337 |
+
"units": {
|
| 1338 |
+
"[PLAYER_1]": [
|
| 1339 |
+
"Zergling*5 [1423,3035]->[1342,3080]"
|
| 1340 |
+
]
|
| 1341 |
+
}
|
| 1342 |
+
},
|
| 1343 |
+
{
|
| 1344 |
+
"frames": "6791~6830",
|
| 1345 |
+
"viewport": "[929,3328]",
|
| 1346 |
+
"units": {
|
| 1347 |
+
"[PLAYER_1]": [
|
| 1348 |
+
"Zergling*4 [1188,3310]->[1188,3328]"
|
| 1349 |
+
],
|
| 1350 |
+
"[PLAYER_2]": [
|
| 1351 |
+
"Hatchery*1 [1216,3632]",
|
| 1352 |
+
"Zergling*11 [1107,3531]->[1110,3498]"
|
| 1353 |
+
]
|
| 1354 |
+
}
|
| 1355 |
+
},
|
| 1356 |
+
{
|
| 1357 |
+
"frames": "6831~6849",
|
| 1358 |
+
"viewport": "[1058,3051]->[1058,2923]",
|
| 1359 |
+
"units": {
|
| 1360 |
+
"[PLAYER_1]": [
|
| 1361 |
+
"Zergling*13 [1206,3279]->[1203,3353]"
|
| 1362 |
+
],
|
| 1363 |
+
"[PLAYER_2]": [
|
| 1364 |
+
"Zergling*6 [1146,3411]->[1158,3399]"
|
| 1365 |
+
]
|
| 1366 |
+
}
|
| 1367 |
+
}
|
| 1368 |
+
]
|
| 1369 |
+
},
|
| 1370 |
+
{
|
| 1371 |
+
"seg_index": 33,
|
| 1372 |
+
"clip_path": "match_007/clip/match_007_033",
|
| 1373 |
+
"speech": "It’s not a bad idea at all, really, especially when you consider the current game state.",
|
| 1374 |
+
"speech_tag": "EVALUATION",
|
| 1375 |
+
"time": "6881~6933",
|
| 1376 |
+
"events": [
|
| 1377 |
+
{
|
| 1378 |
+
"frames": "6881~6933",
|
| 1379 |
+
"viewport": "[950,3029]->[886,3221]",
|
| 1380 |
+
"units": {
|
| 1381 |
+
"[PLAYER_1]": [
|
| 1382 |
+
"Zergling*12 [1166,3438]->[1132,3484]"
|
| 1383 |
+
],
|
| 1384 |
+
"[PLAYER_2]": [
|
| 1385 |
+
"Hatchery*1 [1216,3632]",
|
| 1386 |
+
"Zergling*9 [1103,3460]->[1075,3538]"
|
| 1387 |
+
]
|
| 1388 |
+
}
|
| 1389 |
+
}
|
| 1390 |
+
]
|
| 1391 |
+
},
|
| 1392 |
+
{
|
| 1393 |
+
"seg_index": 34,
|
| 1394 |
+
"clip_path": "match_007/clip/match_007_034",
|
| 1395 |
+
"speech": "It has become a pretty significant Zergling advantage for [PLAYER_1] here.",
|
| 1396 |
+
"speech_tag": "STATUS_REPORT",
|
| 1397 |
+
"time": "6944~7041",
|
| 1398 |
+
"events": [
|
| 1399 |
+
{
|
| 1400 |
+
"frames": "6944~7041",
|
| 1401 |
+
"viewport": "[886,3221]->[799,3328]",
|
| 1402 |
+
"units": {
|
| 1403 |
+
"[PLAYER_1]": [
|
| 1404 |
+
"Zergling*11 [1119,3521]->[1143,3652]"
|
| 1405 |
+
],
|
| 1406 |
+
"[PLAYER_2]": [
|
| 1407 |
+
"Hatchery*1 [1216,3632]",
|
| 1408 |
+
"Zergling*7 [1031,3604]->[965,3691]"
|
| 1409 |
+
]
|
| 1410 |
+
}
|
| 1411 |
+
}
|
| 1412 |
+
]
|
| 1413 |
+
},
|
| 1414 |
+
{
|
| 1415 |
+
"seg_index": 35,
|
| 1416 |
+
"clip_path": "match_007/clip/match_007_035",
|
| 1417 |
+
"speech": "I think [PLAYER_2] overplayed his hand here; trying to expand while under this much pressure might be a mistake.",
|
| 1418 |
+
"speech_tag": "EVALUATION",
|
| 1419 |
+
"time": "7041~7138",
|
| 1420 |
+
"events": [
|
| 1421 |
+
{
|
| 1422 |
+
"frames": "7041~7138",
|
| 1423 |
+
"viewport": "[799,3328]->[670,3541]",
|
| 1424 |
+
"units": {
|
| 1425 |
+
"[PLAYER_1]": [
|
| 1426 |
+
"Zergling*11 [1143,3651]->[1256,3589]"
|
| 1427 |
+
],
|
| 1428 |
+
"[PLAYER_2]": [
|
| 1429 |
+
"Drone*3 [684,3869]->[652,3857]",
|
| 1430 |
+
"Hatchery*1 [1216,3632]->[1368,3538]",
|
| 1431 |
+
"Zergling*7 [862,3807]->[860,3836]"
|
| 1432 |
+
]
|
| 1433 |
+
}
|
| 1434 |
+
}
|
| 1435 |
+
]
|
| 1436 |
+
},
|
| 1437 |
+
{
|
| 1438 |
+
"seg_index": 36,
|
| 1439 |
+
"clip_path": "match_007/clip/match_007_036",
|
| 1440 |
+
"speech": "[PLAYER_2] is significantly later on his Mutalisks and appears to be falling behind in every technical and economic metric.",
|
| 1441 |
+
"speech_tag": "STATUS_REPORT",
|
| 1442 |
+
"time": "7146~7257",
|
| 1443 |
+
"events": [
|
| 1444 |
+
{
|
| 1445 |
+
"frames": "7146~7257",
|
| 1446 |
+
"viewport": "[670,3541]->[864,3392]",
|
| 1447 |
+
"units": {
|
| 1448 |
+
"[PLAYER_1]": [
|
| 1449 |
+
"Zergling*11 [1274,3551]->[1268,3463]"
|
| 1450 |
+
],
|
| 1451 |
+
"[PLAYER_2]": [
|
| 1452 |
+
"Drone*1 [1383,3537]",
|
| 1453 |
+
"Overlord*1 [650,3672]->[669,3668]",
|
| 1454 |
+
"Zergling*7 [861,3833]->[880,3816]"
|
| 1455 |
+
]
|
| 1456 |
+
}
|
| 1457 |
+
}
|
| 1458 |
+
]
|
| 1459 |
+
},
|
| 1460 |
+
{
|
| 1461 |
+
"seg_index": 37,
|
| 1462 |
+
"clip_path": "match_007/clip/match_007_037",
|
| 1463 |
+
"speech": "He actually pulled these drones to defend, but he's already sending them back to the mineral line to resume mining.",
|
| 1464 |
+
"speech_tag": "ACTION_CALL",
|
| 1465 |
+
"time": "7272~7342",
|
| 1466 |
+
"events": [
|
| 1467 |
+
{
|
| 1468 |
+
"frames": "7272~7330",
|
| 1469 |
+
"viewport": "[972,3392]->[950,3392]",
|
| 1470 |
+
"units": {
|
| 1471 |
+
"[PLAYER_1]": [
|
| 1472 |
+
"Zergling*9 [1262,3444]->[1285,3375]"
|
| 1473 |
+
]
|
| 1474 |
+
}
|
| 1475 |
+
},
|
| 1476 |
+
{
|
| 1477 |
+
"frames": "7331~7342",
|
| 1478 |
+
"viewport": "[0,3456]->[0,3584]",
|
| 1479 |
+
"units": {
|
| 1480 |
+
"[PLAYER_2]": [
|
| 1481 |
+
"Drone*12 [199,3766]->[196,3771]",
|
| 1482 |
+
"Extractor*1 [288,3584]",
|
| 1483 |
+
"Lair*1 [288,3760]",
|
| 1484 |
+
"Larva*3 [357,3773]->[355,3774]",
|
| 1485 |
+
"Overlord*1 [175,3929]",
|
| 1486 |
+
"Spawning_Pool*1 [176,3616]",
|
| 1487 |
+
"Spire*1 [256,3648]"
|
| 1488 |
+
]
|
| 1489 |
+
}
|
| 1490 |
+
}
|
| 1491 |
+
]
|
| 1492 |
+
},
|
| 1493 |
+
{
|
| 1494 |
+
"seg_index": 38,
|
| 1495 |
+
"clip_path": "match_007/clip/match_007_038",
|
| 1496 |
+
"speech": "To be honest, [PLAYER_2] is in a disastrous position right now. Looking at the situation, he is absolutely struggling to keep up.",
|
| 1497 |
+
"speech_tag": "EVALUATION",
|
| 1498 |
+
"time": "7380~7525",
|
| 1499 |
+
"events": [
|
| 1500 |
+
{
|
| 1501 |
+
"frames": "7380~7425",
|
| 1502 |
+
"viewport": "[0,3669]->[0,3605]",
|
| 1503 |
+
"units": {
|
| 1504 |
+
"[PLAYER_2]": [
|
| 1505 |
+
"Drone*12 [187,3771]->[193,3772]",
|
| 1506 |
+
"Lair*1 [288,3760]",
|
| 1507 |
+
"Larva*3 [357,3782]->[357,3777]",
|
| 1508 |
+
"Overlord*1 [175,3929]",
|
| 1509 |
+
"Spawning_Pool*1 [176,3616]",
|
| 1510 |
+
"Spire*1 [256,3648]"
|
| 1511 |
+
]
|
| 1512 |
+
}
|
| 1513 |
+
},
|
| 1514 |
+
{
|
| 1515 |
+
"frames": "7426~7504",
|
| 1516 |
+
"viewport": "[3456,64]->[3456,43]",
|
| 1517 |
+
"units": {
|
| 1518 |
+
"[PLAYER_1]": [
|
| 1519 |
+
"Drone*10 [3931,259]->[3894,262]",
|
| 1520 |
+
"Egg*2 [3746,257]",
|
| 1521 |
+
"Extractor*1 [3808,96]",
|
| 1522 |
+
"Lair*1 [3808,272]",
|
| 1523 |
+
"Overlord*2 [4034,47]->[4004,59]",
|
| 1524 |
+
"Spawning_Pool*1 [3920,128]",
|
| 1525 |
+
"Spire*1 [3744,160]"
|
| 1526 |
+
]
|
| 1527 |
+
}
|
| 1528 |
+
},
|
| 1529 |
+
{
|
| 1530 |
+
"frames": "7505~7525",
|
| 1531 |
+
"viewport": "[0,3413]",
|
| 1532 |
+
"units": {
|
| 1533 |
+
"[PLAYER_2]": [
|
| 1534 |
+
"Drone*12 [191,3755]->[191,3759]",
|
| 1535 |
+
"Egg*3 [358,3778]",
|
| 1536 |
+
"Extractor*1 [288,3584]",
|
| 1537 |
+
"Lair*1 [288,3760]",
|
| 1538 |
+
"Spawning_Pool*1 [176,3616]",
|
| 1539 |
+
"Spire*1 [256,3648]"
|
| 1540 |
+
]
|
| 1541 |
+
}
|
| 1542 |
+
}
|
| 1543 |
+
]
|
| 1544 |
+
},
|
| 1545 |
+
{
|
| 1546 |
+
"seg_index": 39,
|
| 1547 |
+
"clip_path": "match_007/clip/match_007_039",
|
| 1548 |
+
"speech": "It is interesting to note that [PLAYER_1] is following the exact same strategic progression we saw in the first game here in [MAP_NAME].",
|
| 1549 |
+
"speech_tag": "STATUS_REPORT",
|
| 1550 |
+
"time": "7525~7620",
|
| 1551 |
+
"events": [
|
| 1552 |
+
{
|
| 1553 |
+
"frames": "7525~7576",
|
| 1554 |
+
"viewport": "[0,3413]->[0,3563]",
|
| 1555 |
+
"units": {
|
| 1556 |
+
"[PLAYER_2]": [
|
| 1557 |
+
"Drone*12 [190,3759]->[179,3767]",
|
| 1558 |
+
"Egg*3 [358,3778]",
|
| 1559 |
+
"Extractor*1 [288,3584]",
|
| 1560 |
+
"Lair*1 [288,3760]",
|
| 1561 |
+
"Overlord*1 [175,3929]",
|
| 1562 |
+
"Spawning_Pool*1 [176,3616]",
|
| 1563 |
+
"Spire*1 [256,3648]"
|
| 1564 |
+
]
|
| 1565 |
+
}
|
| 1566 |
+
},
|
| 1567 |
+
{
|
| 1568 |
+
"frames": "7577~7599",
|
| 1569 |
+
"viewport": "[2635,427]->[2830,213]",
|
| 1570 |
+
"units": {
|
| 1571 |
+
"[PLAYER_1]": [
|
| 1572 |
+
"Mutalisk*3 [3200,567]->[3134,669]"
|
| 1573 |
+
]
|
| 1574 |
+
}
|
| 1575 |
+
},
|
| 1576 |
+
{
|
| 1577 |
+
"frames": "7608~7620",
|
| 1578 |
+
"viewport": "[3326,64]",
|
| 1579 |
+
"units": {
|
| 1580 |
+
"[PLAYER_1]": [
|
| 1581 |
+
"Drone*10 [3921,260]->[3914,260]",
|
| 1582 |
+
"Egg*2 [3746,257]",
|
| 1583 |
+
"Extractor*1 [3808,96]",
|
| 1584 |
+
"Lair*1 [3808,272]",
|
| 1585 |
+
"Larva*1 [3751,272]->[3749,270]",
|
| 1586 |
+
"Overlord*1 [3873,131]->[3867,137]",
|
| 1587 |
+
"Spawning_Pool*1 [3920,128]",
|
| 1588 |
+
"Spire*1 [3744,160]"
|
| 1589 |
+
]
|
| 1590 |
+
}
|
| 1591 |
+
}
|
| 1592 |
+
]
|
| 1593 |
+
},
|
| 1594 |
+
{
|
| 1595 |
+
"seg_index": 40,
|
| 1596 |
+
"clip_path": "match_007/clip/match_007_040",
|
| 1597 |
+
"speech": "It is not quite an exact replica of Game 1; instead of opting for a Scourge, [PLAYER_1] is choosing to produce a fourth Mutalisk.",
|
| 1598 |
+
"speech_tag": "ALTERNATIVES",
|
| 1599 |
+
"time": "7620~7763",
|
| 1600 |
+
"events": [
|
| 1601 |
+
{
|
| 1602 |
+
"frames": "7620~7639",
|
| 1603 |
+
"viewport": "[3326,64]->[3456,64]",
|
| 1604 |
+
"units": {
|
| 1605 |
+
"[PLAYER_1]": [
|
| 1606 |
+
"Drone*10 [3914,260]->[3914,258]",
|
| 1607 |
+
"Egg*2 [3746,257]",
|
| 1608 |
+
"Extractor*1 [3808,96]",
|
| 1609 |
+
"Lair*1 [3808,272]",
|
| 1610 |
+
"Larva*1 [3748,269]->[3739,260]",
|
| 1611 |
+
"Overlord*1 [3867,138]->[3860,152]",
|
| 1612 |
+
"Spawning_Pool*1 [3920,128]",
|
| 1613 |
+
"Spire*1 [3744,160]"
|
| 1614 |
+
]
|
| 1615 |
+
}
|
| 1616 |
+
},
|
| 1617 |
+
{
|
| 1618 |
+
"frames": "7640~7671",
|
| 1619 |
+
"viewport": "[3089,171]->[3154,171]",
|
| 1620 |
+
"units": {
|
| 1621 |
+
"[PLAYER_1]": [
|
| 1622 |
+
"Drone*2 [3840,181]->[3840,191]",
|
| 1623 |
+
"Egg*3 [3743,257]",
|
| 1624 |
+
"Lair*1 [3808,272]",
|
| 1625 |
+
"Mutalisk*3 [3350,596]->[3510,462]",
|
| 1626 |
+
"Overlord*1 [3849,169]->[3844,172]",
|
| 1627 |
+
"Spire*1 [3744,160]"
|
| 1628 |
+
]
|
| 1629 |
+
}
|
| 1630 |
+
},
|
| 1631 |
+
{
|
| 1632 |
+
"frames": "7672~7750",
|
| 1633 |
+
"viewport": "[3391,171]->[3456,85]",
|
| 1634 |
+
"units": {
|
| 1635 |
+
"[PLAYER_1]": [
|
| 1636 |
+
"Drone*10 [3912,258]->[3929,260]",
|
| 1637 |
+
"Egg*3 [3743,257]->[3733,262]",
|
| 1638 |
+
"Extractor*1 [3808,96]",
|
| 1639 |
+
"Lair*1 [3808,272]",
|
| 1640 |
+
"Mutalisk*3 [3513,456]->[3570,541]",
|
| 1641 |
+
"Overlord*1 [3843,172]->[3824,227]",
|
| 1642 |
+
"Spawning_Pool*1 [3920,128]",
|
| 1643 |
+
"Spire*1 [3744,160]"
|
| 1644 |
+
]
|
| 1645 |
+
}
|
| 1646 |
+
},
|
| 1647 |
+
{
|
| 1648 |
+
"frames": "7751~7758",
|
| 1649 |
+
"viewport": "[2938,491]",
|
| 1650 |
+
"units": {
|
| 1651 |
+
"[PLAYER_1]": [
|
| 1652 |
+
"Mutalisk*3 [3593,706]->[3599,753]"
|
| 1653 |
+
]
|
| 1654 |
+
}
|
| 1655 |
+
},
|
| 1656 |
+
{
|
| 1657 |
+
"frames": "7759~7763",
|
| 1658 |
+
"viewport": "[3132,320]",
|
| 1659 |
+
"units": {
|
| 1660 |
+
"[PLAYER_1]": [
|
| 1661 |
+
"Mutalisk*3 [3600,760]->[3602,776]"
|
| 1662 |
+
]
|
| 1663 |
+
}
|
| 1664 |
+
}
|
| 1665 |
+
]
|
| 1666 |
+
},
|
| 1667 |
+
{
|
| 1668 |
+
"seg_index": 41,
|
| 1669 |
+
"clip_path": "match_007/clip/match_007_041",
|
| 1670 |
+
"speech": "Not quite where he needs to be, but that's actually a very well-split group of units by [PLAYER_1].",
|
| 1671 |
+
"speech_tag": "EVALUATION",
|
| 1672 |
+
"time": "7763~7882",
|
| 1673 |
+
"events": [
|
| 1674 |
+
{
|
| 1675 |
+
"frames": "7767~7774",
|
| 1676 |
+
"viewport": "[3154,277]",
|
| 1677 |
+
"units": {
|
| 1678 |
+
"[PLAYER_1]": [
|
| 1679 |
+
"Egg*2 [3744,260]",
|
| 1680 |
+
"Lair*1 [3808,272]",
|
| 1681 |
+
"Mutalisk*1 [3711,292]->[3710,325]"
|
| 1682 |
+
]
|
| 1683 |
+
}
|
| 1684 |
+
},
|
| 1685 |
+
{
|
| 1686 |
+
"frames": "7775~7882",
|
| 1687 |
+
"viewport": "[3391,85]",
|
| 1688 |
+
"units": {
|
| 1689 |
+
"[PLAYER_1]": [
|
| 1690 |
+
"Drone*10 [3917,261]->[3893,263]",
|
| 1691 |
+
"Egg*2 [3744,260]",
|
| 1692 |
+
"Extractor*1 [3808,96]",
|
| 1693 |
+
"Lair*1 [3808,272]",
|
| 1694 |
+
"Mutalisk*1 [3710,331]->[3713,543]",
|
| 1695 |
+
"Overlord*1 [3824,248]->[3821,336]",
|
| 1696 |
+
"Spawning_Pool*1 [3920,128]",
|
| 1697 |
+
"Spire*1 [3744,160]"
|
| 1698 |
+
]
|
| 1699 |
+
}
|
| 1700 |
+
}
|
| 1701 |
+
]
|
| 1702 |
+
},
|
| 1703 |
+
{
|
| 1704 |
+
"seg_index": 42,
|
| 1705 |
+
"clip_path": "match_007/clip/match_007_042",
|
| 1706 |
+
"speech": "I can't believe you remembered his build from the first game in so much detail, man!",
|
| 1707 |
+
"speech_tag": "CAST_BANTER",
|
| 1708 |
+
"time": "7882~8025",
|
| 1709 |
+
"events": [
|
| 1710 |
+
{
|
| 1711 |
+
"frames": "7882~7909",
|
| 1712 |
+
"viewport": "[3391,85]->[3391,277]",
|
| 1713 |
+
"units": {
|
| 1714 |
+
"[PLAYER_1]": [
|
| 1715 |
+
"Drone*10 [3894,263]->[3921,260]",
|
| 1716 |
+
"Egg*2 [3744,260]",
|
| 1717 |
+
"Extractor*1 [3808,96]",
|
| 1718 |
+
"Lair*1 [3808,272]",
|
| 1719 |
+
"Overlord*1 [3821,337]->[3821,359]",
|
| 1720 |
+
"Spawning_Pool*1 [3920,128]",
|
| 1721 |
+
"Spire*1 [3744,160]"
|
| 1722 |
+
]
|
| 1723 |
+
}
|
| 1724 |
+
},
|
| 1725 |
+
{
|
| 1726 |
+
"frames": "7934~7948",
|
| 1727 |
+
"viewport": "[3391,939]->[3391,1003]",
|
| 1728 |
+
"units": {
|
| 1729 |
+
"[PLAYER_1]": [
|
| 1730 |
+
"Mutalisk*1 [3733,1390]->[3735,1457]"
|
| 1731 |
+
]
|
| 1732 |
+
}
|
| 1733 |
+
},
|
| 1734 |
+
{
|
| 1735 |
+
"frames": "7949~7972",
|
| 1736 |
+
"viewport": "[3391,1237]",
|
| 1737 |
+
"units": {
|
| 1738 |
+
"[PLAYER_1]": [
|
| 1739 |
+
"Mutalisk*1 [3736,1490]->[3739,1643]"
|
| 1740 |
+
]
|
| 1741 |
+
}
|
| 1742 |
+
},
|
| 1743 |
+
{
|
| 1744 |
+
"frames": "7973~7996",
|
| 1745 |
+
"viewport": "[540,3605]->[410,3605]",
|
| 1746 |
+
"units": {
|
| 1747 |
+
"[PLAYER_2]": [
|
| 1748 |
+
"Overlord*1 [919,3765]",
|
| 1749 |
+
"Zergling*7 [875,3816]"
|
| 1750 |
+
]
|
| 1751 |
+
}
|
| 1752 |
+
},
|
| 1753 |
+
{
|
| 1754 |
+
"frames": "7997~8025",
|
| 1755 |
+
"viewport": "[0,3605]",
|
| 1756 |
+
"units": {
|
| 1757 |
+
"[PLAYER_2]": [
|
| 1758 |
+
"Drone*12 [187,3751]->[193,3744]",
|
| 1759 |
+
"Egg*4 [355,3771]",
|
| 1760 |
+
"Lair*1 [288,3760]",
|
| 1761 |
+
"Overlord*1 [175,3929]",
|
| 1762 |
+
"Spawning_Pool*1 [176,3616]",
|
| 1763 |
+
"Spire*1 [256,3648]"
|
| 1764 |
+
]
|
| 1765 |
+
}
|
| 1766 |
+
}
|
| 1767 |
+
]
|
| 1768 |
+
},
|
| 1769 |
+
{
|
| 1770 |
+
"seg_index": 43,
|
| 1771 |
+
"clip_path": "match_007/clip/match_007_043",
|
| 1772 |
+
"speech": "Are you sure you aren't secretly a pro-house Zerg player in disguise with all this insight you're dropping?",
|
| 1773 |
+
"speech_tag": "CAST_BANTER",
|
| 1774 |
+
"time": "8025~8117",
|
| 1775 |
+
"events": [
|
| 1776 |
+
{
|
| 1777 |
+
"frames": "8025~8075",
|
| 1778 |
+
"viewport": "[0,3605]",
|
| 1779 |
+
"units": {
|
| 1780 |
+
"[PLAYER_2]": [
|
| 1781 |
+
"Drone*12 [193,3744]->[185,3755]",
|
| 1782 |
+
"Egg*4 [355,3771]->[389,3795]",
|
| 1783 |
+
"Lair*1 [288,3760]",
|
| 1784 |
+
"Overlord*1 [175,3929]",
|
| 1785 |
+
"Spawning_Pool*1 [176,3616]",
|
| 1786 |
+
"Spire*1 [256,3648]"
|
| 1787 |
+
]
|
| 1788 |
+
}
|
| 1789 |
+
},
|
| 1790 |
+
{
|
| 1791 |
+
"frames": "8076~8107",
|
| 1792 |
+
"viewport": "[367,3605]->[540,3605]",
|
| 1793 |
+
"units": {
|
| 1794 |
+
"[PLAYER_2]": [
|
| 1795 |
+
"Egg*1 [347,3751]",
|
| 1796 |
+
"Larva*1 [347,3760]",
|
| 1797 |
+
"Mutalisk*3 [404,3813]->[529,3737]",
|
| 1798 |
+
"Overlord*1 [919,3765]",
|
| 1799 |
+
"Zergling*7 [875,3816]"
|
| 1800 |
+
]
|
| 1801 |
+
}
|
| 1802 |
+
},
|
| 1803 |
+
{
|
| 1804 |
+
"frames": "8108~8117",
|
| 1805 |
+
"viewport": "[3456,2261]",
|
| 1806 |
+
"units": {
|
| 1807 |
+
"[PLAYER_1]": [
|
| 1808 |
+
"Mutalisk*1 [3761,2550]->[3770,2609]"
|
| 1809 |
+
]
|
| 1810 |
+
}
|
| 1811 |
+
}
|
| 1812 |
+
]
|
| 1813 |
+
},
|
| 1814 |
+
{
|
| 1815 |
+
"seg_index": 44,
|
| 1816 |
+
"clip_path": "match_007/clip/match_007_044",
|
| 1817 |
+
"speech": "I mean, that is exactly what a Zerg would say. It's like you instinctively know whether [PLAYER_2] is building Mutalisks or Scourge. Honestly, what is wrong with you?",
|
| 1818 |
+
"speech_tag": "CAST_BANTER",
|
| 1819 |
+
"time": "8122~8259",
|
| 1820 |
+
"events": [
|
| 1821 |
+
{
|
| 1822 |
+
"frames": "8122~8147",
|
| 1823 |
+
"viewport": "[3456,2261]->[3456,2325]",
|
| 1824 |
+
"units": {
|
| 1825 |
+
"[PLAYER_1]": [
|
| 1826 |
+
"Mutalisk*1 [3775,2642]->[3796,2781]"
|
| 1827 |
+
]
|
| 1828 |
+
}
|
| 1829 |
+
},
|
| 1830 |
+
{
|
| 1831 |
+
"frames": "8148~8234",
|
| 1832 |
+
"viewport": "[3456,2603]->[3456,3051]",
|
| 1833 |
+
"units": {
|
| 1834 |
+
"[PLAYER_1]": [
|
| 1835 |
+
"Mutalisk*1 [3801,2814]->[3885,3380]",
|
| 1836 |
+
"Overlord*1 [3564,3491]->[3562,3479]"
|
| 1837 |
+
]
|
| 1838 |
+
}
|
| 1839 |
+
},
|
| 1840 |
+
{
|
| 1841 |
+
"frames": "8235~8259",
|
| 1842 |
+
"viewport": "[3262,3285]->[3456,3285]",
|
| 1843 |
+
"units": {
|
| 1844 |
+
"[PLAYER_1]": [
|
| 1845 |
+
"Mutalisk*1 [3886,3387]->[3914,3544]",
|
| 1846 |
+
"Overlord*1 [3562,3478]->[3560,3458]"
|
| 1847 |
+
]
|
| 1848 |
+
}
|
| 1849 |
+
}
|
| 1850 |
+
]
|
| 1851 |
+
},
|
| 1852 |
+
{
|
| 1853 |
+
"seg_index": 45,
|
| 1854 |
+
"clip_path": "match_007/clip/match_007_045",
|
| 1855 |
+
"speech": "[PLAYER_1] is committing to pure Mutalisks this time around. I'm not sure if I agree with that decision, especially considering how effective those Scourge were in the first game.",
|
| 1856 |
+
"speech_tag": "EVALUATION",
|
| 1857 |
+
"time": "8315~8512",
|
| 1858 |
+
"events": [
|
| 1859 |
+
{
|
| 1860 |
+
"frames": "8315~8512",
|
| 1861 |
+
"viewport": "[3456,3712]",
|
| 1862 |
+
"units": {
|
| 1863 |
+
"[PLAYER_1]": [
|
| 1864 |
+
"Mutalisk*4 [3997,3960]->[3984,3693]"
|
| 1865 |
+
],
|
| 1866 |
+
"[PLAYER_2]": [
|
| 1867 |
+
"Overlord*1 [4071,4039]"
|
| 1868 |
+
]
|
| 1869 |
+
}
|
| 1870 |
+
}
|
| 1871 |
+
]
|
| 1872 |
+
},
|
| 1873 |
+
{
|
| 1874 |
+
"seg_index": 46,
|
| 1875 |
+
"clip_path": "match_007/clip/match_007_046",
|
| 1876 |
+
"speech": "Snipping that early Overlord was one of the key reasons he won the previous game, and [PLAYER_1] is looking to replicate that success here.",
|
| 1877 |
+
"speech_tag": "CAUSAL_EXPLAIN",
|
| 1878 |
+
"time": "8517~8713",
|
| 1879 |
+
"events": []
|
| 1880 |
+
},
|
| 1881 |
+
{
|
| 1882 |
+
"seg_index": 47,
|
| 1883 |
+
"clip_path": "match_007/clip/match_007_047",
|
| 1884 |
+
"speech": "It looks like [PLAYER_2] lost an Overlord in the bottom right, but [PLAYER_1] is now at risk of losing all his Drones in response!",
|
| 1885 |
+
"speech_tag": "ACTION_CALL",
|
| 1886 |
+
"time": "8604~8772",
|
| 1887 |
+
"events": [
|
| 1888 |
+
{
|
| 1889 |
+
"frames": "8640~8662",
|
| 1890 |
+
"viewport": "[2419,1493]",
|
| 1891 |
+
"units": {
|
| 1892 |
+
"[PLAYER_1]": [
|
| 1893 |
+
"Zergling*8 [2434,1512]"
|
| 1894 |
+
]
|
| 1895 |
+
}
|
| 1896 |
+
},
|
| 1897 |
+
{
|
| 1898 |
+
"frames": "8663~8702",
|
| 1899 |
+
"viewport": "[3456,85]",
|
| 1900 |
+
"units": {
|
| 1901 |
+
"[PLAYER_1]": [
|
| 1902 |
+
"Drone*10 [3919,259]->[3901,258]",
|
| 1903 |
+
"Egg*2 [3744,267]",
|
| 1904 |
+
"Extractor*1 [3808,96]",
|
| 1905 |
+
"Lair*1 [3808,272]",
|
| 1906 |
+
"Mutalisk*1 [3753,409]->[3617,302]",
|
| 1907 |
+
"Spawning_Pool*1 [3920,128]",
|
| 1908 |
+
"Spire*1 [3744,160]"
|
| 1909 |
+
]
|
| 1910 |
+
}
|
| 1911 |
+
},
|
| 1912 |
+
{
|
| 1913 |
+
"frames": "8727~8742",
|
| 1914 |
+
"viewport": "[3456,2709]->[3456,2645]",
|
| 1915 |
+
"units": {
|
| 1916 |
+
"[PLAYER_1]": [
|
| 1917 |
+
"Overlord*1 [3512,3071]->[3511,3058]"
|
| 1918 |
+
]
|
| 1919 |
+
}
|
| 1920 |
+
}
|
| 1921 |
+
]
|
| 1922 |
+
},
|
| 1923 |
+
{
|
| 1924 |
+
"seg_index": 48,
|
| 1925 |
+
"clip_path": "match_007/clip/match_007_048",
|
| 1926 |
+
"speech": "No, you've got to go in! [PLAYER_2] missed his window of opportunity, and now [PLAYER_1]'s Mutalisks are back in position to defend.",
|
| 1927 |
+
"speech_tag": "EVALUATION",
|
| 1928 |
+
"time": "8851~8949",
|
| 1929 |
+
"events": [
|
| 1930 |
+
{
|
| 1931 |
+
"frames": "8851~8877",
|
| 1932 |
+
"viewport": "[3456,533]->[3283,661]",
|
| 1933 |
+
"units": {
|
| 1934 |
+
"[PLAYER_1]": [
|
| 1935 |
+
"Mutalisk*1 [3748,514]->[3736,520]",
|
| 1936 |
+
"Overlord*1 [3743,816]->[3721,820]"
|
| 1937 |
+
]
|
| 1938 |
+
}
|
| 1939 |
+
},
|
| 1940 |
+
{
|
| 1941 |
+
"frames": "8878~8908",
|
| 1942 |
+
"viewport": "[3046,661]->[3413,661]",
|
| 1943 |
+
"units": {
|
| 1944 |
+
"[PLAYER_1]": [
|
| 1945 |
+
"Mutalisk*1 [3425,641]->[3394,653]",
|
| 1946 |
+
"Overlord*1 [3721,820]->[3696,824]"
|
| 1947 |
+
]
|
| 1948 |
+
}
|
| 1949 |
+
},
|
| 1950 |
+
{
|
| 1951 |
+
"frames": "8941~8948",
|
| 1952 |
+
"viewport": "[3154,1109]",
|
| 1953 |
+
"units": {
|
| 1954 |
+
"[PLAYER_1]": [
|
| 1955 |
+
"Mutalisk*2 [3160,1215]->[3134,1207]"
|
| 1956 |
+
]
|
| 1957 |
+
}
|
| 1958 |
+
}
|
| 1959 |
+
]
|
| 1960 |
+
},
|
| 1961 |
+
{
|
| 1962 |
+
"seg_index": 49,
|
| 1963 |
+
"clip_path": "match_007/clip/match_007_049",
|
| 1964 |
+
"speech": "If [PLAYER_2] had transitioned into Scourge there, his Mutalisks likely would have taken excessive damage in the trade.",
|
| 1965 |
+
"speech_tag": "ALTERNATIVES",
|
| 1966 |
+
"time": "8949~9088",
|
| 1967 |
+
"events": [
|
| 1968 |
+
{
|
| 1969 |
+
"frames": "8949~9043",
|
| 1970 |
+
"viewport": "[2398,747]->[1966,853]",
|
| 1971 |
+
"units": {
|
| 1972 |
+
"[PLAYER_1]": [
|
| 1973 |
+
"Mutalisk*7 [3079,993]->[2691,1088]",
|
| 1974 |
+
"Overlord*1 [2702,992]"
|
| 1975 |
+
]
|
| 1976 |
+
}
|
| 1977 |
+
}
|
| 1978 |
+
]
|
| 1979 |
+
},
|
| 1980 |
+
{
|
| 1981 |
+
"seg_index": 50,
|
| 1982 |
+
"clip_path": "match_007/clip/match_007_050",
|
| 1983 |
+
"speech": "I think [PLAYER_2] could have traded those Mutalisks to potentially wipe out [PLAYER_1]'s entire drone line, but he chose to play it safer instead.",
|
| 1984 |
+
"speech_tag": "ALTERNATIVES",
|
| 1985 |
+
"time": "9098~9211",
|
| 1986 |
+
"events": [
|
| 1987 |
+
{
|
| 1988 |
+
"frames": "9116~9202",
|
| 1989 |
+
"viewport": "[3370,21]->[3456,85]",
|
| 1990 |
+
"units": {
|
| 1991 |
+
"[PLAYER_1]": [
|
| 1992 |
+
"Drone*10 [3915,258]->[3904,253]",
|
| 1993 |
+
"Egg*1 [3751,262]",
|
| 1994 |
+
"Extractor*1 [3808,96]",
|
| 1995 |
+
"Lair*1 [3808,272]",
|
| 1996 |
+
"Overlord*1 [4064,34]",
|
| 1997 |
+
"Scourge*2 [3743,226]->[3462,540]",
|
| 1998 |
+
"Spawning_Pool*1 [3920,128]",
|
| 1999 |
+
"Spire*1 [3744,160]"
|
| 2000 |
+
]
|
| 2001 |
+
}
|
| 2002 |
+
},
|
| 2003 |
+
{
|
| 2004 |
+
"frames": "9203~9211",
|
| 2005 |
+
"viewport": "[346,3563]",
|
| 2006 |
+
"units": {
|
| 2007 |
+
"[PLAYER_2]": [
|
| 2008 |
+
"Egg*2 [349,3760]",
|
| 2009 |
+
"Larva*1 [347,3758]->[356,3750]",
|
| 2010 |
+
"Mutalisk*1 [958,3605]",
|
| 2011 |
+
"Overlord*1 [919,3765]",
|
| 2012 |
+
"Zergling*7 [875,3816]"
|
| 2013 |
+
]
|
| 2014 |
+
}
|
| 2015 |
+
}
|
| 2016 |
+
]
|
| 2017 |
+
},
|
| 2018 |
+
{
|
| 2019 |
+
"seg_index": 51,
|
| 2020 |
+
"clip_path": "match_007/clip/match_007_051",
|
| 2021 |
+
"speech": "However, attempting that trade might have left him too vulnerable. It's worth noting that just three Mutalisks take a significant amount of time to actually clean out a mineral line of Drones.",
|
| 2022 |
+
"speech_tag": "ALTERNATIVES",
|
| 2023 |
+
"time": "9224~9342",
|
| 2024 |
+
"events": [
|
| 2025 |
+
{
|
| 2026 |
+
"frames": "9224~9289",
|
| 2027 |
+
"viewport": "[22,3563]->[0,3584]",
|
| 2028 |
+
"units": {
|
| 2029 |
+
"[PLAYER_2]": [
|
| 2030 |
+
"Drone*11 [188,3738]->[186,3748]",
|
| 2031 |
+
"Egg*2 [349,3760]->[362,3738]",
|
| 2032 |
+
"Extractor*1 [288,3584]",
|
| 2033 |
+
"Lair*1 [288,3760]",
|
| 2034 |
+
"Larva*1 [365,3758]->[356,3750]",
|
| 2035 |
+
"Spawning_Pool*1 [176,3616]",
|
| 2036 |
+
"Spire*1 [256,3648]"
|
| 2037 |
+
]
|
| 2038 |
+
}
|
| 2039 |
+
},
|
| 2040 |
+
{
|
| 2041 |
+
"frames": "9290~9342",
|
| 2042 |
+
"viewport": "[302,3563]->[864,3435]",
|
| 2043 |
+
"units": {
|
| 2044 |
+
"[PLAYER_2]": [
|
| 2045 |
+
"Drone*3 [302,3655]->[298,3653]",
|
| 2046 |
+
"Egg*1 [351,3754]",
|
| 2047 |
+
"Extractor*1 [288,3584]",
|
| 2048 |
+
"Hatchery*1 [1216,3632]",
|
| 2049 |
+
"Lair*1 [288,3760]",
|
| 2050 |
+
"Larva*1 [357,3749]->[366,3740]",
|
| 2051 |
+
"Mutalisk*2 [1140,3728]->[1047,3587]",
|
| 2052 |
+
"Overlord*3 [715,3672]->[724,3673]",
|
| 2053 |
+
"Zergling*7 [875,3816]"
|
| 2054 |
+
]
|
| 2055 |
+
}
|
| 2056 |
+
}
|
| 2057 |
+
]
|
| 2058 |
+
},
|
| 2059 |
+
{
|
| 2060 |
+
"seg_index": 52,
|
| 2061 |
+
"clip_path": "match_007/clip/match_007_052",
|
| 2062 |
+
"speech": "I mean, with only three Mutalisks, don't they have to two-shot the Drones? That really limits how much damage they can do quickly.",
|
| 2063 |
+
"speech_tag": "STATUS_REPORT",
|
| 2064 |
+
"time": "9346~9429",
|
| 2065 |
+
"events": [
|
| 2066 |
+
{
|
| 2067 |
+
"frames": "9346~9369",
|
| 2068 |
+
"viewport": "[1080,2560]->[1058,2560]",
|
| 2069 |
+
"units": {
|
| 2070 |
+
"[PLAYER_1]": [
|
| 2071 |
+
"Zergling*7 [1760,2831]->[1768,2844]"
|
| 2072 |
+
]
|
| 2073 |
+
}
|
| 2074 |
+
},
|
| 2075 |
+
{
|
| 2076 |
+
"frames": "9370~9429",
|
| 2077 |
+
"viewport": "[842,2837]->[1123,3029]",
|
| 2078 |
+
"units": {
|
| 2079 |
+
"[PLAYER_1]": [
|
| 2080 |
+
"Zergling*1 [1797,3031]"
|
| 2081 |
+
],
|
| 2082 |
+
"[PLAYER_2]": [
|
| 2083 |
+
"Mutalisk*5 [1119,3314]->[1109,3463]"
|
| 2084 |
+
]
|
| 2085 |
+
}
|
| 2086 |
+
}
|
| 2087 |
+
]
|
| 2088 |
+
},
|
| 2089 |
+
{
|
| 2090 |
+
"seg_index": 53,
|
| 2091 |
+
"clip_path": "match_007/clip/match_007_053",
|
| 2092 |
+
"speech": "That's a valid point. [PLAYER_2] is building up a significant flock of Mutalisks, which should be able to two-shot Drones with that kind of count.",
|
| 2093 |
+
"speech_tag": "STATUS_REPORT",
|
| 2094 |
+
"time": "9440~9589",
|
| 2095 |
+
"events": [
|
| 2096 |
+
{
|
| 2097 |
+
"frames": "9440~9480",
|
| 2098 |
+
"viewport": "[1123,3029]->[1123,2901]",
|
| 2099 |
+
"units": {
|
| 2100 |
+
"[PLAYER_1]": [
|
| 2101 |
+
"Mutalisk*1 [1802,2886]",
|
| 2102 |
+
"Zergling*3 [1808,3007]"
|
| 2103 |
+
]
|
| 2104 |
+
}
|
| 2105 |
+
},
|
| 2106 |
+
{
|
| 2107 |
+
"frames": "9481~9503",
|
| 2108 |
+
"viewport": "[1706,1941]->[1706,2261]",
|
| 2109 |
+
"units": {
|
| 2110 |
+
"[PLAYER_1]": [
|
| 2111 |
+
"Scourge*2 [2265,2136]->[2189,2264]"
|
| 2112 |
+
]
|
| 2113 |
+
}
|
| 2114 |
+
},
|
| 2115 |
+
{
|
| 2116 |
+
"frames": "9504~9527",
|
| 2117 |
+
"viewport": "[1706,2581]->[1512,2752]",
|
| 2118 |
+
"units": {
|
| 2119 |
+
"[PLAYER_1]": [
|
| 2120 |
+
"Mutalisk*8 [1780,2996]->[1764,3029]",
|
| 2121 |
+
"Zergling*11 [1851,3041]"
|
| 2122 |
+
]
|
| 2123 |
+
}
|
| 2124 |
+
},
|
| 2125 |
+
{
|
| 2126 |
+
"frames": "9528~9589",
|
| 2127 |
+
"viewport": "[1685,2325]->[1361,2709]",
|
| 2128 |
+
"units": {
|
| 2129 |
+
"[PLAYER_1]": [
|
| 2130 |
+
"Mutalisk*8 [1599,2995]->[1509,3036]",
|
| 2131 |
+
"Scourge*2 [2099,2406]->[1821,2679]",
|
| 2132 |
+
"Zergling*11 [1780,3041]->[1710,3040]"
|
| 2133 |
+
]
|
| 2134 |
+
}
|
| 2135 |
+
}
|
| 2136 |
+
]
|
| 2137 |
+
},
|
| 2138 |
+
{
|
| 2139 |
+
"seg_index": 54,
|
| 2140 |
+
"clip_path": "match_007/clip/match_007_054",
|
| 2141 |
+
"speech": "He is attempting to expand once more, but it feels like he is overextending his hand again.",
|
| 2142 |
+
"speech_tag": "EVALUATION",
|
| 2143 |
+
"time": "9597~9654",
|
| 2144 |
+
"events": [
|
| 2145 |
+
{
|
| 2146 |
+
"frames": "9597~9654",
|
| 2147 |
+
"viewport": "[1361,2709]->[1447,2816]",
|
| 2148 |
+
"units": {
|
| 2149 |
+
"[PLAYER_1]": [
|
| 2150 |
+
"Mutalisk*8 [1462,3064]->[1429,3083]",
|
| 2151 |
+
"Scourge*2 [1765,2728]->[1505,3006]",
|
| 2152 |
+
"Zergling*11 [1665,3040]->[1457,3118]"
|
| 2153 |
+
]
|
| 2154 |
+
}
|
| 2155 |
+
}
|
| 2156 |
+
]
|
| 2157 |
+
},
|
| 2158 |
+
{
|
| 2159 |
+
"seg_index": 55,
|
| 2160 |
+
"clip_path": "match_007/clip/match_007_055",
|
| 2161 |
+
"speech": "[PLAYER_1] is lacking Scourge to support his Mutalisks right now. He simply doesn't have the army composition needed to secure this lead.",
|
| 2162 |
+
"speech_tag": "STATUS_REPORT",
|
| 2163 |
+
"time": "9656~9776",
|
| 2164 |
+
"events": [
|
| 2165 |
+
{
|
| 2166 |
+
"frames": "9656~9686",
|
| 2167 |
+
"viewport": "[1447,2816]->[1382,2816]",
|
| 2168 |
+
"units": {
|
| 2169 |
+
"[PLAYER_1]": [
|
| 2170 |
+
"Scourge*2 [1498,3018]->[1397,3194]",
|
| 2171 |
+
"Zergling*10 [1449,3133]->[1384,3195]"
|
| 2172 |
+
]
|
| 2173 |
+
}
|
| 2174 |
+
},
|
| 2175 |
+
{
|
| 2176 |
+
"frames": "9687~9776",
|
| 2177 |
+
"viewport": "[626,3349]->[799,3179]",
|
| 2178 |
+
"units": {
|
| 2179 |
+
"[PLAYER_1]": [
|
| 2180 |
+
"Mutalisk*8 [1232,3426]->[1317,3568]",
|
| 2181 |
+
"Scourge*2 [1322,3401]->[1330,3555]",
|
| 2182 |
+
"Zergling*11 [1281,3309]->[1235,3520]"
|
| 2183 |
+
],
|
| 2184 |
+
"[PLAYER_2]": [
|
| 2185 |
+
"Hatchery*1 [1216,3632]",
|
| 2186 |
+
"Mutalisk*5 [953,3377]->[1018,3545]",
|
| 2187 |
+
"Overlord*3 [926,3674]->[974,3675]",
|
| 2188 |
+
"Zergling*2 [844,3793]"
|
| 2189 |
+
]
|
| 2190 |
+
}
|
| 2191 |
+
}
|
| 2192 |
+
]
|
| 2193 |
+
},
|
| 2194 |
+
{
|
| 2195 |
+
"seg_index": 56,
|
| 2196 |
+
"clip_path": "match_007/clip/match_007_056",
|
| 2197 |
+
"speech": "And here come those two Scourge in pursuit. If they connect, they will certainly take down those Mutalisks.",
|
| 2198 |
+
"speech_tag": "PREDICTION",
|
| 2199 |
+
"time": "9796~9925",
|
| 2200 |
+
"events": [
|
| 2201 |
+
{
|
| 2202 |
+
"frames": "9796~9925",
|
| 2203 |
+
"viewport": "[907,3072]->[799,3371]",
|
| 2204 |
+
"units": {
|
| 2205 |
+
"[PLAYER_1]": [
|
| 2206 |
+
"Mutalisk*8 [1106,3559]->[831,3378]",
|
| 2207 |
+
"Scourge*1 [1144,3544]->[845,3524]",
|
| 2208 |
+
"Zergling*10 [1239,3554]->[1206,3574]"
|
| 2209 |
+
],
|
| 2210 |
+
"[PLAYER_2]": [
|
| 2211 |
+
"Hatchery*1 [1216,3632]",
|
| 2212 |
+
"Mutalisk*5 [1034,3569]->[795,3381]",
|
| 2213 |
+
"Overlord*3 [1001,3676]->[1057,3677]",
|
| 2214 |
+
"Zergling*5 [866,3812]"
|
| 2215 |
+
]
|
| 2216 |
+
}
|
| 2217 |
+
}
|
| 2218 |
+
]
|
| 2219 |
+
},
|
| 2220 |
+
{
|
| 2221 |
+
"seg_index": 57,
|
| 2222 |
+
"clip_path": "match_007/clip/match_007_057",
|
| 2223 |
+
"speech": "Actually, one Scourge already connected. [PLAYER_2] is in a lot of trouble here as their Mutalisk count takes a heavy hit.",
|
| 2224 |
+
"speech_tag": "EVALUATION",
|
| 2225 |
+
"time": "9944~10106",
|
| 2226 |
+
"events": [
|
| 2227 |
+
{
|
| 2228 |
+
"frames": "9944~10083",
|
| 2229 |
+
"viewport": "[799,3392]->[367,3072]",
|
| 2230 |
+
"units": {
|
| 2231 |
+
"[PLAYER_1]": [
|
| 2232 |
+
"Zergling*10 [1206,3575]->[1188,3570]"
|
| 2233 |
+
],
|
| 2234 |
+
"[PLAYER_2]": [
|
| 2235 |
+
"Overlord*4 [986,3677]->[1039,3672]",
|
| 2236 |
+
"Zergling*6 [874,3817]"
|
| 2237 |
+
]
|
| 2238 |
+
}
|
| 2239 |
+
}
|
| 2240 |
+
]
|
| 2241 |
+
},
|
| 2242 |
+
{
|
| 2243 |
+
"seg_index": 58,
|
| 2244 |
+
"clip_path": "match_007/clip/match_007_058",
|
| 2245 |
+
"speech": "Unfortunately, [PLAYER_2] doesn't have five control groups of Mutalisks this time, only two or three, and they are falling quickly under the pressure.",
|
| 2246 |
+
"speech_tag": "ACTION_CALL",
|
| 2247 |
+
"time": "10106~10297",
|
| 2248 |
+
"events": [
|
| 2249 |
+
{
|
| 2250 |
+
"frames": "10258~10273",
|
| 2251 |
+
"viewport": "[1145,1941]",
|
| 2252 |
+
"units": {
|
| 2253 |
+
"[PLAYER_1]": [
|
| 2254 |
+
"Mutalisk*8 [1457,1924]->[1420,2013]"
|
| 2255 |
+
]
|
| 2256 |
+
}
|
| 2257 |
+
},
|
| 2258 |
+
{
|
| 2259 |
+
"frames": "10274~10297",
|
| 2260 |
+
"viewport": "[670,3456]->[670,3413]",
|
| 2261 |
+
"units": {
|
| 2262 |
+
"[PLAYER_1]": [
|
| 2263 |
+
"Zergling*10 [1144,3569]->[1065,3619]"
|
| 2264 |
+
],
|
| 2265 |
+
"[PLAYER_2]": [
|
| 2266 |
+
"Overlord*3 [987,3683]->[988,3685]",
|
| 2267 |
+
"Zergling*6 [874,3817]"
|
| 2268 |
+
]
|
| 2269 |
+
}
|
| 2270 |
+
}
|
| 2271 |
+
]
|
| 2272 |
+
},
|
| 2273 |
+
{
|
| 2274 |
+
"seg_index": 59,
|
| 2275 |
+
"clip_path": "match_007/clip/match_007_059",
|
| 2276 |
+
"speech": "He's probably wishing he could have saved some of those Mutalisks from the previous game. It would be quite a feature if you could just take a snapshot of your army and carry ten random units over to the next match!",
|
| 2277 |
+
"speech_tag": "CAST_BANTER",
|
| 2278 |
+
"time": "10297~10630",
|
| 2279 |
+
"events": [
|
| 2280 |
+
{
|
| 2281 |
+
"frames": "10297~10424",
|
| 2282 |
+
"viewport": "[670,3413]->[799,3413]",
|
| 2283 |
+
"units": {
|
| 2284 |
+
"[PLAYER_1]": [
|
| 2285 |
+
"Zergling*10 [1062,3620]->[1073,3554]"
|
| 2286 |
+
],
|
| 2287 |
+
"[PLAYER_2]": [
|
| 2288 |
+
"Overlord*3 [988,3685]",
|
| 2289 |
+
"Zergling*6 [874,3817]"
|
| 2290 |
+
]
|
| 2291 |
+
}
|
| 2292 |
+
},
|
| 2293 |
+
{
|
| 2294 |
+
"frames": "10425~10551",
|
| 2295 |
+
"viewport": "[605,3605]->[626,3477]",
|
| 2296 |
+
"units": {
|
| 2297 |
+
"[PLAYER_1]": [
|
| 2298 |
+
"Mutalisk*8 [1013,3536]->[977,3776]",
|
| 2299 |
+
"Zergling*10 [1073,3595]->[1120,3708]"
|
| 2300 |
+
],
|
| 2301 |
+
"[PLAYER_2]": [
|
| 2302 |
+
"Overlord*3 [988,3685]->[989,3688]",
|
| 2303 |
+
"Zergling*6 [874,3817]"
|
| 2304 |
+
]
|
| 2305 |
+
}
|
| 2306 |
+
},
|
| 2307 |
+
{
|
| 2308 |
+
"frames": "10552~10622",
|
| 2309 |
+
"viewport": "[2678,747]->[3046,533]",
|
| 2310 |
+
"units": {
|
| 2311 |
+
"[PLAYER_1]": [
|
| 2312 |
+
"Overlord*2 [3001,879]->[2983,901]"
|
| 2313 |
+
]
|
| 2314 |
+
}
|
| 2315 |
+
},
|
| 2316 |
+
{
|
| 2317 |
+
"frames": "10623~10630",
|
| 2318 |
+
"viewport": "[3456,107]",
|
| 2319 |
+
"units": {
|
| 2320 |
+
"[PLAYER_1]": [
|
| 2321 |
+
"Drone*10 [3924,262]->[3920,264]",
|
| 2322 |
+
"Egg*3 [3745,269]",
|
| 2323 |
+
"Extractor*1 [3808,96]",
|
| 2324 |
+
"Lair*1 [3808,272]",
|
| 2325 |
+
"Larva*1 [3751,272]",
|
| 2326 |
+
"Spawning_Pool*1 [3920,128]",
|
| 2327 |
+
"Spire*1 [3744,160]"
|
| 2328 |
+
],
|
| 2329 |
+
"[PLAYER_2]": [
|
| 2330 |
+
"Mutalisk*1 [3776,288]"
|
| 2331 |
+
]
|
| 2332 |
+
}
|
| 2333 |
+
}
|
| 2334 |
+
]
|
| 2335 |
+
},
|
| 2336 |
+
{
|
| 2337 |
+
"seg_index": 60,
|
| 2338 |
+
"clip_path": "match_007/clip/match_007_060",
|
| 2339 |
+
"speech": "[PLAYER_2] is desperately trying to fall back and get some Scourge out, but it honestly won't matter at this point. He's likely wishing he could just magically summon a group of Archons to turn things around, but the current deficit is too large.",
|
| 2340 |
+
"speech_tag": "EVALUATION",
|
| 2341 |
+
"time": "10630~10988",
|
| 2342 |
+
"events": [
|
| 2343 |
+
{
|
| 2344 |
+
"frames": "10630~10678",
|
| 2345 |
+
"viewport": "[3456,107]",
|
| 2346 |
+
"units": {
|
| 2347 |
+
"[PLAYER_1]": [
|
| 2348 |
+
"Drone*10 [3919,264]->[3887,258]",
|
| 2349 |
+
"Egg*3 [3745,269]",
|
| 2350 |
+
"Extractor*1 [3808,96]",
|
| 2351 |
+
"Lair*1 [3808,272]",
|
| 2352 |
+
"Larva*1 [3751,272]->[3751,292]",
|
| 2353 |
+
"Spawning_Pool*1 [3920,128]",
|
| 2354 |
+
"Spire*1 [3744,160]"
|
| 2355 |
+
],
|
| 2356 |
+
"[PLAYER_2]": [
|
| 2357 |
+
"Mutalisk*1 [3776,288]"
|
| 2358 |
+
]
|
| 2359 |
+
}
|
| 2360 |
+
},
|
| 2361 |
+
{
|
| 2362 |
+
"frames": "10679~10988",
|
| 2363 |
+
"viewport": "[821,3584]->[0,3605]",
|
| 2364 |
+
"units": {
|
| 2365 |
+
"[PLAYER_1]": [
|
| 2366 |
+
"Mutalisk*8 [507,3737]->[427,3662]",
|
| 2367 |
+
"Zergling*10 [806,3767]->[308,3713]"
|
| 2368 |
+
],
|
| 2369 |
+
"[PLAYER_2]": [
|
| 2370 |
+
"Drone*8 [213,3718]->[272,3679]",
|
| 2371 |
+
"Egg*1 [356,3800]->[421,3743]",
|
| 2372 |
+
"Evolution_Chamber*1 [336,3872]",
|
| 2373 |
+
"Extractor*1 [288,3584]",
|
| 2374 |
+
"Lair*1 [288,3760]",
|
| 2375 |
+
"Larva*2 [346,3779]->[356,3769]",
|
| 2376 |
+
"Mutalisk*2 [415,3705]->[415,3703]",
|
| 2377 |
+
"Overlord*3 [959,3684]->[874,3674]",
|
| 2378 |
+
"Scourge*2 [400,3756]->[576,3734]",
|
| 2379 |
+
"Spawning_Pool*1 [176,3616]",
|
| 2380 |
+
"Spire*1 [256,3648]",
|
| 2381 |
+
"Spore_Colony*2 [224,3760]",
|
| 2382 |
+
"Zergling*4 [256,3711]->[272,3704]"
|
| 2383 |
+
]
|
| 2384 |
+
}
|
| 2385 |
+
}
|
| 2386 |
+
]
|
| 2387 |
+
},
|
| 2388 |
+
{
|
| 2389 |
+
"seg_index": 61,
|
| 2390 |
+
"clip_path": "match_007/clip/match_007_061",
|
| 2391 |
+
"speech": "[PLAYER_1]'s Zerglings are inside the base, and [PLAYER_2] simply has nothing left to stop them.",
|
| 2392 |
+
"speech_tag": "STATUS_REPORT",
|
| 2393 |
+
"time": "10988~11072",
|
| 2394 |
+
"events": [
|
| 2395 |
+
{
|
| 2396 |
+
"frames": "10988~11072",
|
| 2397 |
+
"viewport": "[0,3605]->[0,3541]",
|
| 2398 |
+
"units": {
|
| 2399 |
+
"[PLAYER_1]": [
|
| 2400 |
+
"Mutalisk*7 [424,3666]->[490,3719]",
|
| 2401 |
+
"Zergling*6 [335,3722]->[245,3789]"
|
| 2402 |
+
],
|
| 2403 |
+
"[PLAYER_2]": [
|
| 2404 |
+
"Drone*5 [247,3692]->[190,3758]",
|
| 2405 |
+
"Egg*1 [352,3805]",
|
| 2406 |
+
"Evolution_Chamber*1 [336,3872]",
|
| 2407 |
+
"Lair*1 [288,3760]",
|
| 2408 |
+
"Larva*1 [361,3735]->[353,3733]",
|
| 2409 |
+
"Overlord*1 [577,3731]->[550,3734]",
|
| 2410 |
+
"Spawning_Pool*1 [176,3616]",
|
| 2411 |
+
"Spire*1 [256,3648]",
|
| 2412 |
+
"Spore_Colony*2 [224,3760]"
|
| 2413 |
+
]
|
| 2414 |
+
}
|
| 2415 |
+
}
|
| 2416 |
+
]
|
| 2417 |
+
},
|
| 2418 |
+
{
|
| 2419 |
+
"seg_index": 62,
|
| 2420 |
+
"clip_path": "match_007/clip/match_007_062",
|
| 2421 |
+
"speech": "Poor [PLAYER_2], it looks like GG. He put in such a solid performance earlier, but he's being taken out here for relying on such predictable builds.",
|
| 2422 |
+
"speech_tag": "EVALUATION",
|
| 2423 |
+
"time": "11072~11255",
|
| 2424 |
+
"events": [
|
| 2425 |
+
{
|
| 2426 |
+
"frames": "11072~11161",
|
| 2427 |
+
"viewport": "[0,3541]",
|
| 2428 |
+
"units": {
|
| 2429 |
+
"[PLAYER_1]": [
|
| 2430 |
+
"Mutalisk*5 [397,3729]->[381,3736]",
|
| 2431 |
+
"Zergling*6 [245,3790]->[236,3822]"
|
| 2432 |
+
]
|
| 2433 |
+
}
|
| 2434 |
+
}
|
| 2435 |
+
]
|
| 2436 |
+
}
|
| 2437 |
+
]
|
match_007/metadata.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata_schema_version": "release_v1",
|
| 3 |
+
"match_id": "match_007",
|
| 4 |
+
"source": {
|
| 5 |
+
"youtube_url": "https://www.youtube.com/watch?v=HIGRvxLyje8"
|
| 6 |
+
},
|
| 7 |
+
"game_info": {
|
| 8 |
+
"map": "Fighting Spirit 1.3",
|
| 9 |
+
"map_file": "| iCCup | Fighting Spirit 1.3",
|
| 10 |
+
"width": 128,
|
| 11 |
+
"height": 128,
|
| 12 |
+
"game_length_frames": 11110,
|
| 13 |
+
"players": [
|
| 14 |
+
{
|
| 15 |
+
"name": "PLAYER_1",
|
| 16 |
+
"race": "Zerg",
|
| 17 |
+
"start_position": {
|
| 18 |
+
"x": 117,
|
| 19 |
+
"y": 7
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "PLAYER_2",
|
| 24 |
+
"race": "Zerg",
|
| 25 |
+
"start_position": {
|
| 26 |
+
"x": 7,
|
| 27 |
+
"y": 116
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
]
|
| 31 |
+
},
|
| 32 |
+
"alignment": {
|
| 33 |
+
"attempt_count": 2,
|
| 34 |
+
"final_offset_frames": 32,
|
| 35 |
+
"anchor": {
|
| 36 |
+
"player": "PLAYER_1",
|
| 37 |
+
"frame": 821,
|
| 38 |
+
"supply_from": 14,
|
| 39 |
+
"supply_to": 16
|
| 40 |
+
},
|
| 41 |
+
"best_match": {
|
| 42 |
+
"t_sec": 33.32,
|
| 43 |
+
"race": "zerg",
|
| 44 |
+
"supply_from": 7,
|
| 45 |
+
"supply_to": 8,
|
| 46 |
+
"rs": 0.882,
|
| 47 |
+
"ds": 0.812
|
| 48 |
+
},
|
| 49 |
+
"search_range": {
|
| 50 |
+
"frame_start": 793,
|
| 51 |
+
"frame_end": 936,
|
| 52 |
+
"target_supply_from": 14,
|
| 53 |
+
"target_supply_to": 16
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
match_007/viewport.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_008/context.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_008/metadata.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata_schema_version": "release_v1",
|
| 3 |
+
"match_id": "match_008",
|
| 4 |
+
"source": {
|
| 5 |
+
"youtube_url": "https://www.youtube.com/watch?v=UZYlI03Xp74"
|
| 6 |
+
},
|
| 7 |
+
"game_info": {
|
| 8 |
+
"map": "Neo Ground Zero 2.0",
|
| 9 |
+
"map_file": "Neo Ground Zero 2.0",
|
| 10 |
+
"width": 128,
|
| 11 |
+
"height": 128,
|
| 12 |
+
"game_length_frames": 15197,
|
| 13 |
+
"players": [
|
| 14 |
+
{
|
| 15 |
+
"name": "PLAYER_1",
|
| 16 |
+
"race": "Zerg",
|
| 17 |
+
"start_position": {
|
| 18 |
+
"x": 117,
|
| 19 |
+
"y": 6
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "PLAYER_2",
|
| 24 |
+
"race": "Zerg",
|
| 25 |
+
"start_position": {
|
| 26 |
+
"x": 117,
|
| 27 |
+
"y": 118
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
]
|
| 31 |
+
},
|
| 32 |
+
"alignment": {
|
| 33 |
+
"attempt_count": 1,
|
| 34 |
+
"final_offset_frames": 35,
|
| 35 |
+
"anchor": {
|
| 36 |
+
"player": "PLAYER_1",
|
| 37 |
+
"frame": 605,
|
| 38 |
+
"supply_from": 12,
|
| 39 |
+
"supply_to": 14
|
| 40 |
+
},
|
| 41 |
+
"best_match": {
|
| 42 |
+
"t_sec": 24.127,
|
| 43 |
+
"race": "zerg",
|
| 44 |
+
"supply_from": 6,
|
| 45 |
+
"supply_to": 7,
|
| 46 |
+
"rs": 0.884,
|
| 47 |
+
"ds": 0.849
|
| 48 |
+
},
|
| 49 |
+
"search_range": {
|
| 50 |
+
"frame_start": 574,
|
| 51 |
+
"frame_end": 717,
|
| 52 |
+
"target_supply_from": 12,
|
| 53 |
+
"target_supply_to": 14
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
match_008/viewport.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_009/context.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_009/metadata.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata_schema_version": "release_v1",
|
| 3 |
+
"match_id": "match_009",
|
| 4 |
+
"source": {
|
| 5 |
+
"youtube_url": "https://www.youtube.com/watch?v=Pje6X2J_LEY"
|
| 6 |
+
},
|
| 7 |
+
"game_info": {
|
| 8 |
+
"map": "Neo Ground Zero 2.0",
|
| 9 |
+
"map_file": "Neo Ground Zero 2.0",
|
| 10 |
+
"width": 128,
|
| 11 |
+
"height": 128,
|
| 12 |
+
"game_length_frames": 28085,
|
| 13 |
+
"players": [
|
| 14 |
+
{
|
| 15 |
+
"name": "PLAYER_1",
|
| 16 |
+
"race": "Terran",
|
| 17 |
+
"start_position": {
|
| 18 |
+
"x": 117,
|
| 19 |
+
"y": 118
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "PLAYER_2",
|
| 24 |
+
"race": "Zerg",
|
| 25 |
+
"start_position": {
|
| 26 |
+
"x": 7,
|
| 27 |
+
"y": 118
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
]
|
| 31 |
+
},
|
| 32 |
+
"alignment": {
|
| 33 |
+
"attempt_count": 1,
|
| 34 |
+
"final_offset_frames": 87,
|
| 35 |
+
"anchor": {
|
| 36 |
+
"player": "PLAYER_1",
|
| 37 |
+
"frame": 973,
|
| 38 |
+
"supply_from": 14,
|
| 39 |
+
"supply_to": 16
|
| 40 |
+
},
|
| 41 |
+
"best_match": {
|
| 42 |
+
"t_sec": 37.384,
|
| 43 |
+
"race": "terran",
|
| 44 |
+
"supply_from": 7,
|
| 45 |
+
"supply_to": 8,
|
| 46 |
+
"rs": 0.939,
|
| 47 |
+
"ds": 0.821
|
| 48 |
+
},
|
| 49 |
+
"search_range": {
|
| 50 |
+
"frame_start": 890,
|
| 51 |
+
"frame_end": 1033,
|
| 52 |
+
"target_supply_from": 14,
|
| 53 |
+
"target_supply_to": 16
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
match_009/viewport.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_010/context.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_010/metadata.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata_schema_version": "release_v1",
|
| 3 |
+
"match_id": "match_010",
|
| 4 |
+
"source": {
|
| 5 |
+
"youtube_url": "https://www.youtube.com/watch?v=Uw7o9ROwnQ0"
|
| 6 |
+
},
|
| 7 |
+
"game_info": {
|
| 8 |
+
"map": "Sniper Ridge 2.0",
|
| 9 |
+
"map_file": "신 저격능선 2.0",
|
| 10 |
+
"width": 128,
|
| 11 |
+
"height": 128,
|
| 12 |
+
"game_length_frames": 13658,
|
| 13 |
+
"players": [
|
| 14 |
+
{
|
| 15 |
+
"name": "PLAYER_1",
|
| 16 |
+
"race": "Protoss",
|
| 17 |
+
"start_position": {
|
| 18 |
+
"x": 7,
|
| 19 |
+
"y": 7
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "PLAYER_2",
|
| 24 |
+
"race": "Zerg",
|
| 25 |
+
"start_position": {
|
| 26 |
+
"x": 117,
|
| 27 |
+
"y": 117
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
]
|
| 31 |
+
},
|
| 32 |
+
"alignment": {
|
| 33 |
+
"attempt_count": 1,
|
| 34 |
+
"final_offset_frames": 91,
|
| 35 |
+
"anchor": {
|
| 36 |
+
"player": "PLAYER_1",
|
| 37 |
+
"frame": 649,
|
| 38 |
+
"supply_from": 12,
|
| 39 |
+
"supply_to": 14
|
| 40 |
+
},
|
| 41 |
+
"best_match": {
|
| 42 |
+
"t_sec": 23.593,
|
| 43 |
+
"race": "protoss",
|
| 44 |
+
"supply_from": 6,
|
| 45 |
+
"supply_to": 7,
|
| 46 |
+
"rs": 0.944,
|
| 47 |
+
"ds": 0.774
|
| 48 |
+
},
|
| 49 |
+
"search_range": {
|
| 50 |
+
"frame_start": 562,
|
| 51 |
+
"frame_end": 705,
|
| 52 |
+
"target_supply_from": 12,
|
| 53 |
+
"target_supply_to": 14
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
match_010/viewport.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_011/context.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_011/metadata.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata_schema_version": "release_v1",
|
| 3 |
+
"match_id": "match_011",
|
| 4 |
+
"source": {
|
| 5 |
+
"youtube_url": "https://www.youtube.com/watch?v=h1t-lViD49M"
|
| 6 |
+
},
|
| 7 |
+
"game_info": {
|
| 8 |
+
"map": "Fighting Spirit 1.3",
|
| 9 |
+
"map_file": "| iCCup | Fighting Spirit 1.3",
|
| 10 |
+
"width": 128,
|
| 11 |
+
"height": 128,
|
| 12 |
+
"game_length_frames": 12904,
|
| 13 |
+
"players": [
|
| 14 |
+
{
|
| 15 |
+
"name": "PLAYER_1",
|
| 16 |
+
"race": "Terran",
|
| 17 |
+
"start_position": {
|
| 18 |
+
"x": 7,
|
| 19 |
+
"y": 6
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "PLAYER_2",
|
| 24 |
+
"race": "Zerg",
|
| 25 |
+
"start_position": {
|
| 26 |
+
"x": 7,
|
| 27 |
+
"y": 116
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
]
|
| 31 |
+
},
|
| 32 |
+
"alignment": {
|
| 33 |
+
"attempt_count": 1,
|
| 34 |
+
"final_offset_frames": 59,
|
| 35 |
+
"anchor": {
|
| 36 |
+
"player": "PLAYER_2",
|
| 37 |
+
"frame": 807,
|
| 38 |
+
"supply_from": 14,
|
| 39 |
+
"supply_to": 16
|
| 40 |
+
},
|
| 41 |
+
"best_match": {
|
| 42 |
+
"t_sec": 31.578,
|
| 43 |
+
"race": "zerg",
|
| 44 |
+
"supply_from": 7,
|
| 45 |
+
"supply_to": 8,
|
| 46 |
+
"rs": 0.885,
|
| 47 |
+
"ds": 0.836
|
| 48 |
+
},
|
| 49 |
+
"search_range": {
|
| 50 |
+
"frame_start": 752,
|
| 51 |
+
"frame_end": 895,
|
| 52 |
+
"target_supply_from": 14,
|
| 53 |
+
"target_supply_to": 16
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
match_011/viewport.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_012/context.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_012/metadata.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata_schema_version": "release_v1",
|
| 3 |
+
"match_id": "match_012",
|
| 4 |
+
"source": {
|
| 5 |
+
"youtube_url": "https://www.youtube.com/watch?v=bz3kqCi2YPs"
|
| 6 |
+
},
|
| 7 |
+
"game_info": {
|
| 8 |
+
"map": "Neo Ground Zero 2.0",
|
| 9 |
+
"map_file": "Neo Ground Zero 2.0",
|
| 10 |
+
"width": 128,
|
| 11 |
+
"height": 128,
|
| 12 |
+
"game_length_frames": 14056,
|
| 13 |
+
"players": [
|
| 14 |
+
{
|
| 15 |
+
"name": "PLAYER_1",
|
| 16 |
+
"race": "Zerg",
|
| 17 |
+
"start_position": {
|
| 18 |
+
"x": 7,
|
| 19 |
+
"y": 6
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "PLAYER_2",
|
| 24 |
+
"race": "Zerg",
|
| 25 |
+
"start_position": {
|
| 26 |
+
"x": 117,
|
| 27 |
+
"y": 118
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
]
|
| 31 |
+
},
|
| 32 |
+
"alignment": {
|
| 33 |
+
"attempt_count": 1,
|
| 34 |
+
"final_offset_frames": 55,
|
| 35 |
+
"anchor": {
|
| 36 |
+
"player": "PLAYER_1",
|
| 37 |
+
"frame": 873,
|
| 38 |
+
"supply_from": 14,
|
| 39 |
+
"supply_to": 16
|
| 40 |
+
},
|
| 41 |
+
"best_match": {
|
| 42 |
+
"t_sec": 34.52,
|
| 43 |
+
"race": "zerg",
|
| 44 |
+
"supply_from": 7,
|
| 45 |
+
"supply_to": 8,
|
| 46 |
+
"rs": 0.878,
|
| 47 |
+
"ds": 0.844
|
| 48 |
+
},
|
| 49 |
+
"search_range": {
|
| 50 |
+
"frame_start": 822,
|
| 51 |
+
"frame_end": 965,
|
| 52 |
+
"target_supply_from": 14,
|
| 53 |
+
"target_supply_to": 16
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
match_012/viewport.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_013/context.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_013/metadata.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata_schema_version": "release_v1",
|
| 3 |
+
"match_id": "match_013",
|
| 4 |
+
"source": {
|
| 5 |
+
"youtube_url": "https://www.youtube.com/watch?v=9IBr3obpjag"
|
| 6 |
+
},
|
| 7 |
+
"game_info": {
|
| 8 |
+
"map": "Neo Ground Zero 2.0",
|
| 9 |
+
"map_file": "Neo Ground Zero 2.0",
|
| 10 |
+
"width": 128,
|
| 11 |
+
"height": 128,
|
| 12 |
+
"game_length_frames": 13740,
|
| 13 |
+
"players": [
|
| 14 |
+
{
|
| 15 |
+
"name": "PLAYER_1",
|
| 16 |
+
"race": "Zerg",
|
| 17 |
+
"start_position": {
|
| 18 |
+
"x": 7,
|
| 19 |
+
"y": 6
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "PLAYER_2",
|
| 24 |
+
"race": "Protoss",
|
| 25 |
+
"start_position": {
|
| 26 |
+
"x": 7,
|
| 27 |
+
"y": 118
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
]
|
| 31 |
+
},
|
| 32 |
+
"alignment": {
|
| 33 |
+
"attempt_count": 1,
|
| 34 |
+
"final_offset_frames": 110,
|
| 35 |
+
"anchor": {
|
| 36 |
+
"player": "PLAYER_2",
|
| 37 |
+
"frame": 685,
|
| 38 |
+
"supply_from": 12,
|
| 39 |
+
"supply_to": 14
|
| 40 |
+
},
|
| 41 |
+
"best_match": {
|
| 42 |
+
"t_sec": 24.32,
|
| 43 |
+
"race": "protoss",
|
| 44 |
+
"supply_from": 6,
|
| 45 |
+
"supply_to": 7,
|
| 46 |
+
"rs": 0.936,
|
| 47 |
+
"ds": 0.845
|
| 48 |
+
},
|
| 49 |
+
"search_range": {
|
| 50 |
+
"frame_start": 579,
|
| 51 |
+
"frame_end": 722,
|
| 52 |
+
"target_supply_from": 12,
|
| 53 |
+
"target_supply_to": 14
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
match_013/viewport.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_014/context.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_014/metadata.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata_schema_version": "release_v1",
|
| 3 |
+
"match_id": "match_014",
|
| 4 |
+
"source": {
|
| 5 |
+
"youtube_url": "https://www.youtube.com/watch?v=h6-ho3sEdr0"
|
| 6 |
+
},
|
| 7 |
+
"game_info": {
|
| 8 |
+
"map": "Sniper Ridge 2.0",
|
| 9 |
+
"map_file": "신 저격능선 2.0",
|
| 10 |
+
"width": 128,
|
| 11 |
+
"height": 128,
|
| 12 |
+
"game_length_frames": 29362,
|
| 13 |
+
"players": [
|
| 14 |
+
{
|
| 15 |
+
"name": "PLAYER_1",
|
| 16 |
+
"race": "Zerg",
|
| 17 |
+
"start_position": {
|
| 18 |
+
"x": 117,
|
| 19 |
+
"y": 117
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "PLAYER_2",
|
| 24 |
+
"race": "Protoss",
|
| 25 |
+
"start_position": {
|
| 26 |
+
"x": 7,
|
| 27 |
+
"y": 117
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
]
|
| 31 |
+
},
|
| 32 |
+
"alignment": {
|
| 33 |
+
"attempt_count": 1,
|
| 34 |
+
"final_offset_frames": 75,
|
| 35 |
+
"anchor": {
|
| 36 |
+
"player": "PLAYER_1",
|
| 37 |
+
"frame": 591,
|
| 38 |
+
"supply_from": 12,
|
| 39 |
+
"supply_to": 14
|
| 40 |
+
},
|
| 41 |
+
"best_match": {
|
| 42 |
+
"t_sec": 21.827,
|
| 43 |
+
"race": "zerg",
|
| 44 |
+
"supply_from": 6,
|
| 45 |
+
"supply_to": 7,
|
| 46 |
+
"rs": 0.881,
|
| 47 |
+
"ds": 0.845
|
| 48 |
+
},
|
| 49 |
+
"search_range": {
|
| 50 |
+
"frame_start": 520,
|
| 51 |
+
"frame_end": 663,
|
| 52 |
+
"target_supply_from": 12,
|
| 53 |
+
"target_supply_to": 14
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
match_014/viewport.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_015/context.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_015/metadata.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata_schema_version": "release_v1",
|
| 3 |
+
"match_id": "match_015",
|
| 4 |
+
"source": {
|
| 5 |
+
"youtube_url": "https://www.youtube.com/watch?v=A4bwRnFsfAA"
|
| 6 |
+
},
|
| 7 |
+
"game_info": {
|
| 8 |
+
"map": "Sniper Ridge 2.0",
|
| 9 |
+
"map_file": "신 저격능선 2.0",
|
| 10 |
+
"width": 128,
|
| 11 |
+
"height": 128,
|
| 12 |
+
"game_length_frames": 13486,
|
| 13 |
+
"players": [
|
| 14 |
+
{
|
| 15 |
+
"name": "PLAYER_1",
|
| 16 |
+
"race": "Zerg",
|
| 17 |
+
"start_position": {
|
| 18 |
+
"x": 7,
|
| 19 |
+
"y": 7
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "PLAYER_2",
|
| 24 |
+
"race": "Protoss",
|
| 25 |
+
"start_position": {
|
| 26 |
+
"x": 7,
|
| 27 |
+
"y": 117
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
]
|
| 31 |
+
},
|
| 32 |
+
"alignment": {
|
| 33 |
+
"attempt_count": 1,
|
| 34 |
+
"final_offset_frames": 100,
|
| 35 |
+
"anchor": {
|
| 36 |
+
"player": "PLAYER_1",
|
| 37 |
+
"frame": 855,
|
| 38 |
+
"supply_from": 14,
|
| 39 |
+
"supply_to": 16
|
| 40 |
+
},
|
| 41 |
+
"best_match": {
|
| 42 |
+
"t_sec": 31.88,
|
| 43 |
+
"race": "zerg",
|
| 44 |
+
"supply_from": 7,
|
| 45 |
+
"supply_to": 8,
|
| 46 |
+
"rs": 0.878,
|
| 47 |
+
"ds": 0.841
|
| 48 |
+
},
|
| 49 |
+
"search_range": {
|
| 50 |
+
"frame_start": 759,
|
| 51 |
+
"frame_end": 902,
|
| 52 |
+
"target_supply_from": 14,
|
| 53 |
+
"target_supply_to": 16
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
match_015/viewport.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_016/context.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
match_016/metadata.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata_schema_version": "release_v1",
|
| 3 |
+
"match_id": "match_016",
|
| 4 |
+
"source": {
|
| 5 |
+
"youtube_url": "https://www.youtube.com/watch?v=TBev3tr-lHw"
|
| 6 |
+
},
|
| 7 |
+
"game_info": {
|
| 8 |
+
"map": "Fighting Spirit 1.3",
|
| 9 |
+
"map_file": "| iCCup | Fighting Spirit 1.3",
|
| 10 |
+
"width": 128,
|
| 11 |
+
"height": 128,
|
| 12 |
+
"game_length_frames": 34510,
|
| 13 |
+
"players": [
|
| 14 |
+
{
|
| 15 |
+
"name": "PLAYER_1",
|
| 16 |
+
"race": "Zerg",
|
| 17 |
+
"start_position": {
|
| 18 |
+
"x": 117,
|
| 19 |
+
"y": 7
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "PLAYER_2",
|
| 24 |
+
"race": "Protoss",
|
| 25 |
+
"start_position": {
|
| 26 |
+
"x": 7,
|
| 27 |
+
"y": 116
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
]
|
| 31 |
+
},
|
| 32 |
+
"alignment": {
|
| 33 |
+
"attempt_count": 1,
|
| 34 |
+
"final_offset_frames": 88,
|
| 35 |
+
"anchor": {
|
| 36 |
+
"player": "PLAYER_1",
|
| 37 |
+
"frame": 867,
|
| 38 |
+
"supply_from": 14,
|
| 39 |
+
"supply_to": 16
|
| 40 |
+
},
|
| 41 |
+
"best_match": {
|
| 42 |
+
"t_sec": 32.89,
|
| 43 |
+
"race": "zerg",
|
| 44 |
+
"supply_from": 7,
|
| 45 |
+
"supply_to": 8,
|
| 46 |
+
"rs": 0.881,
|
| 47 |
+
"ds": 0.817
|
| 48 |
+
},
|
| 49 |
+
"search_range": {
|
| 50 |
+
"frame_start": 783,
|
| 51 |
+
"frame_end": 926,
|
| 52 |
+
"target_supply_from": 14,
|
| 53 |
+
"target_supply_to": 16
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
match_016/viewport.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|