SitongGong commited on
Commit
0847d4c
·
verified ·
1 Parent(s): 5c2639a

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. annotations/.gitignore +129 -0
  2. annotations/ANNOTATIONS.md +278 -0
  3. annotations/LICENSE +21 -0
  4. annotations/README.md +131 -0
  5. annotations/annotation_csv/activity_idx_step_idx.csv +25 -0
  6. annotations/annotation_csv/activity_step_description.csv +0 -0
  7. annotations/annotation_csv/average_segment_length.csv +32 -0
  8. annotations/annotation_csv/error_annotations.csv +0 -0
  9. annotations/annotation_csv/recording_id_step_idx.csv +385 -0
  10. annotations/annotation_csv/step_idx_description.csv +351 -0
  11. annotations/annotation_json/activity_idx_step_idx.json +5750 -0
  12. annotations/annotation_json/complete_step_annotations.json +0 -0
  13. annotations/annotation_json/error_annotations.json +0 -0
  14. annotations/annotation_json/error_category_idx.json +10 -0
  15. annotations/annotation_json/recording_id_step_idx.json +6470 -0
  16. annotations/annotation_json/step_annotations.json +0 -0
  17. annotations/annotation_json/step_idx_description.json +352 -0
  18. annotations/data_splits/environment_data_split_combined.json +1 -0
  19. annotations/data_splits/environment_data_split_normal.json +1 -0
  20. annotations/data_splits/person_data_split_combined.json +1 -0
  21. annotations/data_splits/person_data_split_normal.json +1 -0
  22. annotations/data_splits/recipes_data_split_combined.json +1 -0
  23. annotations/data_splits/recipes_data_split_normal.json +1 -0
  24. annotations/data_splits/recordings_data_split_combined.json +1 -0
  25. annotations/data_splits/recordings_data_split_normal.json +1 -0
  26. annotations/metadata/video_information.csv +385 -0
  27. annotations/task_graphs/breakfastburritos.json +1 -0
  28. annotations/task_graphs/broccolistirfry.json +1 -0
  29. annotations/task_graphs/buttercorncup.json +84 -0
  30. annotations/task_graphs/cheesepimiento.json +1 -0
  31. annotations/task_graphs/coffee.json +1 -0
  32. annotations/task_graphs/cucumberraita.json +20 -0
  33. annotations/task_graphs/dressedupmeatballs.json +1 -0
  34. annotations/task_graphs/herbomeletwithfriedtomatoes.json +1 -0
  35. annotations/task_graphs/microwaveeggsandwich.json +1 -0
  36. annotations/task_graphs/mugcake.json +1 -0
  37. annotations/task_graphs/panfriedtofu.json +1 -0
  38. annotations/task_graphs/pinwheels.json +23 -0
  39. annotations/task_graphs/tomatomozzarellasalad.json +1 -0
  40. annotations/task_graphs/zoodles.json +1 -0
  41. downloader/.gitignore +161 -0
  42. downloader/LICENSE +201 -0
  43. downloader/README.md +33 -0
  44. downloader/__pycache__/util.cpython-312.pyc +0 -0
  45. downloader/download_gopro_data.py +62 -0
  46. downloader/download_hololens_data.py +53 -0
  47. downloader/holoassist_output_.log +0 -0
  48. downloader/metadata/download_links.json +0 -0
  49. downloader/requirements.txt +2 -0
  50. downloader/util.py +285 -0
annotations/.gitignore ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ pip-wheel-metadata/
24
+ share/python-wheels/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+ MANIFEST
29
+
30
+ # PyInstaller
31
+ # Usually these files are written by a python script from a template
32
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
33
+ *.manifest
34
+ *.spec
35
+
36
+ # Installer logs
37
+ pip-log.txt
38
+ pip-delete-this-directory.txt
39
+
40
+ # Unit test / coverage reports
41
+ htmlcov/
42
+ .tox/
43
+ .nox/
44
+ .coverage
45
+ .coverage.*
46
+ .cache
47
+ nosetests.xml
48
+ coverage.xml
49
+ *.cover
50
+ *.py,cover
51
+ .hypothesis/
52
+ .pytest_cache/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ target/
76
+
77
+ # Jupyter Notebook
78
+ .ipynb_checkpoints
79
+
80
+ # IPython
81
+ profile_default/
82
+ ipython_config.py
83
+
84
+ # pyenv
85
+ .python-version
86
+
87
+ # pipenv
88
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
90
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
91
+ # install all needed dependencies.
92
+ #Pipfile.lock
93
+
94
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
95
+ __pypackages__/
96
+
97
+ # Celery stuff
98
+ celerybeat-schedule
99
+ celerybeat.pid
100
+
101
+ # SageMath parsed files
102
+ *.sage.py
103
+
104
+ # Environments
105
+ .env
106
+ .venv
107
+ env/
108
+ venv/
109
+ ENV/
110
+ env.bak/
111
+ venv.bak/
112
+
113
+ # Spyder project settings
114
+ .spyderproject
115
+ .spyproject
116
+
117
+ # Rope project settings
118
+ .ropeproject
119
+
120
+ # mkdocs documentation
121
+ /site
122
+
123
+ # mypy
124
+ .mypy_cache/
125
+ .dmypy.json
126
+ dmypy.json
127
+
128
+ # Pyre type checker
129
+ .pyre/
annotations/ANNOTATIONS.md ADDED
@@ -0,0 +1,278 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CaptainCook4D: A Dataset for Understanding Errors in Procedural Activities
2
+
3
+ <div align=center>
4
+ <a src="https://img.shields.io/badge/project-website-green" href="https://captaincook4d.github.io/captain-cook/">
5
+ <img src="https://img.shields.io/badge/project-website-green">
6
+ </a>
7
+ <a src="https://img.shields.io/badge/paper-arxiv-red" href="https://arxiv.org/abs/2312.14556">
8
+ <img src="https://img.shields.io/badge/paper-arxiv-red">
9
+ </a>
10
+ <a src="https://img.shields.io/badge/bibtex-citation-blue" href="https://captaincook4d.github.io/captain-cook/#citation">
11
+ <img src="https://img.shields.io/badge/bibtex-citation-blue">
12
+ </a>
13
+ </div>
14
+
15
+ <p align="center">
16
+ (This page is under continuous update and construction.)
17
+ </p>
18
+
19
+
20
+ > **DISCLAIMER**: The proposed data splits showcase the ways in which our dataset can be used. We do not claim that these splits are the best or the only way to use the dataset.
21
+ > We encourage the community to explore other ways to use the dataset and share their findings with us.
22
+
23
+ ----
24
+
25
+ <div>
26
+ <h3>Annotation Files</h3>
27
+ </div>
28
+
29
+ 1. [Annotation CSVs](#annotation-csvs)
30
+ 1. Activity ID and Step ID Mapping
31
+ 2. Activity Step Description
32
+ 3. Average Segment Length
33
+ 4. Error Annotations
34
+ 5. Recording ID and Step ID Mapping
35
+ 6. Step Annotations
36
+ 7. Step ID and Step Description Mapping
37
+ 2. [Annotation JSONs](#annotation-csvs)
38
+ 1. Activity ID and Step ID Mapping
39
+ 2. Complete Step Annotations JSON
40
+ 3. Error Annotations
41
+ 4. Error Category ID
42
+ 5. Recording ID and Step ID Mapping
43
+ 6. Step Annotations
44
+ 7. Step ID and Step Description Mapping
45
+ 3. Data Splits
46
+ 1. Splits based on Environments
47
+ 1. Combined
48
+ 2. Only Normal Videos
49
+ 2. Splits based on Persons
50
+ 1. Combined
51
+ 2. Only Normal Videos
52
+ 3. Splits based on Recipes
53
+ 1. Combined
54
+ 2. Only Normal Videos
55
+ 4. Splits based on Recordings
56
+ 1. Combined
57
+ 2. Only Normal Videos
58
+ 4. Metadata
59
+ 1. Average Segment Length
60
+ 2. Video Information
61
+ 5. Task Graphs
62
+
63
+ ----
64
+
65
+
66
+ ## Annotation CSVs <a id="annotation-csvs"></a>
67
+
68
+ ### File: **activity_id_step_id_mapping.csv**
69
+
70
+ | Column Name | Type | Description |
71
+ |---------------|--------|------------------------------------|
72
+ | activity_idx | int | Activity ID |
73
+ | activity_name | string | Name of the activity (Recipe Name) |
74
+ | step_indices | list | List of Step IDs |
75
+
76
+ ### File: **activity_step_description.csv**
77
+
78
+ | Column Name | Type | Description |
79
+ |------------------|--------|------------------------------------|
80
+ | activity_idx | int | Activity ID |
81
+ | activity_name | string | Name of the activity (Recipe Name) |
82
+ | step_index | int | Step ID |
83
+ | step_description | string | Description of the step |
84
+
85
+ ### File: **average_segment_length.csv**
86
+
87
+ | Column Name | Type | Description |
88
+ |------------------------|--------|----------------------------------------|
89
+ | activity_id | int | Activity ID |
90
+ | activity_name | string | Name of the activity (Recipe Name) |
91
+ | average_segment_length | float | Average segment length of the activity |
92
+
93
+ ### File: **error_annotations.csv**
94
+
95
+ | Column Name | Type | Description |
96
+ |-------------------|--------|--------------------------------------|
97
+ | recording_id | int | Recording ID |
98
+ | step_id | int | Step ID |
99
+ | start_time | float | Start time of the step |
100
+ | end_time | float | End time of the step |
101
+ | description | string | Description of the step |
102
+ | has_errors | bool | Error in the step |
103
+ | Preparation Error | bool | Error Category: Preparation Error |
104
+ | error_description | string | Description of the preparation error |
105
+ | Measurement Error | bool | Error Category: Measurement Error |
106
+ | error_description | string | Description of the measurement error |
107
+ | Order Error | bool | Error Category: Order Error |
108
+ | error_description | string | Description of the order error |
109
+ | Timing Error | bool | Error Category: Timing Error |
110
+ | error_description | string | Description of the timing error |
111
+ | Technique Error | bool | Error Category: Technique Error |
112
+ | error_description | string | Description of the technique error |
113
+ | Temperature Error | bool | Error Category: Temperature Error |
114
+ | error_description | string | Description of the temperature error |
115
+ | Missing Step | bool | Error Category: Missing Step |
116
+ | error_description | string | Description of the missing step |
117
+ | Other | bool | Error Category: Other |
118
+ | error_description | string | Description of the other error |
119
+
120
+
121
+ ### File: **error_category_idx.csv**
122
+
123
+ | Column Name | Type | Description |
124
+ |--------------------|--------|---------------------|
125
+ | error_category_idx | int | Error Category ID |
126
+ | error_category | string | Error Category Name |
127
+
128
+
129
+ ### File: **recording_id_step_idx.csv**
130
+
131
+ | Column Name | Type | Description |
132
+ |--------------|------|-----------------------------------|
133
+ | recording_id | int | Recording ID |
134
+ | activity_idx | int | Activity ID |
135
+ | step_indices | list | List of Step IDs in the recording |
136
+
137
+
138
+ ### File: **step_annotations.csv**
139
+
140
+ | Column Name | Type | Description |
141
+ |--------------|--------|------------------------------------|
142
+ | recording_id | int | Recording ID |
143
+ | step_id | int | Step ID |
144
+ | start_time | float | Start time of the step |
145
+ | end_time | float | End time of the step |
146
+ | description | string | Description of the step |
147
+ | has_errors | bool | Error in the step |
148
+
149
+
150
+ ### File: **step_idx_description.csv**
151
+
152
+
153
+ | Column Name | Type | Description |
154
+ |------------------|--------|-------------------------|
155
+ | step_idx | int | Step ID |
156
+ | step_description | string | Description of the step |
157
+
158
+
159
+ ## Annotation JSONs <a id="annotation-jsons"></a>
160
+
161
+ ----
162
+
163
+ File: **step_idx_description.json**
164
+
165
+ > Can be used to map the step ID to the step description.
166
+
167
+ ```json
168
+ {
169
+ "step_idx": "step_description"
170
+ }
171
+ ```
172
+
173
+ File: **step_annotations.json**
174
+
175
+ > Contains metadata for each recording where the nature of recordings is just limited to the boolean.
176
+ > For information about the error category and the error description please see **complete_step_annotations.json**
177
+
178
+ ```json
179
+ {
180
+ "1_7": {
181
+ "recording_id": "1_7",
182
+ "steps": [
183
+ {
184
+ "step_id": 3,
185
+ "start_time": "start_time",
186
+ "end_time": "end_time",
187
+ "description": "description",
188
+ "has_errors": "has_errors"
189
+ },
190
+ ....
191
+ ]
192
+ },
193
+ ....
194
+ }
195
+ ```
196
+
197
+ File: **recording_id_step_idx.json**
198
+
199
+ > Contains information about the steps ids in each recording.
200
+ > **Note**: Step IDs of repetitive steps are repeated in the order in which they are performed in the recording.
201
+
202
+ ```json
203
+ {
204
+ "1_7" : [3, 1, 4, 12 ...],
205
+ "1_10" : [3, 1, 4, 11 ...],
206
+ ...
207
+ }
208
+ ```
209
+
210
+ File: **error_annotations.json**
211
+
212
+ > This file contains the complete error annotations for each recording.
213
+ > We attach errors that occur during each step as part of the steps.
214
+ > Here, **tag** describes the error category and **description** presents the error description.
215
+ > Here we exclude information about the person and the environment in which they are recorded.
216
+
217
+ ```json
218
+ [
219
+ {
220
+ "recording_id": "1_10",
221
+ "activity_id": 1,
222
+ "is_error": true,
223
+ "step_annotations": [
224
+ {
225
+ "description": "Microwave-Microwave the ramekin cup uncovered on high for 30 seconds",
226
+ "step_id": 4,
227
+ "errors": [
228
+ {
229
+ "tag": "Missing Step",
230
+ "description": "Skipped this step"
231
+ }
232
+ ],
233
+ "start_time": -1.0,
234
+ "end_time": -1.0,
235
+ "modified_description": "Skipped this step"
236
+ },
237
+ ...
238
+ ]
239
+ },
240
+ ...
241
+ ]
242
+ ```
243
+
244
+
245
+ File: **complete_step_annotations.json**
246
+
247
+ > This file contains the complete step annotations for each recording.
248
+ > It includes complete information about a recording namely (a) the person, (b) the environment, and (c) the errors that occur during each step of the recording
249
+
250
+
251
+ ```json
252
+ [
253
+ "1_10" : {
254
+ "recording_id": "1_10",
255
+ "activity_id": 1,
256
+ "person": "6",
257
+ "environment": "1",
258
+ "is_error": true,
259
+ "step_annotations": [
260
+ {
261
+ "description": "Microwave-Microwave the ramekin cup uncovered on high for 30 seconds",
262
+ "step_id": 4,
263
+ "errors": [
264
+ {
265
+ "tag": "Missing Step",
266
+ "description": "Skipped this step"
267
+ }
268
+ ],
269
+ "start_time": -1.0,
270
+ "end_time": -1.0,
271
+ "modified_description": "Skipped this step"
272
+ },
273
+ ...
274
+ ]
275
+ },
276
+ ...
277
+ ]
278
+ ```
annotations/LICENSE ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Error-Dataset
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
annotations/README.md ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CaptainCook4D: A Dataset for Understanding Errors in Procedural Activities
2
+
3
+ <div align=center>
4
+ <a src="https://img.shields.io/badge/project-website-green" href="https://captaincook4d.github.io/captain-cook/">
5
+ <img src="https://img.shields.io/badge/project-website-green">
6
+ </a>
7
+ <a src="https://img.shields.io/badge/paper-arxiv-red" href="https://arxiv.org/abs/2312.14556">
8
+ <img src="https://img.shields.io/badge/paper-arxiv-red">
9
+ </a>
10
+ <a src="https://img.shields.io/badge/bibtex-citation-blue" href="https://captaincook4d.github.io/captain-cook/#citation">
11
+ <img src="https://img.shields.io/badge/bibtex-citation-blue">
12
+ </a>
13
+ </div>
14
+
15
+ <p align="center">
16
+ (This page is under continuous update and construction.)
17
+ </p>
18
+
19
+
20
+ > **DISCLAIMER**: The proposed data splits showcase the ways in which our dataset can be used. We do not claim that these splits are the best or the only way to use the dataset.
21
+ > We encourage the community to explore other ways to use the dataset and share their findings with us.
22
+
23
+
24
+ ----
25
+
26
+ <div>
27
+ <h3>Update</h3>
28
+ </div>
29
+
30
+
31
+ **Dec 2023:** Released dataset version 1.0
32
+
33
+ ----
34
+
35
+ <div align="center">
36
+ <h3>Overview</h3>
37
+ </div>
38
+
39
+ ![Overview](https://raw.githubusercontent.com/CaptainCook4D/captain-cook/main/static/images/TitleImage.svg)
40
+
41
+ ----
42
+
43
+ <div align="center">
44
+ <h3>Annotations</h3>
45
+ </div>
46
+
47
+ <div align="center">
48
+ <h5>Task Graphs</h5>
49
+ </div>
50
+
51
+ https://github.com/user-attachments/assets/f32e37c6-adb9-4bd8-952b-7effa3de4b01
52
+
53
+ ----
54
+
55
+ <div align="center">
56
+ <h3>Step/Coarse Grained Action Annotations Overview</h3>
57
+ </div>
58
+
59
+ ![Annotation Overview](https://raw.githubusercontent.com/CaptainCook4D/captain-cook/main/static/images/RecipeTimeline.svg)
60
+
61
+ ----
62
+
63
+ <div align="center">
64
+ <h3>Data Collection and Annotation Illustration</h3>
65
+ </div>
66
+
67
+ https://github.com/user-attachments/assets/87cae353-536b-48ad-942e-5eeb7c725089
68
+
69
+ ----
70
+
71
+ <div align="center">
72
+ <h3>Error Categories</h3>
73
+ </div>
74
+
75
+ ![Error Categories](https://raw.githubusercontent.com/CaptainCook4D/captain-cook/main/static/images/ErrorCategories.svg)
76
+
77
+ ----
78
+
79
+ <div align="center">
80
+ <h3>Dataset Statistics</h3>
81
+ </div>
82
+
83
+ ![Step Duration Statistics](https://raw.githubusercontent.com/CaptainCook4D/captain-cook/main/static/images/StepDurationStatistics.svg)
84
+
85
+
86
+ ![Video Duration Statistics](https://raw.githubusercontent.com/CaptainCook4D/captain-cook/main/static/images/VideoDurationStatistics.svg)
87
+
88
+ <div align="center">
89
+ <h5>Normal/Error Recording Statistics</h5>
90
+ </div>
91
+
92
+ ![NormalErrorRecordingStatistics](https://raw.githubusercontent.com/CaptainCook4D/captain-cook/main/static/images/NormalErrorRecordingStatistics.png)
93
+
94
+ <div align="center">
95
+ <h5>Error Recipe Count</h5>
96
+ </div>
97
+
98
+ ![ErrorRecipeCount](https://raw.githubusercontent.com/CaptainCook4D/captain-cook/main/static/images/ErrorRecipeCount.png)
99
+
100
+
101
+ ----
102
+
103
+ <div>
104
+ <h3>License & Consent</h3>
105
+ </div>
106
+
107
+ Our dataset is licensed under the Apache license 2.0: [License](https://www.apache.org/licenses/LICENSE-2.0).
108
+
109
+ Our dataset is approved by the Institutional Review Board (IRB) at the University of Florida: [IRB Approval](https://utdallas.box.com/s/mplxyvsowyay1lr048bur9habarjgkt9)
110
+
111
+ All participants provided written consent for the data collection: [Consent](https://utdallas.box.com/s/2qkvsgrn8gfs66o8ha8hnee011t03yl2)
112
+
113
+ ----
114
+
115
+
116
+ <div>
117
+ <h3>Citation</h3>
118
+ </div>
119
+
120
+ If you have found our work to be useful in your research, please leave us a star and consider citing our work:
121
+
122
+ ```
123
+ @misc{peddi2023captaincook4d,
124
+ title={{CaptainCook4D: A dataset for understanding errors in procedural activities}},
125
+ author={Rohith Peddi and Shivvrat Arya and Bharath Challa and Likhitha Pallapothula and Akshay Vyas and Jikai Wang and Qifan Zhang and Vasundhara Komaragiri and Eric Ragan and Nicholas Ruozzi and Yu Xiang and Vibhav Gogate},
126
+ year={2023},
127
+ eprint={2312.14556},
128
+ archivePrefix={arXiv},
129
+ primaryClass={cs.CV}
130
+ }
131
+ ```
annotations/annotation_csv/activity_idx_step_idx.csv ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "activity_idx","activity_name","step_indices"
2
+ "1","Microwave Egg Sandwich","3,1,4,12,11,8,6,5,10,9,2,7,3,1,4,11,8,6,12,5,10,9,2,7,12,3,1,4,11,8,6,9,5,10,2,7,3,1,4,12,9,11,8,6,5,10,2,7,12,3,1,4,9,11,8,6,5,10,2,7,3,1,4,11,8,12,9,6,5,10,2,7,12,3,1,11,8,6,5,9,10,2,7,4,1,12,4,9,11,6,5,10,2,7,3,8,1,12,4,11,8,6,5,10,9,2,7,3,3,1,12,4,11,8,9,5,10,7,6,2,1,12,4,11,8,9,6,5,10,2,7,3,3,1,5,12,8,6,10,9,2,7,10,11,3,1,4,6,12,9,11,8,5,10,2,7,1,4,11,3,12,9,8,6,5,10,2,7,3,1,4,11,12,8,9,5,10,6,2,7,3,5,10,12,1,4,11,8,6,9,2,7,3,1,5,12,8,6,9,4,2,10,11,7,3,1,4,11,12,8,9,5,10,6,2,7"
3
+ "2","Dressed Up Meatballs","21,14,23,17,16,26,27,22,19,24,15,20,18,20,18,25,21,14,16,17,22,26,23,27,19,24,15,20,18,20,18,25,14,16,26,23,17,21,27,22,19,24,15,20,18,20,18,25,14,16,17,27,23,26,22,21,19,24,15,20,18,20,18,25,17,23,27,14,19,16,22,26,21,24,15,20,18,20,18,25,14,22,17,16,27,21,26,19,24,23,15,20,18,20,18,25,17,23,14,27,22,21,19,16,26,24,15,20,18,20,18,25,22,14,16,26,17,23,27,19,21,24,15,20,18,20,18,25,14,17,16,26,22,21,27,19,23,15,20,18,20,25,24,18,17,19,22,14,23,21,26,24,15,20,18,25,16,27,20,18,17,21,14,27,23,19,16,22,26,24,15,20,20,25,18,18,14,17,16,26,22,27,19,21,24,20,20,18,23,18,25,15,22,17,27,19,14,16,26,23,24,15,21,24,20,18,20,18,25,14,23,21,20,22,17,27,19,16,26,24,18,20,15,18,25,18,25,17,14,16,23,20,26,18,22,27,19,24,20,18,25,21,15,14,17,27,19,22,21,20,18,16,23,26,15,24,20,18,25"
4
+ "3","Microwave Mug Pizza","36,35,28,40,33,38,41,34,37,30,31,39,29,32,36,40,35,28,33,38,41,34,37,30,31,39,29,32,36,35,33,28,40,38,41,34,37,30,31,39,29,32,36,28,33,35,40,38,41,34,37,30,31,39,29,32,36,35,40,33,28,38,41,34,37,30,31,39,29,32,36,40,35,28,33,38,34,41,37,30,31,39,29,32,36,28,40,33,35,38,41,34,37,30,31,39,29,32,36,35,40,28,33,38,34,41,37,30,31,39,29,32,36,35,38,28,40,34,41,37,30,33,39,32,31,29,36,34,33,40,38,41,28,37,35,30,31,30,31,39,29,32,36,35,40,33,28,38,34,41,29,30,31,39,37,32,36,40,33,35,28,38,34,41,29,30,31,39,37,32,36,40,33,39,28,38,41,34,37,30,31,35,29,32"
5
+ "4","Ramen","14,51,44,47,46,54,52,55,49,45,50,48,53,42,43,47,14,44,51,46,54,52,55,49,45,48,53,50,42,43,47,44,46,14,51,54,52,55,49,45,50,53,48,42,43,47,14,46,51,54,44,52,55,49,45,53,48,50,42,43,47,14,46,44,51,54,52,55,49,45,53,48,50,42,43,14,47,46,51,44,54,52,55,49,45,53,50,48,42,43,47,14,51,44,46,54,52,55,49,45,48,50,53,42,43,44,14,47,51,46,54,52,55,49,45,50,48,53,42,43,47,14,51,46,54,44,52,55,49,45,48,53,50,42,43,14,51,44,47,46,54,52,55,49,45,49,45,53,48,42,43,50,47,44,14,51,54,52,55,49,45,53,48,42,43,46,50,47,14,46,51,44,54,52,55,45,53,48,42,43,49,50,47,14,51,46,44,54,52,55,49,45,50,48,53,42,43,14,47,51,44,46,53,52,54,49,45,48,50,55,43,42,14,44,47,51,54,46,50,55,49,45,52,45,53,48,42,43,47,14,46,44,52,14,51,54,55,49,45,50,48,53,42,43,44,14,47,51,46,54,52,55,49,45,50,48,53,42,43"
6
+ "5","Coffee","68,69,65,67,62,70,60,64,59,71,58,57,56,61,66,63,68,69,70,62,60,59,64,65,67,71,58,57,56,61,66,63,62,68,65,67,69,60,59,70,58,64,71,57,56,61,66,63,65,69,62,60,67,68,59,58,70,64,71,57,56,61,66,63,65,62,67,69,68,70,60,64,59,71,58,57,56,61,66,63,65,68,62,70,69,64,71,67,60,59,58,57,56,61,66,63,69,62,65,68,70,67,60,64,71,59,58,57,56,61,66,63,65,62,67,68,70,69,60,59,64,71,58,57,56,61,66,63,68,69,62,65,70,60,59,67,64,58,71,57,56,61,66,63,68,70,62,69,64,60,59,65,67,58,57,56,61,66,63,71,68,70,65,69,64,71,58,57,56,61,66,63,60,67,62,59,62,65,68,70,60,59,67,64,71,69,58,57,56,66,63,61,69,68,70,64,65,62,60,67,59,58,57,56,61,66,63,71,65,62,60,69,59,67,58,68,70,57,56,61,66,64,71,63,65,60,69,59,67,58,68,70,57,56,61,66,64,71,62,63"
7
+ "7","Breakfast Burritos","77,72,81,73,74,82,80,76,79,75,78,77,72,73,81,74,80,82,76,79,75,78,77,72,73,82,80,74,81,76,79,75,78,77,72,73,74,82,81,80,76,79,75,78,77,81,72,73,82,74,80,76,79,75,78,77,72,73,82,80,81,74,76,79,75,78,77,81,72,73,82,80,74,76,79,75,78,77,73,82,74,80,81,79,75,78,72,76,77,72,73,82,80,74,76,75,81,79,78,77,72,73,81,74,82,76,79,78,80,75,77,72,76,74,80,73,82,81,79,75,78,77,81,73,74,82,72,80,79,76,75,78,81,77,72,73,74,80,82,76,79,75,78,81,77,74,73,80,72,82,76,79,75,78,77,81,72,73,79,75,74,78,82,76,80,77,72,74,80,73,82,81,79,75,78,76"
8
+ "8","Spiced Hot Chocolate","88,89,90,84,87,85,83,88,89,84,90,87,85,83,88,89,87,90,84,85,83,88,89,90,84,87,85,83,88,89,87,84,90,85,83,88,89,84,90,87,85,83,88,89,84,90,87,85,83,88,89,90,87,85,83,84,88,90,84,87,85,83,89,88,89,84,85,83,87,90,88,89,90,87,84,85,83,88,87,89,84,85,90,83,84,90,89,88,87,85,83,88,90,84,85,83,89,87,88,90,84,87,89,83,85,87,88,89,90,83,85,84"
9
+ "9","Microwave French Toast","99,94,98,101,95,100,93,92,91,97,96,94,99,98,101,95,100,93,92,91,97,96,94,98,101,100,95,93,99,92,91,97,96,94,98,101,95,100,93,99,92,91,97,96,94,98,101,99,95,100,93,92,91,97,96,94,99,98,101,95,100,93,92,91,97,96,94,99,98,101,95,100,93,92,91,97,96,99,94,98,101,100,95,93,92,91,97,96,94,98,99,101,100,95,93,92,91,97,96,94,98,101,95,100,93,99,92,91,97,96,94,98,101,100,95,93,92,91,97,96,99,100,94,98,101,91,95,93,99,92,97,96,99,94,98,101,100,95,91,97,96,92,93,94,98,101,100,95,93,99,92,91,97,96"
10
+ "10","Pinwheels","115,113,112,118,111,107,104,116,110,114,103,106,117,105,108,102,102,102,109,115,113,112,118,111,107,104,116,110,114,103,106,117,105,108,102,102,102,109,115,113,112,118,111,107,104,116,110,114,103,106,117,105,108,102,102,102,109,115,113,112,118,111,107,104,116,110,114,103,106,117,105,108,102,102,102,109,115,113,112,118,111,107,104,116,110,114,103,106,117,105,108,102,102,102,109,115,118,111,107,104,116,110,114,108,102,102,102,109,103,113,112,106,117,105,115,113,112,118,111,107,104,116,110,114,103,106,117,105,108,102,102,102,109,115,113,112,118,111,107,104,116,110,114,103,106,117,105,108,102,102,102,102,109,113,115,112,111,107,104,116,114,110,106,117,105,108,102,102,102,109,103,118,115,111,107,104,113,112,116,106,117,105,114,103,110,118,108,102,102,102,109,115,111,107,113,112,118,116,110,104,106,117,105,108,114,103,109,102,102,102,115,118,111,107,104,116,110,114,103,106,117,105,108,102,102,102,109,112,113"
11
+ "12","Tomato Mozzarella Salad","125,122,119,120,124,123,126,127,121,125,122,119,120,124,127,126,123,121,125,122,119,120,124,127,123,126,121,125,122,119,120,127,123,124,126,121,125,122,119,120,127,123,126,124,121,125,122,119,120,127,126,124,123,121,125,122,119,120,126,124,123,127,121,125,122,119,120,126,127,124,123,121,125,122,119,120,126,127,123,124,121,125,122,119,120,126,123,127,124,121,125,122,119,120,123,127,124,126,121,125,122,119,120,124,123,127,126,121,125,122,119,120,123,126,124,127,121,125,122,119,126,124,123,127,120,121,125,122,119,120,126,127,123,124,121,125,122,119,120,123,127,126,124,121,125,122,119,120,126,127,123,124,121,125,122,119,120,123,127,124,126,121"
12
+ "13","Butter Corn Cup","129,137,132,133,138,130,135,134,131,136,128,76,129,137,132,133,130,138,135,134,131,128,136,76,129,137,132,133,138,130,135,134,131,136,128,76,129,137,132,133,130,138,135,134,131,136,128,76,129,137,132,133,130,138,135,134,136,131,128,76,129,137,132,133,130,138,135,134,131,128,136,76,129,137,132,133,130,138,135,134,131,128,136,76,129,137,132,133,130,135,134,131,128,76,138,136,137,132,133,138,135,136,131,128,76,129,130,134,129,137,132,133,130,138,136,128,76,135,134,131,129,132,130,133,138,134,136,131,76,137,135,128,129,137,132,133,130,131,128,138,135,134,136,76,129,137,132,133,130,138,135,76,136,131,128,134,129,137,132,133,138,130,136,134,131,128,135,76"
13
+ "15","Tomato Chutney","145,140,149,155,150,154,141,139,152,151,148,147,157,142,146,144,153,143,156,145,149,140,155,150,154,139,141,152,151,148,147,157,146,142,144,153,143,156,145,149,155,150,140,154,139,141,152,151,148,147,157,146,142,144,153,143,156,145,149,140,155,150,154,141,139,152,151,148,147,157,142,146,144,153,143,156,154,145,139,149,140,141,152,151,155,148,147,157,146,150,142,144,153,143,156,145,149,155,140,150,154,141,139,152,151,148,147,157,142,146,144,153,143,156,145,154,139,141,140,152,149,151,155,150,148,147,157,142,146,144,153,143,156,154,139,141,151,147,149,155,150,157,146,142,144,153,143,156,145,140,148,152,149,154,141,139,155,145,140,152,151,148,147,150,157,146,142,144,143,156,153,154,149,139,155,145,150,140,141,152,151,148,157,146,142,144,153,143,156,147,149,145,154,140,155,150,139,147,157,142,144,143,156,152,141,151,148,153,146,145,154,141,140,139,152,151,149,148,157,150,146,142,144,153,143,156,147,155,149,145,140,155,154,139,141,150,152,151,148,147,146,157,142,144,143,156,153,145,154,139,140,141,152,149,151,155,150,157,146,147,142,144,153,143,156,148,145,154,139,140,149,141,152,148,151,155,143,150,157,146,142,153,144,156,147"
14
+ "16","Scrambled Eggs","163,158,169,161,176,180,167,177,164,159,173,178,179,166,160,162,165,168,175,170,172,171,174,163,169,167,177,161,158,176,180,164,159,173,178,179,166,160,162,165,168,175,170,172,171,174,161,158,176,163,169,167,177,180,164,159,173,178,179,166,162,160,165,168,175,170,172,171,174,161,164,176,163,180,169,167,177,159,158,173,179,178,166,162,160,165,175,168,170,172,171,174,167,177,164,169,158,163,176,161,180,159,173,178,179,166,162,160,165,168,175,170,172,171,174,176,161,163,164,167,177,159,180,169,158,173,179,178,166,162,160,165,175,168,170,172,171,174,167,169,177,176,161,164,180,159,158,163,173,178,179,166,162,160,165,175,168,170,172,171,174,161,164,167,177,159,169,158,163,176,180,173,178,179,166,160,162,165,175,168,170,172,171,174,163,169,173,168,158,178,161,164,175,176,167,180,179,166,162,165,170,177,159,172,171,160,174,163,168,158,173,178,177,161,176,164,180,179,167,166,162,160,159,165,172,171,174,169,175,170,163,169,173,179,178,158,175,161,168,167,164,177,166,176,162,180,160,165,170,159,172,171,174,173,176,167,163,179,169,161,178,175,166,160,162,165,158,168,164,159,172,171,174,180,177,170,173,168,161,177,178,167,169,176,162,175,160,165,164,180,160,158,159,172,171,174,163,170,179,166,173,163,161,158,167,169,159,175,179,176,164,180,166,162,177,165,170,172,171,174,168,160,178,163,169,176,180,173,161,179,158,166,160,162,165,175,168,170,167,177,164,159,172,171,174,178,173,176,169,178,158,180,168,167,177,161,160,163,162,165,159,179,166,172,171,174,164,175,170"
15
+ "17","Cucumber Raita","183,181,189,191,182,188,185,187,184,190,186,183,181,187,188,189,184,182,191,185,190,186,183,191,189,182,188,185,187,181,184,190,186,183,188,187,189,191,184,182,181,185,190,186,183,187,184,188,191,189,181,182,185,190,186,183,181,187,188,189,182,185,190,184,191,186,189,183,187,184,182,181,188,185,191,190,186,183,189,181,188,182,187,185,184,191,190,186,183,191,181,189,187,182,185,184,190,188,186,183,187,184,188,191,189,181,182,185,190,186,189,183,181,182,185,190,188,184,191,187,186,183,187,189,191,188,181,182,185,190,184,186,183,189,182,191,181,184,187,185,190,186,188,189,183,187,182,188,181,185,191,190,186,184,187,191,183,182,181,188,185,190,184,189,186,188,187,189,183,182,184,181,191,186,185,190,186,188,187,189,181,183,185,184,191,190,186,182,189,185,184,188,187,183,191,190,181,186,182,189,188,181,182,187,191,185,190,184,183,186,181,189,188,182,191,184,183,186,187,185,190"
16
+ "18","Zoodles","203,200,196,204,199,202,201,193,198,194,192,197,195,203,196,204,200,199,202,201,198,194,193,192,197,195,203,200,196,204,199,202,201,193,198,194,192,197,195,200,203,196,204,199,202,201,198,194,193,192,197,195,200,203,196,204,199,202,201,193,194,198,192,197,195,203,200,196,204,199,202,201,194,198,193,192,197,195,200,203,196,204,199,202,201,193,194,198,192,197,195,200,196,204,199,203,202,194,193,201,192,198,197,195,200,196,203,204,199,202,201,193,192,194,198,197,195,196,204,200,199,202,194,193,197,195,203,198,201,192,196,203,200,204,199,202,194,201,198,192,193,197,195,196,200,203,204,199,194,193,201,198,192,195,197,202,196,200,202,204,198,203,194,199,201,193,192,197,195,200,196,199,202,194,198,203,201,204,192,193,197,195,200,196,204,199,202,203,201,198,194,193,192,197,195"
17
+ "20","Sauted Mushrooms","206,176,212,205,214,210,211,215,208,213,209,207,218,217,207,219,220,216,176,211,206,205,214,210,212,215,208,213,209,207,218,217,207,219,220,216,212,206,205,176,214,211,210,215,208,213,209,207,217,218,207,219,220,216,206,205,214,210,176,212,211,215,208,213,209,207,217,218,207,219,220,216,206,205,214,210,176,212,211,215,208,213,209,207,217,218,207,219,220,216,176,206,205,214,210,211,212,215,208,213,209,207,218,217,207,219,220,216,176,206,212,211,205,214,210,215,208,213,209,207,218,217,207,219,220,216,215,206,176,205,214,212,210,208,213,211,207,218,209,207,219,220,216,217,206,176,205,215,212,210,211,208,213,207,217,218,207,220,219,216,209,214,206,205,214,210,215,212,208,213,209,176,207,211,218,217,207,219,216,220,176,214,210,212,215,208,213,209,207,211,218,217,207,219,216,206,220,205,176,215,211,206,217,205,214,212,218,208,213,209,207,219,207,220,216,210,212,215,206,205,176,214,210,208,213,220,207,211,218,207,209,219,216,217,206,215,205,214,176,210,207,217,211,218,207,219,220,208,209,213,216,212"
18
+ "21","Blender Banana Pancakes","225,229,221,232,227,223,231,226,233,228,230,234,222,224,229,225,232,221,227,223,231,226,228,233,230,234,222,224,221,229,225,232,227,233,223,231,226,228,230,234,222,224,232,225,233,229,221,227,223,231,226,228,230,234,222,224,232,229,225,221,233,227,223,231,226,228,230,234,222,224,225,229,221,232,227,233,223,231,226,228,230,234,222,224,232,221,233,225,229,227,223,231,226,228,230,234,222,224,232,225,221,229,233,227,223,231,226,228,230,234,222,224,232,225,221,233,229,227,223,231,226,228,230,234,222,224,229,232,225,227,223,231,226,228,230,233,234,222,224,221,232,229,221,227,223,231,226,233,228,230,234,222,224,225,232,225,221,233,229,227,231,226,228,230,234,222,224,223,229,225,232,221,227,223,231,226,228,230,234,224,233,222,221,225,229,232,227,223,231,226,228,230,224,234,233,222,221,232,233,224,225,227,223,231,226,228,230,234,222,229,225,221,229,232,233,227,223,224,231,226,228,230,234,222,225,221,229,227,232,227,223,231,226,228,230,234,233,222,224,232,221,225,227,229,231,226,228,223,230,233,234,222,224,225,229,221,232,227,223,231,226,233,228,230,234,222,224"
19
+ "22","Herb Omelet with Fried Tomatoes","247,237,246,239,242,249,248,235,240,244,236,241,238,245,243,239,237,247,246,242,249,248,235,240,244,236,241,238,245,243,247,237,246,242,249,239,248,235,240,244,236,241,238,245,243,237,249,247,242,239,246,248,235,240,244,236,241,238,245,243,239,237,242,247,246,235,240,244,249,248,236,241,238,245,243,247,246,237,242,239,249,248,235,240,244,236,241,238,245,243,247,237,239,246,242,249,248,235,240,244,236,241,238,245,243,237,247,242,239,246,249,248,235,240,244,236,241,238,245,243,237,247,246,242,239,249,248,235,240,244,236,241,238,245,243,247,246,235,237,249,240,244,239,242,236,248,241,238,245,243,237,247,246,239,235,240,244,242,244,249,236,241,238,245,243,248,239,249,237,235,247,246,248,240,241,238,245,243,236,244,242,237,249,235,247,246,240,239,248,244,236,242,241,238,245,243,247,239,235,246,249,248,241,240,244,236,237,242,238,245,243,247,237,246,239,249,235,242,248,240,241,244,236,238,245,243,247,237,246,235,240,242,248,244,236,239,249,241,238,245,243,237,249,235,247,246,240,239,248,244,236,242,241,238,245,243"
20
+ "23","Broccoli Stir Fry","273,268,250,270,269,254,257,267,262,271,255,259,252,260,251,263,266,258,265,253,261,274,272,256,264,273,269,257,270,259,267,250,268,254,262,255,252,260,251,271,263,266,258,265,253,261,274,272,256,264,273,269,268,252,254,267,257,270,259,271,250,262,263,255,260,251,266,258,265,253,261,274,272,256,264,252,271,270,250,257,273,268,254,269,262,263,267,255,260,251,259,266,265,258,253,261,274,272,256,264,273,268,250,269,257,252,262,270,267,254,259,255,260,271,251,263,266,265,258,253,261,274,272,256,264,252,271,270,250,254,268,267,273,269,259,257,262,255,260,251,263,266,258,265,253,261,274,272,256,264,252,254,268,257,262,250,270,267,269,273,255,271,263,260,251,259,266,265,258,253,261,274,272,256,264,273,269,257,267,250,254,262,252,268,255,260,270,251,271,263,259,266,265,258,253,261,274,272,256,264,273,269,257,267,271,252,268,254,262,250,270,263,255,260,251,259,266,265,258,253,261,274,272,256,264,273,269,257,270,259,267,250,252,268,254,262,255,271,260,251,263,266,265,258,253,261,274,272,256,264,252,254,250,257,269,271,270,262,273,255,267,268,259,263,260,251,266,265,258,253,261,274,272,256,264,252,254,268,257,262,250,270,255,271,269,259,263,260,273,251,266,258,253,261,274,272,256,264,267,265,257,269,250,252,271,255,268,254,260,251,273,263,270,259,266,265,258,253,261,274,272,256,264,267,262,273,269,271,263,270,271,261,257,262,255,250,251,256,266,259,258,265,268,274,267,272,264,253,260,254,252,257,262,255,268,269,260,251,270,271,250,273,267,256,259,263,265,258,253,261,254,272,252,264,274,266,273,257,262,255,267,271,250,268,270,263,266,260,259,251,252,265,258,253,261,274,272,256,264,254,269"
21
+ "25","Pan Fried Tofu","275,293,291,279,286,276,292,280,285,287,290,282,277,278,284,289,281,288,283,275,293,291,279,286,276,292,280,285,287,290,282,277,278,284,289,281,288,283,275,293,276,286,291,279,292,280,285,287,290,282,278,277,284,289,281,288,283,275,293,291,279,286,276,292,280,285,287,290,282,277,278,284,289,281,288,283,275,293,291,279,286,276,292,280,285,287,290,282,277,278,284,289,281,288,283,275,293,291,279,286,276,292,280,285,287,290,282,277,278,284,289,281,288,283,275,293,291,279,286,276,292,280,285,287,290,282,277,278,284,289,281,288,283,275,293,291,279,286,276,292,280,285,287,290,282,278,277,284,289,281,288,283,291,286,276,275,293,279,292,280,285,287,290,282,278,277,284,289,281,288,283,275,293,291,279,286,276,292,280,285,287,290,282,278,277,284,289,281,288,283,275,286,291,293,279,276,292,280,285,287,290,282,278,277,284,289,281,288,283,275,293,291,279,276,292,285,287,290,282,277,278,284,289,286,281,288,283,280,275,293,279,286,291,276,292,282,289,280,285,287,290,278,281,284,288,283,277,275,286,291,279,292,285,287,278,289,282,277,284,288,283,280,276,293,290,281,275,293,291,279,286,276,292,280,285,287,290,282,277,278,284,289,281,288,283"
22
+ "26","Mug Cake","304,303,310,297,301,299,308,296,313,300,294,307,312,309,305,295,298,311,306,302,304,310,299,297,308,313,300,303,301,296,294,307,312,309,305,295,298,311,306,302,303,299,304,301,297,310,308,313,300,296,294,307,312,309,305,295,298,311,306,302,299,310,303,304,297,301,308,300,296,313,294,307,312,309,305,295,298,311,306,302,297,303,299,304,310,308,313,300,296,301,294,307,312,309,305,295,298,311,306,302,299,303,304,297,310,308,300,313,296,294,301,307,312,309,305,295,298,311,306,302,303,310,297,304,299,308,313,300,296,301,294,307,312,309,305,295,298,311,306,302,310,304,303,299,297,308,313,296,301,300,294,307,312,309,305,295,298,311,306,302,304,299,297,303,310,308,300,313,296,301,294,307,312,309,305,295,298,311,306,302,310,304,297,299,308,296,300,313,303,294,301,307,312,309,305,295,298,311,306,302,299,297,310,308,313,296,303,301,300,294,307,309,305,295,298,306,302,304,312,311,297,304,310,308,313,300,296,294,307,312,309,305,298,306,302,299,303,301,311,295,304,310,299,297,308,300,303,301,296,313,294,307,312,309,305,295,298,311,306,302,304,297,299,303,310,308,301,300,313,294,307,312,309,305,295,298,306,302,296,311,310,299,303,301,304,296,308,307,312,305,309,295,298,311,306,302,300,294,297,313,297,299,304,303,310,308,301,296,313,294,300,307,312,309,298,306,302,295,305,311,304,310,299,297,308,300,303,296,313,301,294,307,312,309,305,295,298,311,306,302"
23
+ "27","Cheese Pimiento","321,322,316,320,323,318,317,315,319,314,324,320,316,321,323,322,318,317,315,314,319,324,316,321,320,323,322,318,317,315,319,314,324,321,316,322,320,323,318,317,319,315,314,324,320,316,321,323,322,318,317,315,319,314,324,316,321,320,323,322,318,317,315,314,319,324,321,322,320,318,316,323,317,315,314,319,324,316,321,322,320,323,317,314,319,315,324,318,321,316,323,322,318,317,319,314,315,324,320,316,320,321,323,322,318,317,315,314,324,319,320,321,322,316,323,318,317,319,314,324,315,320,319,321,318,322,316,323,317,315,314,324,316,321,322,318,320,317,314,319,324,323,315,316,321,322,323,318,317,319,320,314,315,324,320,316,323,321,322,317,318,319,315,314,324"
24
+ "28","Spicy Tuna Avocado Wraps","335,336,328,329,341,327,340,325,339,333,334,331,338,326,332,330,337,336,327,339,328,334,340,329,335,341,325,333,331,338,326,332,330,337,336,335,340,333,341,328,329,327,339,334,331,326,325,338,332,330,337,340,339,327,336,328,333,334,335,331,326,329,338,341,325,332,330,337,339,336,328,340,333,327,334,331,335,341,329,325,338,326,332,330,337,339,329,336,328,327,334,335,340,333,341,325,331,326,338,332,330,337,336,327,329,339,340,333,328,334,335,331,326,338,341,325,332,330,337,340,329,335,336,327,341,339,328,333,334,331,326,338,325,332,330,337,327,335,336,329,340,341,325,328,334,339,333,331,326,338,332,330,337,336,328,327,340,339,334,335,333,329,331,326,338,330,337,341,332,325,335,341,336,340,329,328,327,339,334,325,326,332,330,337,333,331,338,340,329,339,335,336,328,333,341,325,327,331,338,326,334,332,330,337,336,339,340,335,333,329,341,328,332,325,338,327,330,334,331,337,326,336,340,328,335,341,333,327,339,329,334,331,325,338,326,332,330,337,340,335,336,327,333,328,341,339,325,329,334,331,338,332,330,326,337,336,335,340,328,339,341,334,327,333,331,338,329,332,325,326,330,337,336,327,335,329,340,333,339,334,331,341,340,325,326,332,330,337,338,328,336,339,328,335,341,334,331,329,332,338,326,340,325,330,337,327,333"
25
+ "29","Caprese Bruschetta","342,343,346,344,349,352,350,347,351,348,345,343,344,347,342,349,346,350,351,352,348,345,347,342,344,343,349,346,350,352,351,348,345,344,342,347,343,350,351,349,346,352,348,345,344,349,350,347,351,342,343,346,348,352,345,343,342,344,349,347,350,352,346,351,348,345,344,342,349,350,351,346,343,347,352,348,345,347,346,344,342,349,343,350,352,351,348,345,343,350,342,344,349,347,346,351,348,345,352,343,344,347,346,342,350,349,348,352,345,351,346,350,344,347,342,349,352,351,348,345,343,344,347,352,343,350,346,342,348,345,349,351,347,344,343,342,346,348,349,345,350,352,351,344,343,352,342,349,347,350,351,348,346,345,343,350,344,347,346,351,349,348,342,352,345,350,344,347,352,342,343,351,349,346,348,345,346,344,342,350,351,347,349,352,345,343,348,343,344,347,346,342,350,349,348,352,345,351"
annotations/annotation_csv/activity_step_description.csv ADDED
The diff for this file is too large to render. See raw diff
 
annotations/annotation_csv/average_segment_length.csv ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "activity_id","activity_name","average_segment_length"
2
+ "1","Microwave Egg Sandwich","44.965380046582794"
3
+ "2","Dressed Up Meatballs","67.97136912589151"
4
+ "3","Microwave Mug Pizza","40.50214016256435"
5
+ "4","Ramen","39.44753424945708"
6
+ "5","Coffee","52.3711078634185"
7
+ "7","Breakfast Burritos","51.795369371960824"
8
+ "8","Spiced Hot Chocolate","60.09654202663701"
9
+ "9","Microwave French Toast","52.8755955537049"
10
+ "10","Pinwheels","24.009790576312977"
11
+ "12","Tomato Mozzarella Salad","21.319588172194077"
12
+ "13","Butter Corn Cup","48.55222676073647"
13
+ "15","Tomato Chutney","62.295234802266485"
14
+ "16","Scrambled Eggs","52.623681824650276"
15
+ "17","Cucumber Raita","58.86622896352556"
16
+ "18","Zoodles","65.44898472719586"
17
+ "20","Sauted Mushrooms","74.68043071836162"
18
+ "21","Blender Banana Pancakes","48.88797923992791"
19
+ "22","Herb Omelet with Fried Tomatoes","49.849607173282436"
20
+ "23","Broccoli Stir Fry","62.403160023856096"
21
+ "25","Pan Fried Tofu","52.759337816622484"
22
+ "26","Mug Cake","47.383473854309884"
23
+ "27","Cheese Pimiento","54.540675254027185"
24
+ "28","Spicy Tuna Avocado Wraps","52.42426513894933"
25
+ "29","Caprese Bruschetta","76.93263443614958"
26
+ "
27
+ =============================================================================
28
+ "
29
+ "Average","52.62509741177439","5411"
30
+ "
31
+ =============================================================================
32
+ "
annotations/annotation_csv/error_annotations.csv ADDED
The diff for this file is too large to render. See raw diff
 
annotations/annotation_csv/recording_id_step_idx.csv ADDED
@@ -0,0 +1,385 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "recording_id","activity_id","step_indices"
2
+ "1_7","1","3,1,4,12,11,8,6,5,10,9,2,7"
3
+ "2_3","2","21,14,23,17,16,26,27,22,19,24,15,20,18,20,18,25"
4
+ "2_4","2","21,14,16,17,22,26,23,27,19,24,15,20,18,20,18,25"
5
+ "2_5","2","14,16,26,23,17,21,27,22,19,24,15,20,18,20,18,25"
6
+ "2_8","2","14,16,17,27,23,26,22,21,19,24,15,20,18,20,18,25"
7
+ "3_2","3","36,35,28,40,33,38,41,34,37,30,31,39,29,32"
8
+ "3_5","3","36,40,35,28,33,38,41,34,37,30,31,39,29,32"
9
+ "4_2","4","14,51,44,47,46,54,52,55,49,45,50,48,53,42,43"
10
+ "4_3","4","47,14,44,51,46,54,52,55,49,45,48,53,50,42,43"
11
+ "4_5","4","47,44,46,14,51,54,52,55,49,45,50,53,48,42,43"
12
+ "4_7","4","47,14,46,51,54,44,52,55,49,45,53,48,50,42,43"
13
+ "4_9","4","47,14,46,44,51,54,52,55,49,45,53,48,50,42,43"
14
+ "5_2","5","68,69,65,67,62,70,60,64,59,71,58,57,56,61,66,63"
15
+ "5_3","5","68,69,70,62,60,59,64,65,67,71,58,57,56,61,66,63"
16
+ "5_4","5","62,68,65,67,69,60,59,70,58,64,71,57,56,61,66,63"
17
+ "7_1","7","77,72,81,73,74,82,80,76,79,75,78"
18
+ "7_2","7","77,72,73,81,74,80,82,76,79,75,78"
19
+ "7_3","7","77,72,73,82,80,74,81,76,79,75,78"
20
+ "7_5","7","77,72,73,74,82,81,80,76,79,75,78"
21
+ "8_3","8","88,89,90,84,87,85,83"
22
+ "9_2","9","99,94,98,101,95,100,93,92,91,97,96"
23
+ "9_4","9","94,99,98,101,95,100,93,92,91,97,96"
24
+ "9_8","9","94,98,101,100,95,93,99,92,91,97,96"
25
+ "10_6","10","115,113,112,118,111,107,104,116,110,114,103,106,117,105,108,102,102,102,109"
26
+ "10_7","10","115,113,112,118,111,107,104,116,110,114,103,106,117,105,108,102,102,102,109"
27
+ "1_10","1","3,1,4,11,8,6,12,5,10,9,2,7"
28
+ "1_14","1","12,3,1,4,11,8,6,9,5,10,2,7"
29
+ "1_19","1","3,1,4,12,9,11,8,6,5,10,2,7"
30
+ "1_20","1","12,3,1,4,9,11,8,6,5,10,2,7"
31
+ "12_2","12","125,122,119,120,124,123,126,127,121"
32
+ "1_25","1","3,1,4,11,8,12,9,6,5,10,2,7"
33
+ "12_5","12","125,122,119,120,124,127,126,123,121"
34
+ "12_6","12","125,122,119,120,124,127,123,126,121"
35
+ "1_28","1","12,3,1,11,8,6,5,9,10,2,7,4"
36
+ "12_9","12","125,122,119,120,127,123,124,126,121"
37
+ "1_30","1","1,12,4,9,11,6,5,10,2,7,3,8"
38
+ "1_32","1","1,12,4,11,8,6,5,10,9,2,7,3"
39
+ "1_33","1","3,1,12,4,11,8,9,5,10,7,6,2"
40
+ "1_34","1","1,12,4,11,8,9,6,5,10,2,7,3"
41
+ "13_5","13","129,137,132,133,138,130,135,134,131,136,128,76"
42
+ "1_36","1","3,1,5,12,8,6,10,9,2,7,10,11"
43
+ "1_37","1","3,1,4,6,12,9,11,8,5,10,2,7"
44
+ "13_9","13","129,137,132,133,130,138,135,134,131,128,136,76"
45
+ "1_42","1","1,4,11,3,12,9,8,6,5,10,2,7"
46
+ "1_43","1","3,1,4,11,12,8,9,5,10,6,2,7"
47
+ "1_49","1","3,5,10,12,1,4,11,8,6,9,2,7"
48
+ "15_2","15","145,140,149,155,150,154,141,139,152,151,148,147,157,142,146,144,153,143,156"
49
+ "15_4","15","145,149,140,155,150,154,139,141,152,151,148,147,157,146,142,144,153,143,156"
50
+ "15_5","15","145,149,155,150,140,154,139,141,152,151,148,147,157,146,142,144,153,143,156"
51
+ "15_8","15","145,149,140,155,150,154,141,139,152,151,148,147,157,142,146,144,153,143,156"
52
+ "16_1","16","163,158,169,161,176,180,167,177,164,159,173,178,179,166,160,162,165,168,175,170,172,171,174"
53
+ "16_2","16","163,169,167,177,161,158,176,180,164,159,173,178,179,166,160,162,165,168,175,170,172,171,174"
54
+ "16_3","16","161,158,176,163,169,167,177,180,164,159,173,178,179,166,162,160,165,168,175,170,172,171,174"
55
+ "17_3","17","183,181,189,191,182,188,185,187,184,190,186"
56
+ "17_5","17","183,181,187,188,189,184,182,191,185,190,186"
57
+ "17_8","17","183,191,189,182,188,185,187,181,184,190,186"
58
+ "18_2","18","203,200,196,204,199,202,201,193,198,194,192,197,195"
59
+ "18_3","18","203,196,204,200,199,202,201,198,194,193,192,197,195"
60
+ "18_8","18","203,200,196,204,199,202,201,193,198,194,192,197,195"
61
+ "20_9","20","206,176,212,205,214,210,211,215,208,213,209,207,218,217,207,219,220,216"
62
+ "2_13","2","17,23,27,14,19,16,22,26,21,24,15,20,18,20,18,25"
63
+ "21_3","21","225,229,221,232,227,223,231,226,233,228,230,234,222,224"
64
+ "2_17","2","14,22,17,16,27,21,26,19,24,23,15,20,18,20,18,25"
65
+ "21_8","21","229,225,232,221,227,223,231,226,228,233,230,234,222,224"
66
+ "2_19","2","17,23,14,27,22,21,19,16,26,24,15,20,18,20,18,25"
67
+ "2_22","2","22,14,16,26,17,23,27,19,21,24,15,20,18,20,18,25"
68
+ "22_2","22","247,237,246,239,242,249,248,235,240,244,236,241,238,245,243"
69
+ "22_4","22","239,237,247,246,242,249,248,235,240,244,236,241,238,245,243"
70
+ "2_26","2","14,17,16,26,22,21,27,19,23,15,20,18,20,25,24,18"
71
+ "22_6","22","247,237,246,242,249,239,248,235,240,244,236,241,238,245,243"
72
+ "2_28","2","17,19,22,14,23,21,26,24,15,20,18,25,16,27,20,18"
73
+ "22_8","22","237,249,247,242,239,246,248,235,240,244,236,241,238,245,243"
74
+ "2_30","2","17,21,14,27,23,19,16,22,26,24,15,20,20,25,18,18"
75
+ "23_1","23","273,268,250,270,269,254,257,267,262,271,255,259,252,260,251,263,266,258,265,253,261,274,272,256,264"
76
+ "23_5","23","273,269,257,270,259,267,250,268,254,262,255,252,260,251,271,263,266,258,265,253,261,274,272,256,264"
77
+ "23_6","23","273,269,268,252,254,267,257,270,259,271,250,262,263,255,260,251,266,258,265,253,261,274,272,256,264"
78
+ "2_38","2","14,17,16,26,22,27,19,21,24,20,20,18,23,18,25,15"
79
+ "23_9","23","252,271,270,250,257,273,268,254,269,262,263,267,255,260,251,259,266,265,258,253,261,274,272,256,264"
80
+ "2_41","2","22,17,27,19,14,16,26,23,24,15,21,24,20,18,20,18,25"
81
+ "2_42","2","14,23,21,20,22,17,27,19,16,26,24,18,20,15,18,25,18,25"
82
+ "2_46","2","17,14,16,23,20,26,18,22,27,19,24,20,18,25,21,15"
83
+ "2_47","2","14,17,27,19,22,21,20,18,16,23,26,15,24,20,18,25"
84
+ "25_1","25","275,293,291,279,286,276,292,280,285,287,290,282,277,278,284,289,281,288,283"
85
+ "25_2","25","275,293,291,279,286,276,292,280,285,287,290,282,277,278,284,289,281,288,283"
86
+ "25_3","25","275,293,276,286,291,279,292,280,285,287,290,282,278,277,284,289,281,288,283"
87
+ "25_4","25","275,293,291,279,286,276,292,280,285,287,290,282,277,278,284,289,281,288,283"
88
+ "25_5","25","275,293,291,279,286,276,292,280,285,287,290,282,277,278,284,289,281,288,283"
89
+ "25_6","25","275,293,291,279,286,276,292,280,285,287,290,282,277,278,284,289,281,288,283"
90
+ "25_9","25","275,293,291,279,286,276,292,280,285,287,290,282,277,278,284,289,281,288,283"
91
+ "26_4","26","304,303,310,297,301,299,308,296,313,300,294,307,312,309,305,295,298,311,306,302"
92
+ "26_6","26","304,310,299,297,308,313,300,303,301,296,294,307,312,309,305,295,298,311,306,302"
93
+ "26_7","26","303,299,304,301,297,310,308,313,300,296,294,307,312,309,305,295,298,311,306,302"
94
+ "27_3","27","321,322,316,320,323,318,317,315,319,314,324"
95
+ "27_4","27","320,316,321,323,322,318,317,315,314,319,324"
96
+ "27_9","27","316,321,320,323,322,318,317,315,319,314,324"
97
+ "28_2","28","335,336,328,329,341,327,340,325,339,333,334,331,338,326,332,330,337"
98
+ "28_3","28","336,327,339,328,334,340,329,335,341,325,333,331,338,326,332,330,337"
99
+ "28_7","28","336,335,340,333,341,328,329,327,339,334,331,326,325,338,332,330,337"
100
+ "29_5","29","342,343,346,344,349,352,350,347,351,348,345"
101
+ "29_6","29","343,344,347,342,349,346,350,351,352,348,345"
102
+ "29_7","29","347,342,344,343,349,346,350,352,351,348,345"
103
+ "3_11","3","36,35,33,28,40,38,41,34,37,30,31,39,29,32"
104
+ "3_12","3","36,28,33,35,40,38,41,34,37,30,31,39,29,32"
105
+ "3_13","3","36,35,40,33,28,38,41,34,37,30,31,39,29,32"
106
+ "3_14","3","36,40,35,28,33,38,34,41,37,30,31,39,29,32"
107
+ "3_18","3","36,28,40,33,35,38,41,34,37,30,31,39,29,32"
108
+ "3_22","3","36,35,40,28,33,38,34,41,37,30,31,39,29,32"
109
+ "3_34","3","36,35,38,28,40,34,41,37,30,33,39,32,31,29"
110
+ "3_36","3","36,34,33,40,38,41,28,37,35,30,31,30,31,39,29,32"
111
+ "3_46","3","36,35,40,33,28,38,34,41,29,30,31,39,37,32"
112
+ "3_49","3","36,40,33,35,28,38,34,41,29,30,31,39,37,32"
113
+ "3_50","3","36,40,33,39,28,38,41,34,37,30,31,35,29,32"
114
+ "4_17","4","14,47,46,51,44,54,52,55,49,45,53,50,48,42,43"
115
+ "4_20","4","47,14,51,44,46,54,52,55,49,45,48,50,53,42,43"
116
+ "4_22","4","44,14,47,51,46,54,52,55,49,45,50,48,53,42,43"
117
+ "4_24","4","47,14,51,46,54,44,52,55,49,45,48,53,50,42,43"
118
+ "4_30","4","14,51,44,47,46,54,52,55,49,45,49,45,53,48,42,43,50"
119
+ "4_32","4","47,44,14,51,54,52,55,49,45,53,48,42,43,46,50"
120
+ "4_35","4","47,14,46,51,44,54,52,55,45,53,48,42,43,49,50"
121
+ "4_36","4","47,14,51,46,44,54,52,55,49,45,50,48,53,42,43"
122
+ "4_40","4","14,47,51,44,46,53,52,54,49,45,48,50,55,43,42"
123
+ "4_43","4","14,44,47,51,54,46,50,55,49,45,52,45,53,48,42,43"
124
+ "4_44","4","47,14,46,44,52,14,51,54,55,49,45,50,48,53,42,43"
125
+ "5_11","5","65,69,62,60,67,68,59,58,70,64,71,57,56,61,66,63"
126
+ "5_15","5","65,62,67,69,68,70,60,64,59,71,58,57,56,61,66,63"
127
+ "5_18","5","65,68,62,70,69,64,71,67,60,59,58,57,56,61,66,63"
128
+ "5_19","5","69,62,65,68,70,67,60,64,71,59,58,57,56,61,66,63"
129
+ "5_22","5","65,62,67,68,70,69,60,59,64,71,58,57,56,61,66,63"
130
+ "5_24","5","68,69,62,65,70,60,59,67,64,58,71,57,56,61,66,63"
131
+ "5_27","5","68,70,62,69,64,60,59,65,67,58,57,56,61,66,63,71"
132
+ "5_28","5","68,70,65,69,64,71,58,57,56,61,66,63,60,67,62,59"
133
+ "5_35","5","62,65,68,70,60,59,67,64,71,69,58,57,56,66,63,61"
134
+ "5_37","5","69,68,70,64,65,62,60,67,59,58,57,56,61,66,63,71"
135
+ "5_42","5","65,62,60,69,59,67,58,68,70,57,56,61,66,64,71,63"
136
+ "5_44","5","65,60,69,59,67,58,68,70,57,56,61,66,64,71,62,63"
137
+ "7_18","7","77,81,72,73,82,74,80,76,79,75,78"
138
+ "7_19","7","77,72,73,82,80,81,74,76,79,75,78"
139
+ "7_24","7","77,81,72,73,82,80,74,76,79,75,78"
140
+ "7_26","7","77,73,82,74,80,81,79,75,78,72,76"
141
+ "7_30","7","77,72,73,82,80,74,76,75,81,79,78"
142
+ "7_32","7","77,72,73,81,74,82,76,79,78,80,75"
143
+ "7_35","7","77,72,76,74,80,73,82,81,79,75,78"
144
+ "7_38","7","77,81,73,74,82,72,80,79,76,75,78"
145
+ "7_44","7","81,77,72,73,74,80,82,76,79,75,78"
146
+ "7_48","7","81,77,74,73,80,72,82,76,79,75,78"
147
+ "7_50","7","77,81,72,73,79,75,74,78,82,76,80"
148
+ "8_11","8","88,89,84,90,87,85,83"
149
+ "8_15","8","88,89,87,90,84,85,83"
150
+ "8_16","8","88,89,90,84,87,85,83"
151
+ "8_19","8","88,89,87,84,90,85,83"
152
+ "8_20","8","88,89,84,90,87,85,83"
153
+ "8_25","8","88,89,84,90,87,85,83"
154
+ "8_26","8","88,89,90,87,85,83,84"
155
+ "8_30","8","88,90,84,87,85,83,89"
156
+ "8_31","8","88,89,84,85,83,87,90"
157
+ "8_33","8","88,89,90,87,84,85,83"
158
+ "8_35","8","88,87,89,84,85,90,83"
159
+ "8_40","8","84,90,89,88,87,85,83"
160
+ "8_44","8","88,90,84,85,83,89,87"
161
+ "8_45","8","88,90,84,87,89,83,85"
162
+ "8_50","8","87,88,89,90,83,85,84"
163
+ "9_12","9","94,98,101,95,100,93,99,92,91,97,96"
164
+ "9_13","9","94,98,101,99,95,100,93,92,91,97,96"
165
+ "9_15","9","94,99,98,101,95,100,93,92,91,97,96"
166
+ "9_19","9","94,99,98,101,95,100,93,92,91,97,96"
167
+ "9_22","9","99,94,98,101,100,95,93,92,91,97,96"
168
+ "9_24","9","94,98,99,101,100,95,93,92,91,97,96"
169
+ "9_25","9","94,98,101,95,100,93,99,92,91,97,96"
170
+ "9_36","9","94,98,101,100,95,93,92,91,97,96,99"
171
+ "9_45","9","100,94,98,101,91,95,93,99,92,97,96"
172
+ "9_47","9","99,94,98,101,100,95,91,97,96,92,93"
173
+ "10_16","10","115,113,112,118,111,107,104,116,110,114,103,106,117,105,108,102,102,102,109"
174
+ "10_18","10","115,113,112,118,111,107,104,116,110,114,103,106,117,105,108,102,102,102,109"
175
+ "10_24","10","115,113,112,118,111,107,104,116,110,114,103,106,117,105,108,102,102,102,109"
176
+ "10_26","10","115,118,111,107,104,116,110,114,108,102,102,102,109,103,113,112,106,117,105"
177
+ "10_31","10","115,113,112,118,111,107,104,116,110,114,103,106,117,105,108,102,102,102,109"
178
+ "10_42","10","115,113,112,118,111,107,104,116,110,114,103,106,117,105,108,102,102,102,102,109"
179
+ "10_46","10","113,115,112,111,107,104,116,114,110,106,117,105,108,102,102,102,109,103,118"
180
+ "10_47","10","115,111,107,104,113,112,116,106,117,105,114,103,110,118,108,102,102,102,109"
181
+ "10_48","10","115,111,107,113,112,118,116,110,104,106,117,105,108,114,103,109,102,102,102"
182
+ "10_50","10","115,118,111,107,104,116,110,114,103,106,117,105,108,102,102,102,109,112,113"
183
+ "1_136","1","3,1,5,12,8,6,9,4,2,10,11,7"
184
+ "1_143","1","3,1,4,11,12,8,9,5,10,6,2,7"
185
+ "12_10","12","125,122,119,120,127,123,126,124,121"
186
+ "12_12","12","125,122,119,120,127,126,124,123,121"
187
+ "12_13","12","125,122,119,120,126,124,123,127,121"
188
+ "12_15","12","125,122,119,120,126,127,124,123,121"
189
+ "12_16","12","125,122,119,120,126,127,123,124,121"
190
+ "12_17","12","125,122,119,120,126,123,127,124,121"
191
+ "12_19","12","125,122,119,120,123,127,124,126,121"
192
+ "12_26","12","125,122,119,120,124,123,127,126,121"
193
+ "12_38","12","125,122,119,120,123,126,124,127,121"
194
+ "12_41","12","125,122,119,126,124,123,127,120,121"
195
+ "12_43","12","125,122,119,120,126,127,123,124,121"
196
+ "12_48","12","125,122,119,120,123,127,126,124,121"
197
+ "12_51","12","125,122,119,120,126,127,123,124,121"
198
+ "13_12","13","129,137,132,133,138,130,135,134,131,136,128,76"
199
+ "13_14","13","129,137,132,133,130,138,135,134,131,136,128,76"
200
+ "13_18","13","129,137,132,133,130,138,135,134,136,131,128,76"
201
+ "13_20","13","129,137,132,133,130,138,135,134,131,128,136,76"
202
+ "13_24","13","129,137,132,133,130,138,135,134,131,128,136,76"
203
+ "13_31","13","129,137,132,133,130,135,134,131,128,76,138,136"
204
+ "13_32","13","137,132,133,138,135,136,131,128,76,129,130,134"
205
+ "13_36","13","129,137,132,133,130,138,136,128,76,135,134,131"
206
+ "13_38","13","129,132,130,133,138,134,136,131,76,137,135,128"
207
+ "13_41","13","129,137,132,133,130,131,128,138,135,134,136,76"
208
+ "13_44","13","129,137,132,133,130,138,135,76,136,131,128,134"
209
+ "13_45","13","129,137,132,133,138,130,136,134,131,128,135,76"
210
+ "15_17","15","154,145,139,149,140,141,152,151,155,148,147,157,146,150,142,144,153,143,156"
211
+ "15_18","15","145,149,155,140,150,154,141,139,152,151,148,147,157,142,146,144,153,143,156"
212
+ "15_19","15","145,154,139,141,140,152,149,151,155,150,148,147,157,142,146,144,153,143,156"
213
+ "15_28","15","154,139,141,151,147,149,155,150,157,146,142,144,153,143,156,145,140,148,152"
214
+ "15_29","15","149,154,141,139,155,145,140,152,151,148,147,150,157,146,142,144,143,156,153"
215
+ "15_30","15","154,149,139,155,145,150,140,141,152,151,148,157,146,142,144,153,143,156,147"
216
+ "15_33","15","149,145,154,140,155,150,139,147,157,142,144,143,156,152,141,151,148,153,146"
217
+ "15_37","15","145,154,141,140,139,152,151,149,148,157,150,146,142,144,153,143,156,147,155"
218
+ "15_39","15","149,145,140,155,154,139,141,150,152,151,148,147,146,157,142,144,143,156,153"
219
+ "15_41","15","145,154,139,140,141,152,149,151,155,150,157,146,147,142,144,153,143,156,148"
220
+ "15_46","15","145,154,139,140,149,141,152,148,151,155,143,150,157,146,142,153,144,156,147"
221
+ "16_10","16","161,164,176,163,180,169,167,177,159,158,173,179,178,166,162,160,165,175,168,170,172,171,174"
222
+ "16_17","16","167,177,164,169,158,163,176,161,180,159,173,178,179,166,162,160,165,168,175,170,172,171,174"
223
+ "16_18","16","176,161,163,164,167,177,159,180,169,158,173,179,178,166,162,160,165,175,168,170,172,171,174"
224
+ "16_20","16","167,169,177,176,161,164,180,159,158,163,173,178,179,166,162,160,165,175,168,170,172,171,174"
225
+ "16_23","16","161,164,167,177,159,169,158,163,176,180,173,178,179,166,160,162,165,175,168,170,172,171,174"
226
+ "16_26","16","163,169,173,168,158,178,161,164,175,176,167,180,179,166,162,165,170,177,159,172,171,160,174"
227
+ "16_27","16","163,168,158,173,178,177,161,176,164,180,179,167,166,162,160,159,165,172,171,174,169,175,170"
228
+ "16_28","16","163,169,173,179,178,158,175,161,168,167,164,177,166,176,162,180,160,165,170,159,172,171,174"
229
+ "16_35","16","173,176,167,163,179,169,161,178,175,166,160,162,165,158,168,164,159,172,171,174,180,177,170"
230
+ "16_39","16","173,168,161,177,178,167,169,176,162,175,160,165,164,180,160,158,159,172,171,174,163,170,179,166"
231
+ "16_40","16","173,163,161,158,167,169,159,175,179,176,164,180,166,162,177,165,170,172,171,174,168,160,178"
232
+ "16_42","16","163,169,176,180,173,161,179,158,166,160,162,165,175,168,170,167,177,164,159,172,171,174,178"
233
+ "16_44","16","173,176,169,178,158,180,168,167,177,161,160,163,162,165,159,179,166,172,171,174,164,175,170"
234
+ "17_10","17","183,188,187,189,191,184,182,181,185,190,186"
235
+ "17_11","17","183,187,184,188,191,189,181,182,185,190,186"
236
+ "17_14","17","183,181,187,188,189,182,185,190,184,191,186"
237
+ "17_15","17","189,183,187,184,182,181,188,185,191,190,186"
238
+ "17_16","17","183,189,181,188,182,187,185,184,191,190,186"
239
+ "17_19","17","183,191,181,189,187,182,185,184,190,188,186"
240
+ "17_20","17","183,187,184,188,191,189,181,182,185,190,186"
241
+ "17_21","17","189,183,181,182,185,190,188,184,191,187,186"
242
+ "17_23","17","183,187,189,191,188,181,182,185,190,184,186"
243
+ "17_28","17","183,189,182,191,181,184,187,185,190,186,188"
244
+ "17_29","17","189,183,187,182,188,181,185,191,190,186,184"
245
+ "17_36","17","187,191,183,182,181,188,185,190,184,189,186"
246
+ "17_37","17","188,187,189,183,182,184,181,191,186,185,190,186"
247
+ "17_40","17","188,187,189,181,183,185,184,191,190,186,182"
248
+ "17_43","17","189,185,184,188,187,183,191,190,181,186,182"
249
+ "17_45","17","189,188,181,182,187,191,185,190,184,183,186"
250
+ "17_49","17","181,189,188,182,191,184,183,186,187,185,190"
251
+ "18_11","18","200,203,196,204,199,202,201,198,194,193,192,197,195"
252
+ "18_12","18","200,203,196,204,199,202,201,193,194,198,192,197,195"
253
+ "18_19","18","203,200,196,204,199,202,201,194,198,193,192,197,195"
254
+ "18_24","18","200,203,196,204,199,202,201,193,194,198,192,197,195"
255
+ "18_27","18","200,196,204,199,203,202,194,193,201,192,198,197,195"
256
+ "18_28","18","200,196,203,204,199,202,201,193,192,194,198,197,195"
257
+ "18_31","18","196,204,200,199,202,194,193,197,195,203,198,201,192"
258
+ "18_33","18","196,203,200,204,199,202,194,201,198,192,193,197,195"
259
+ "18_41","18","196,200,203,204,199,194,193,201,198,192,195,197,202"
260
+ "18_45","18","196,200,202,204,198,203,194,199,201,193,192,197,195"
261
+ "18_49","18","200,196,199,202,194,198,203,201,204,192,193,197,195"
262
+ "20_14","20","176,211,206,205,214,210,212,215,208,213,209,207,218,217,207,219,220,216"
263
+ "20_16","20","212,206,205,176,214,211,210,215,208,213,209,207,217,218,207,219,220,216"
264
+ "20_17","20","206,205,214,210,176,212,211,215,208,213,209,207,217,218,207,219,220,216"
265
+ "20_19","20","206,205,214,210,176,212,211,215,208,213,209,207,217,218,207,219,220,216"
266
+ "20_22","20","176,206,205,214,210,211,212,215,208,213,209,207,218,217,207,219,220,216"
267
+ "20_25","20","176,206,212,211,205,214,210,215,208,213,209,207,218,217,207,219,220,216"
268
+ "20_26","20","215,206,176,205,214,212,210,208,213,211,207,218,209,207,219,220,216,217"
269
+ "20_29","20","206,176,205,215,212,210,211,208,213,207,217,218,207,220,219,216,209,214"
270
+ "20_32","20","206,205,214,210,215,212,208,213,209,176,207,211,218,217,207,219,216,220"
271
+ "20_39","20","176,214,210,212,215,208,213,209,207,211,218,217,207,219,216,206,220,205"
272
+ "20_44","20","176,215,211,206,217,205,214,212,218,208,213,209,207,219,207,220,216,210"
273
+ "20_47","20","212,215,206,205,176,214,210,208,213,220,207,211,218,207,209,219,216,217"
274
+ "20_48","20","206,215,205,214,176,210,207,217,211,218,207,219,220,208,209,213,216,212"
275
+ "21_11","21","221,229,225,232,227,233,223,231,226,228,230,234,222,224"
276
+ "21_14","21","232,225,233,229,221,227,223,231,226,228,230,234,222,224"
277
+ "21_15","21","232,229,225,221,233,227,223,231,226,228,230,234,222,224"
278
+ "21_17","21","225,229,221,232,227,233,223,231,226,228,230,234,222,224"
279
+ "21_19","21","232,221,233,225,229,227,223,231,226,228,230,234,222,224"
280
+ "21_24","21","232,225,221,229,233,227,223,231,226,228,230,234,222,224"
281
+ "21_25","21","232,225,221,233,229,227,223,231,226,228,230,234,222,224"
282
+ "21_28","21","229,232,225,227,223,231,226,228,230,233,234,222,224,221"
283
+ "21_29","21","232,229,221,227,223,231,226,233,228,230,234,222,224,225"
284
+ "21_32","21","232,225,221,233,229,227,231,226,228,230,234,222,224,223"
285
+ "21_37","21","229,225,232,221,227,223,231,226,228,230,234,224,233,222"
286
+ "21_43","21","221,225,229,232,227,223,231,226,228,230,224,234,233,222"
287
+ "21_44","21","221,232,233,224,225,227,223,231,226,228,230,234,222,229"
288
+ "21_46","21","225,221,229,232,233,227,223,224,231,226,228,230,234,222"
289
+ "21_47","21","225,221,229,227,232,227,223,231,226,228,230,234,233,222,224"
290
+ "21_50","21","232,221,225,227,229,231,226,228,223,230,233,234,222,224"
291
+ "22_10","22","239,237,242,247,246,235,240,244,249,248,236,241,238,245,243"
292
+ "22_13","22","247,246,237,242,239,249,248,235,240,244,236,241,238,245,243"
293
+ "22_21","22","247,237,239,246,242,249,248,235,240,244,236,241,238,245,243"
294
+ "22_24","22","237,247,242,239,246,249,248,235,240,244,236,241,238,245,243"
295
+ "22_26","22","237,247,246,242,239,249,248,235,240,244,236,241,238,245,243"
296
+ "22_30","22","247,246,235,237,249,240,244,239,242,236,248,241,238,245,243"
297
+ "22_31","22","237,247,246,239,235,240,244,242,244,249,236,241,238,245,243,248"
298
+ "22_32","22","239,249,237,235,247,246,248,240,241,238,245,243,236,244,242"
299
+ "22_37","22","237,249,235,247,246,240,239,248,244,236,242,241,238,245,243"
300
+ "22_38","22","247,239,235,246,249,248,241,240,244,236,237,242,238,245,243"
301
+ "22_40","22","247,237,246,239,249,235,242,248,240,241,244,236,238,245,243"
302
+ "22_41","22","247,237,246,235,240,242,248,244,236,239,249,241,238,245,243"
303
+ "23_12","23","273,268,250,269,257,252,262,270,267,254,259,255,260,271,251,263,266,265,258,253,261,274,272,256,264"
304
+ "23_16","23","252,271,270,250,254,268,267,273,269,259,257,262,255,260,251,263,266,258,265,253,261,274,272,256,264"
305
+ "23_17","23","252,254,268,257,262,250,270,267,269,273,255,271,263,260,251,259,266,265,258,253,261,274,272,256,264"
306
+ "23_18","23","273,269,257,267,250,254,262,252,268,255,260,270,251,271,263,259,266,265,258,253,261,274,272,256,264"
307
+ "23_19","23","273,269,257,267,271,252,268,254,262,250,270,263,255,260,251,259,266,265,258,253,261,274,272,256,264"
308
+ "23_23","23","273,269,257,270,259,267,250,252,268,254,262,255,271,260,251,263,266,265,258,253,261,274,272,256,264"
309
+ "23_24","23","252,254,250,257,269,271,270,262,273,255,267,268,259,263,260,251,266,265,258,253,261,274,272,256,264"
310
+ "23_26","23","252,254,268,257,262,250,270,255,271,269,259,263,260,273,251,266,258,253,261,274,272,256,264,267,265"
311
+ "23_32","23","257,269,250,252,271,255,268,254,260,251,273,263,270,259,266,265,258,253,261,274,272,256,264,267,262"
312
+ "23_38","23","273,269,271,263,270,271,261,257,262,255,250,251,256,266,259,258,265,268,274,267,272,264,253,260,254,252"
313
+ "23_39","23","257,262,255,268,269,260,251,270,271,250,273,267,256,259,263,265,258,253,261,254,272,252,264,274,266"
314
+ "23_41","23","273,257,262,255,267,271,250,268,270,263,266,260,259,251,252,265,258,253,261,274,272,256,264,254,269"
315
+ "25_11","25","275,293,291,279,286,276,292,280,285,287,290,282,278,277,284,289,281,288,283"
316
+ "25_13","25","291,286,276,275,293,279,292,280,285,287,290,282,278,277,284,289,281,288,283"
317
+ "25_22","25","275,293,291,279,286,276,292,280,285,287,290,282,278,277,284,289,281,288,283"
318
+ "25_40","25","275,286,291,293,279,276,292,280,285,287,290,282,278,277,284,289,281,288,283"
319
+ "25_41","25","275,293,291,279,276,292,285,287,290,282,277,278,284,289,286,281,288,283,280"
320
+ "25_42","25","275,293,279,286,291,276,292,282,289,280,285,287,290,278,281,284,288,283,277"
321
+ "25_48","25","275,286,291,279,292,285,287,278,289,282,277,284,288,283,280,276,293,290,281"
322
+ "26_17","26","299,310,303,304,297,301,308,300,296,313,294,307,312,309,305,295,298,311,306,302"
323
+ "26_18","26","297,303,299,304,310,308,313,300,296,301,294,307,312,309,305,295,298,311,306,302"
324
+ "26_19","26","299,303,304,297,310,308,300,313,296,294,301,307,312,309,305,295,298,311,306,302"
325
+ "26_20","26","303,310,297,304,299,308,313,300,296,301,294,307,312,309,305,295,298,311,306,302"
326
+ "26_22","26","310,304,303,299,297,308,313,296,301,300,294,307,312,309,305,295,298,311,306,302"
327
+ "26_24","26","304,299,297,303,310,308,300,313,296,301,294,307,312,309,305,295,298,311,306,302"
328
+ "26_29","26","310,304,297,299,308,296,300,313,303,294,301,307,312,309,305,295,298,311,306,302"
329
+ "26_30","26","299,297,310,308,313,296,303,301,300,294,307,309,305,295,298,306,302,304,312,311"
330
+ "26_34","26","297,304,310,308,313,300,296,294,307,312,309,305,298,306,302,299,303,301,311,295"
331
+ "26_36","26","304,310,299,297,308,300,303,301,296,313,294,307,312,309,305,295,298,311,306,302"
332
+ "26_39","26","304,297,299,303,310,308,301,300,313,294,307,312,309,305,295,298,306,302,296,311"
333
+ "26_42","26","310,299,303,301,304,296,308,307,312,305,309,295,298,311,306,302,300,294,297,313"
334
+ "26_46","26","297,299,304,303,310,308,301,296,313,294,300,307,312,309,298,306,302,295,305,311"
335
+ "27_13","27","321,316,322,320,323,318,317,319,315,314,324"
336
+ "27_15","27","320,316,321,323,322,318,317,315,319,314,324"
337
+ "27_17","27","316,321,320,323,322,318,317,315,314,319,324"
338
+ "27_18","27","321,322,320,318,316,323,317,315,314,319,324"
339
+ "27_26","27","316,321,322,320,323,317,314,319,315,324,318"
340
+ "27_29","27","321,316,323,322,318,317,319,314,315,324,320"
341
+ "27_31","27","316,320,321,323,322,318,317,315,314,324,319"
342
+ "27_34","27","320,321,322,316,323,318,317,319,314,324,315"
343
+ "27_37","27","320,319,321,318,322,316,323,317,315,314,324"
344
+ "27_38","27","316,321,322,318,320,317,314,319,324,323,315"
345
+ "27_45","27","316,321,322,323,318,317,319,320,314,315,324"
346
+ "27_49","27","320,316,323,321,322,317,318,319,315,314,324"
347
+ "28_10","28","340,339,327,336,328,333,334,335,331,326,329,338,341,325,332,330,337"
348
+ "28_14","28","339,336,328,340,333,327,334,331,335,341,329,325,338,326,332,330,337"
349
+ "28_16","28","339,329,336,328,327,334,335,340,333,341,325,331,326,338,332,330,337"
350
+ "28_21","28","336,327,329,339,340,333,328,334,335,331,326,338,341,325,332,330,337"
351
+ "28_24","28","340,329,335,336,327,341,339,328,333,334,331,326,338,325,332,330,337"
352
+ "28_25","28","327,335,336,329,340,341,325,328,334,339,333,331,326,338,332,330,337"
353
+ "28_26","28","336,328,327,340,339,334,335,333,329,331,326,338,330,337,341,332,325"
354
+ "28_28","28","335,341,336,340,329,328,327,339,334,325,326,332,330,337,333,331,338"
355
+ "28_29","28","340,329,339,335,336,328,333,341,325,327,331,338,326,334,332,330,337"
356
+ "28_38","28","336,339,340,335,333,329,341,328,332,325,338,327,330,334,331,337,326"
357
+ "28_42","28","336,340,328,335,341,333,327,339,329,334,331,325,338,326,332,330,337"
358
+ "28_44","28","340,335,336,327,333,328,341,339,325,329,334,331,338,332,330,326,337"
359
+ "28_45","28","336,335,340,328,339,341,334,327,333,331,338,329,332,325,326,330,337"
360
+ "28_49","28","336,327,335,329,340,333,339,334,331,341,340,325,326,332,330,337,338,328"
361
+ "28_50","28","336,339,328,335,341,334,331,329,332,338,326,340,325,330,337,327,333"
362
+ "29_15","29","344,342,347,343,350,351,349,346,352,348,345"
363
+ "29_17","29","344,349,350,347,351,342,343,346,348,352,345"
364
+ "29_18","29","343,342,344,349,347,350,352,346,351,348,345"
365
+ "29_19","29","344,342,349,350,351,346,343,347,352,348,345"
366
+ "29_22","29","347,346,344,342,349,343,350,352,351,348,345"
367
+ "29_28","29","343,350,342,344,349,347,346,351,348,345,352"
368
+ "29_29","29","343,344,347,346,342,350,349,348,352,345,351"
369
+ "29_32","29","346,350,344,347,342,349,352,351,348,345,343"
370
+ "29_34","29","344,347,352,343,350,346,342,348,345,349,351"
371
+ "29_35","29","347,344,343,342,346,348,349,345,350,352,351"
372
+ "29_37","29","344,343,352,342,349,347,350,351,348,346,345"
373
+ "29_45","29","343,350,344,347,346,351,349,348,342,352,345"
374
+ "29_48","29","350,344,347,352,342,343,351,349,346,348,345"
375
+ "29_49","29","346,344,342,350,351,347,349,352,345,343,348"
376
+ "4_122","4","44,14,47,51,46,54,52,55,49,45,50,48,53,42,43"
377
+ "7_135","7","77,72,74,80,73,82,81,79,75,78,76"
378
+ "9_108","9","94,98,101,100,95,93,99,92,91,97,96"
379
+ "12_119","12","125,122,119,120,123,127,124,126,121"
380
+ "18_101","18","200,196,204,199,202,203,201,198,194,193,192,197,195"
381
+ "21_103","21","225,229,221,232,227,223,231,226,233,228,230,234,222,224"
382
+ "22_137","22","237,249,235,247,246,240,239,248,244,236,242,241,238,245,243"
383
+ "25_109","25","275,293,291,279,286,276,292,280,285,287,290,282,277,278,284,289,281,288,283"
384
+ "26_136","26","304,310,299,297,308,300,303,296,313,301,294,307,312,309,305,295,298,311,306,302"
385
+ "29_129","29","343,344,347,346,342,350,349,348,352,345,351"
annotations/annotation_csv/step_idx_description.csv ADDED
@@ -0,0 +1,351 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "step_idx","step_description"
2
+ "1","Pour-Pour 1 egg into the ramekin cup"
3
+ "2","Place -Place the egg from the cup over the lettuce"
4
+ "3","Coat -Coat a 6-oz. ramekin cup with cooking spray"
5
+ "4","Microwave-Microwave the ramekin cup uncovered on high for 30 seconds"
6
+ "5","sprinkle -sprinkle 1 tablespoon of cheese on cup"
7
+ "6","Top -Top cup with 1 tablespoon of salsa"
8
+ "7","replace -replace the top of the English muffin"
9
+ "8","Microwave -Continue to Microwave for 15-30 more seconds or until the egg is almost set"
10
+ "9","Line -Line the bottom piece of the English muffin with lettuce"
11
+ "10","Microwave -Microwave just until cheese melts, about 10 seconds"
12
+ "11","stir-stir the ramekin cup"
13
+ "12","Cut -Cut the English muffin into two pieces with a knife"
14
+ "14","Peel-Peel 1 garlic clove"
15
+ "15","Pour-Pour the sauces over the meatballs"
16
+ "16","Cut-Cut 1/8 garlic clove"
17
+ "17","Peel-Peel one medium onion"
18
+ "18","Stir-Stir the contents in the microwave with a spoon"
19
+ "19","Slice-Slice 1/8 medium onion"
20
+ "20","Microwave-Microwave the plate, covered, on high for 1.5 minutes"
21
+ "21","Place-Place 5 meatballs in a Microwave-safe plate"
22
+ "22","Cut-Cut 1/4 medium carrot into short, thin strips"
23
+ "23","Mix-Mix 1/4 cup sweet-and-sour sauce and 1/2 teaspoon soy sauce in a small bowl"
24
+ "24","Top-Top the plate with the carrots, onion, garlic and 1/4 tsp pepper powder"
25
+ "25","Microwave-Microwave for 1 more minute"
26
+ "26","Mince-Mince 1/8 garlic clove"
27
+ "27","cut-Cut onion into two pieces"
28
+ "28","add-Measure 1/8 teaspoon of salt and add it to the mug"
29
+ "29","Sprinkle-Sprinkle dried Italian herbs inside the mug"
30
+ "30","Take-Take 1 tablespoon of marinara sauce"
31
+ "31","spread-spread marinara sauce around the surface of the batter"
32
+ "32","Microwave-Microwave for 1 minute 20 seconds, or until it rises and the toppings are bubbling"
33
+ "33","add-Measure 4 tablespoons of flour and add it to the mug"
34
+ "34","Add-1 tablespoon of olive oil to the mug"
35
+ "35","add-Measure 1/16 teaspoon of baking soda and add it to the mug"
36
+ "36","Take-Take a microwavable mug"
37
+ "37","Mix-Mix the contents of the mug thoroughly. (There might be some lumps, but that is ok.)"
38
+ "38","Stir-Stir the contents in the mug well"
39
+ "39","Sprinkle-Sprinkle 1 generous tablespoon of mozzarella cheese on top of the sauce"
40
+ "40","add-Measure 1/8 teaspoon of baking powder and add it to the mug"
41
+ "41","Add-Add in 3 tablespoons of milk to the mug"
42
+ "42","Mix-Mix in the flavour packet to the bowl"
43
+ "43","Stir-Stir noodles with a spoon or fork until the flavouring dissolves"
44
+ "44","Remove-Remove the noodles from the package(Break Noodles / Keep them as a block)"
45
+ "45","Microwave-Microwave the ramen for 4 minutes"
46
+ "46","slice-slice 1/4 medium onion into pieces"
47
+ "47","Peel-Peel 1 medium onion"
48
+ "48","Let-Let the noodles sit for about 1 minute after the microwave stops"
49
+ "49","Cover-Cover with a lid (or paper towel) to prevent splattering"
50
+ "50","Add-Add basil to the bowl"
51
+ "51","Chop-Chop 1 garlic clove on a cutting board"
52
+ "52","Add-Add the noodles to the bowl"
53
+ "53","Add-Add chopped cilantro to the bowl"
54
+ "54","Put-Put all the Vegetables in a microwave-safe bowl"
55
+ "55","cover-cover the noodles with water"
56
+ "56","Wait-Wait about 30 seconds for the coffee to bloom. (You will see small bubbles or foam on the coffee grounds during this step.)"
57
+ "57","Pour-Pour a small amount of water into the filter to wet the grounds"
58
+ "58","Transfer-Transfer the grounds to the filter cone"
59
+ "59","spread-spread open filter in dripper to create a cone"
60
+ "60","Place-Place the paper filter in the dripper"
61
+ "61","pour-Slowly pour the rest of the water over the grounds in a circular motion. Do not overfill beyond the top of the paper filter"
62
+ "62","Prepare-Prepare the filter insert by folding the paper filter in half to create a semi-circle, and in half again to create a quarter-circle"
63
+ "63","Discard-Discard the paper filter and coffee grounds"
64
+ "64","Boil-Boil the water. (While the water is boiling, assemble the filter cone)"
65
+ "65","Weigh-Weigh the coffee beans (0.8oz-0.12 oz)"
66
+ "66","drain-Let the coffee drain completely into the mug before removing the dripper"
67
+ "67","Grind-Grind the coffee beans until the coffee grounds are the consistency of coarse sand, about 20 seconds"
68
+ "68","Measure-Measure 12 ounces of cold water"
69
+ "69","Place-Place the dripper on top of a coffee mug"
70
+ "70","transfer-transfer water to a kettle"
71
+ "71","check-Once the water has boiled, check the temperature of the water. (The water should be between 195-205 degrees Fahrenheit or between 91-96 degrees Celsius. If the water is too hot, let it cool briefly.)"
72
+ "72","Whisk-Whisk the egg"
73
+ "73","Microwave-Microwave for 3 minutes, stirring in between"
74
+ "74","Add-Add 1/2 tbsp sweet and sour sauce to the bowl"
75
+ "75","Sprinkle-Sprinkle 1 tbsp shredded cheddar cheese on top of the egg"
76
+ "76","Mix-Mix the contents of the bowl well"
77
+ "77","add-Extract and add contents of an egg to a microwave-safe bowl"
78
+ "78","Roll-Roll the tortilla from one end to another into a log shape, about 1.5 inches thick. Roll it tight enough to prevent gaps but not so tight that the filling leaks"
79
+ "79","Pour-Pour egg mixture on top of the tortilla"
80
+ "80","Add-Add 1 tbsp salsa to the bowl"
81
+ "81","Place-Place 8 inch tortilla on a cutting board"
82
+ "82","Sprinkle-Sprinkle oregano in the bowl"
83
+ "83","Heat-Heat the contents of the mug for 1 minute and serve"
84
+ "84","Add-Add 1/5 teaspoon cinnamon to the mug"
85
+ "85","Mix-Mix the contents of the mug"
86
+ "87","Add-Add 1 teaspoon of white sugar to the mug"
87
+ "88","Fill-Fill a microwave-safe mug with skimmed milk"
88
+ "89","Microwave-Microwave the contents of the mug for 1 minute"
89
+ "90","Add-Add 2 pieces of chocolate to the mug"
90
+ "91","Microwave-Microwave on high for 90 seconds until the egg is cooked through"
91
+ "92","add-add bread pieces to the egg mixture in the mug, pressing the bread down into the egg"
92
+ "93","stir-stir the mug"
93
+ "94","melt-In a large mug, melt 1 tablespoon of softened butter in the microwave for about 30 seconds"
94
+ "95","Sprinkle-Sprinkle 1/4 teaspoon cinnamon over the egg"
95
+ "96","cut-cut the contents on plate, and serve"
96
+ "97","Put-Put the mug's contents on a plate"
97
+ "98","Roll-Roll the butter around in the mug to coat it"
98
+ "99","Cut or tear-Cut or tear 1 slices of bread into bite-size pieces"
99
+ "100","Add-Add 1/4 teaspoon vanilla extract to the mug"
100
+ "101","whisk-In the mug, whisk one egg with a fork until well blended"
101
+ "102","slicing-Continue slicing with floss to create 1 more pinwheel"
102
+ "103","Discard-Discard ends of the tortilla"
103
+ "104","Clean-Clean the knife by wiping with a paper towel"
104
+ "105","Cross-Cross the floss's two ends over the tortilla roll's top"
105
+ "106","Slide-Slide floss under the tortilla, perpendicular to the length of the roll"
106
+ "107","Spread-Spread jelly over the nut butter"
107
+ "108","pull-pull the floss ends in opposite directions to slice"
108
+ "109","Place-Place the pinwheels on a plate"
109
+ "110","Secure-Secure the rolled tortilla by inserting 5 toothpicks about 1 inch apart"
110
+ "111","scoop-Use the knife to scoop jelly from the jar"
111
+ "112","Spread-Spread nut butter onto the tortilla, leaving 1/2-inch uncovered at the edges"
112
+ "113","scoop-Use a butter knife to scoop nut butter from the jar"
113
+ "114","Trim-Trim the ends of the tortilla roll with the butter knife, leaving 1/2 inch margin between the last toothpick and the end of the roll"
114
+ "115","Place-Place 8-inch flour tortilla on cutting board"
115
+ "116","Roll-Roll the tortilla from one end to the other into a log shape, about 1.5 inches thick. Roll it tight enough to prevent gaps, but not so tight that the filling leaks"
116
+ "117","Place-Place the floss halfway between toothpicks"
117
+ "118","Clean-Clean the knife by wiping it with a paper towel"
118
+ "119","Slice-Slice one tomato into about 1/2 inch thick slices"
119
+ "120","Place-Place the thick slices of tomatoes on a platter, ensuring they only make a single layer"
120
+ "121","Add-Add a drizzle of extra-virgin olive oil, about 1 tablespoon, over the entire platter"
121
+ "122","dry-gently dry it with a paper/tea towel"
122
+ "123","Season-Season the tomato slices with salt"
123
+ "124","Sprinkle-Sprinkle mozzarella cheese on top of the tomato throughout the platter"
124
+ "125","Rinse-Rinse a tomato"
125
+ "126","Season-Season platter with 1/4 teaspoon black pepper"
126
+ "127","Garnish-Garnish platter with italian seasoning"
127
+ "128","add-add lime juice to the bowl"
128
+ "129","Measure-Measure 2 cups of frozen corn"
129
+ "130","Add-1 teaspoon of pepper powder to the bowl"
130
+ "131","Extract-Extract lime juice from 1/3 lime"
131
+ "132","Add-Add the corn into a microwave-safe bowl"
132
+ "133","Microwave-Microwave the corn for 2 minutes"
133
+ "134","Microwave-Microwave the corn for 3 more minutes"
134
+ "135","stir-then stir the bowl"
135
+ "136","Add-Add 1 teaspoon salt to the bowl"
136
+ "137","Thaw-Thaw the frozen corn by putting it in a sieve and running it under cold water"
137
+ "138","Add-Add 1 teaspoon of softened butter"
138
+ "139","Add-Add 1/4 tsp mustard to the pan"
139
+ "140","mince-mince the garlic"
140
+ "141","Add-1/2 tsp cumin seeds to the pan"
141
+ "142","Add-Add tomato puree to the pan"
142
+ "143","Take-Take the pan off the heat"
143
+ "144","Mix-Mix well tomato puree with contents in the pan"
144
+ "145","Peel-Peel 4 large garlic cloves"
145
+ "146","Add-1/2 tsp salt to the pan"
146
+ "147","Add-Add 2 tbsp red chili powder to the pan"
147
+ "148","Saute-Saute the garlic for 2-3 minutes"
148
+ "149","Take-Take 1 tomato"
149
+ "150","puree-puree tomatoes without any water in a blender/mixer"
150
+ "151","Lower-Lower the heat"
151
+ "152","add-When mustard and cumin seeds begin to sizzle, add minced garlic"
152
+ "153","simmer-Allow the mixture to simmer over low heat for 5 minutes or until the mixture becomes thick"
153
+ "154","Heat-Heat 3 tbsp oil in a pan over medium heat"
154
+ "155","Chop-Chop tomato roughly (anysize chunks are fine)"
155
+ "156","Transfer-Transfer it to a serving bowl"
156
+ "157","mix-mix well contents of the pan"
157
+ "158","Chop-Chop 1 tsp cilantro"
158
+ "159","Whisk-Whisk the egg mixture in the bowl"
159
+ "160","Add-Add garlic to the pan"
160
+ "161","Chop-Chop 1 green chilli"
161
+ "162","Add-Add chilli to the pan"
162
+ "163","Chop-Chop 1/4 medium onion"
163
+ "164","add-add 1/3 tsp salt to the bowl"
164
+ "165","Cook-Cook for 1 minute, mixing everything"
165
+ "166","Saute-Saute the onions on medium heat until they are soft and translucent"
166
+ "167","Crack-Crack one egg in the bowl"
167
+ "168","Add-Add 1/8 tsp of turmeric to the pan"
168
+ "169","Chop-Chop 1/4 tomato"
169
+ "170","Cook-Cook covered for 1 minute or until the tomatoes soften"
170
+ "171","mixing-Keep mixing with a spatula for 3 minutes or until the eggs are almost cooked"
171
+ "172","pour-Slowly pour the whisked eggs into the pan"
172
+ "173","Heat-Heat 2 tbsp oil in a heavy-bottomed or nonstick pan on medium heat"
173
+ "174","Garnish-Garnish with 1 tbsp chopped cilantro and serve"
174
+ "175","Add-Add tomatoes to the pan"
175
+ "176","Peel-Peel 2 garlic cloves"
176
+ "177","add-add 1 tbsp milk to the bowl"
177
+ "178","add-add 1/3 tsp salt to the pan"
178
+ "179","add-add chopped onions to the pan"
179
+ "180","Mince-Mince peeled garlic cloves"
180
+ "181","Add-1/4 teaspoon of red chilli powder to the bowl"
181
+ "182","peel-peel the cucumber"
182
+ "183","whisk-In a mixing bowl, whisk 1 cup of chilled curd until smooth. Use fresh homemade or packaged curd"
183
+ "184","Add-1/4 teaspoon salt to the bowl"
184
+ "185","chop or grate-chop or grate the cucumber"
185
+ "186","Combine-Combine all the ingredients in the bowl"
186
+ "187","add-add 1 tablespoon of chopped cilantro leaves to the bowl"
187
+ "188","Add-Add 1 teaspoon of cumin powder to the bowl"
188
+ "189","Rinse-Rinse 1 medium sized cucumber"
189
+ "190","Add-Add the chopped or grated cucumber to the whisked curd"
190
+ "191","Add-1/2 teaspoon of chaat masala powder to the bowl"
191
+ "192","Cook-Cook for 2 minutes or until the zoodles are done"
192
+ "193","Add-1/6 cup grated parmesan cheese"
193
+ "194","season-pepper to taste"
194
+ "195","Top-Top with more parmesan if desired"
195
+ "196","Heat-Heat a large pan on medium heat"
196
+ "197","Remove-Remove from heat"
197
+ "198","season-season with salt"
198
+ "199","Add-Add 1 large minced garlic cloves to the pan"
199
+ "200","Peel-Peel 1 garlic cloves"
200
+ "201","Add-Add the zucchini noodles"
201
+ "202","Cook-Cook garlic until fragrant (about 1 minutes). Be careful not to burn garlic"
202
+ "203","Spiralize-Spiralize 1 medium zucchini into thin noodles using a spiralizer"
203
+ "204","Melt-Melt 1 tablespoons of softened butter"
204
+ "205","pat-pat rinsed mushrooms dry with a paper towel"
205
+ "206","Rinse-Rinse 3 mushrooms under cold water"
206
+ "207","cook-cook the pan, often stirring, for 1 minute"
207
+ "208","add-Once the pan is hot, add the mushrooms"
208
+ "209","Add-Add chopped shallot to the pan"
209
+ "210","Slice-Slice the mushrooms"
210
+ "211","mince-mince garlic cloves"
211
+ "212","Chop-Chop 1 shallot"
212
+ "213","cook-cook for 3-5 minutes, stirring often, until mushrooms start to soften and brown"
213
+ "214","Pull-Pull out mushroom stems"
214
+ "215","Heat-Heat 1 tbsp olive oil in a large skillet over medium-high heat"
215
+ "216","Transfer-Transfer the contents of the pan to a serving dish"
216
+ "217","Add-1/4 tbsp balsamic vinegar to the pan"
217
+ "218","Add-Add 2 cloves of minced garlic to the pan"
218
+ "219","Season-pepper on pan to taste"
219
+ "220","Season-Season pan with salt"
220
+ "221","Add-1/2 tsp baking powder to a blender"
221
+ "222","Serve-Serve the pancakes with chopped strawberries"
222
+ "223","Melt-Melt a small knob of butter in a non-stick frying pan over low-medium heat"
223
+ "224","splash-splash maple syrup on plate"
224
+ "225","Add-Add 1 banana to a blender"
225
+ "226","Cook-Cook for 1 min or until the tops start to bubble"
226
+ "227","blitz-blitz the blender for 20 seconds"
227
+ "228","Flip-Flip the pancakes with a fork or a fish slice spatula"
228
+ "229","Add-1 egg to a blender"
229
+ "230","cook-cook for 20-30 seconds more"
230
+ "231","Pour-Pour three little puddles straight from the blender into the frying pan"
231
+ "232","Add-1 heaped tbsp flour to a blender"
232
+ "233","Chop-Chop 1 strawberry"
233
+ "234","Transfer-Transfer to a plate"
234
+ "235","Heat-Heat 1 tbsp oil in a non-stick frying pan"
235
+ "236","put-put tomatoes on a serving plate"
236
+ "237","Chop-Chop 2 tbsp cilantro"
237
+ "238","stir-stir gently with a wooden spoon so the egg that sets on the base of the pan moves to enable the uncooked egg to flow into the space"
238
+ "239","crack-crack one egg in a bowl"
239
+ "240","cook-cook the tomatoes cut-side down until they start to soften and colour"
240
+ "241","Pour-Pour the egg mixture into the pan"
241
+ "242","add-add the chopped cilantro to the bowl"
242
+ "243","Transfer-Transfer omelette to the plate and serve with the tomatoes"
243
+ "244","Scoop-Scoop the tomatoes from the pan"
244
+ "245","Stop-Stop stirring when it's nearly cooked to allow it to set into an omelette"
245
+ "246","Cut-Cut tomato into two pieces"
246
+ "247","Take-Take a tomato"
247
+ "248","Beat-Beat the contents of the bowl"
248
+ "249","add-1/2 tsp ground black pepper to the bowl"
249
+ "250","Add-Add 1/8 cup soy sauce to the bowl"
250
+ "251","Set-Set aside the sauce mixture"
251
+ "252","Add-Add 1 tablespoon honey to the bowl"
252
+ "253","cook-cook, stirring often, for 4 minutes. If the pan gets too hot on medium-high, turn the heat down to medium"
253
+ "254","Add-Add 1 teaspoon cornstarch to the bowl"
254
+ "255","Add-Add 2 cloves minced garlic to the bowl"
255
+ "256","Pour-Pour the sauce into the skillet"
256
+ "257","Peel-Peel 2 cloves of garlic"
257
+ "258","Add-add sliced mushrooms to the skillet"
258
+ "259","slice-slice mushrooms"
259
+ "260","Whisk-Whisk the contents of bowl"
260
+ "261","Add-Add bell pepper to the skillet"
261
+ "262","mince-mince garlic"
262
+ "263","slice-slice 1/3 of the bell pepper"
263
+ "264","cook-cook, stirring, for 1 minute until the sauce thickens"
264
+ "265","Add-Add broccoli to the skillet"
265
+ "266","Heat-Heat 2 tablespoons olive oil in a skillet over medium-high heat"
266
+ "267","Add-Add 1/2 tablespoon minced ginger to the bowl"
267
+ "268","Add-Add 1/8 teaspoon black pepper to the bowl"
268
+ "269","Add-Add 1/6 cup water the bowl"
269
+ "270","Take-Take 2 cremini mushrooms"
270
+ "271","Take-Take 1 bell pepper"
271
+ "272","Whisk-Whisk the sauce again to recombine the ingredients"
272
+ "273","Take-Take 5 in number broccoli florets"
273
+ "274","continue cooking-continue cooking, stirring often, for 2-3 minutes, until vegetables are crisp-tender"
274
+ "275","Cut-Cut 1/4 block or 3 ounces of fresh tofu into large cubes (about 1 in x 1 in)"
275
+ "276","Turn-Turn on the heat to medium"
276
+ "277","drizzle-drizzle 1 tablespoon soy sauce (watch for spitting) on the pan"
277
+ "278","drizzle-drizzle with the 1 tablespoons sesame oil on the pan"
278
+ "279","add-add the tofu cubes to the pan"
279
+ "280","remove-Briefly remove the pan from the heat to reduce spitting"
280
+ "281","flip-flip tofu on the pan"
281
+ "282","remove-Briefly remove from the heat again"
282
+ "283","Transfer-Transfer to a serving dish"
283
+ "284","Return-Return to low heat"
284
+ "285","Flip-Flip the tofu with tongs"
285
+ "286","add-add 1/4 tsp salt to the pan"
286
+ "287","Return-Return the heat to medium"
287
+ "288","cook-cook pan for 2 minutes until the colour is darkened"
288
+ "289","cook-cook pan for 2 minutes"
289
+ "290","cook-cook until tofu turns brown"
290
+ "291","Add-Add 1 tablespoon of olive oil to a non-stick pan"
291
+ "292","Cook-Cook 5 to 6 minutes until tofu cubes are lightly browned on the bottom"
292
+ "293","pat-pat tofu dry with a towel"
293
+ "294","Whisk-Whisk batter until no lumps remain"
294
+ "295","remove-then carefully remove the paper liner"
295
+ "296","Measure and add-2 tbsp water to the bowl"
296
+ "297","Measure and add-1.5 tbsp sugar to the mixing bowl"
297
+ "298","Scoop-While the cake is cooling, prepare to pipe the frosting. Scoop 4 spoonfuls of chocolate frosting into a zip-top bag"
298
+ "299","Measure and add-Measure and add 2 tbsp flour to the mixing bowl"
299
+ "300","Measure and add-Measure and add 2 tsp vegetable oil to the bowl"
300
+ "301","Set-Set aside the lined mug"
301
+ "302","Squeeze-Squeeze the frosting through the opening to apply small dollops of frosting to the plate in a circle around the base of the cake"
302
+ "303","Place-Place the paper cupcake liner inside the mug"
303
+ "304","Measure and add-1/4 tsp baking powder to the bowl"
304
+ "305","Allow-Allow to cool until it is no longer hot to the touch"
305
+ "306","cut-Use scissors to cut one corner from the bag to create a small opening 1/4 inch in diameter"
306
+ "307","Pour-Pour batter into prepared mug"
307
+ "308","Whisk-Whisk to combine mixture of flour, sugar and baking powder in the bowl"
308
+ "309","Invert-Invert the mug to release the cake onto a plate"
309
+ "310","Measure and add-a pinch of salt to the mixing bowl"
310
+ "311","seal-seal zip top bag, removing as much air as possible"
311
+ "312","Microwave-Microwave the mug and batter on high power for 60 seconds. Check if the cake is done by inserting and toothpick into the center of the cake and then removing it. If wet batter clings to the toothpick, microwave for an additional 5 seconds. If the toothpick comes out clean, continue"
312
+ "313","Measure and add-1/4 tsp vanilla extract to the bowl"
313
+ "314","add-add 1/2 tbsp softened butter to the bowl"
314
+ "315","Add-Add 1/4 teaspoon salt to the bowl"
315
+ "316","Add-Add 1/3 cup cheddar cheese to a microwave-safe cup"
316
+ "317","Mix-Mix the cheese and red bell pepper in the bowl"
317
+ "318","Microwave-Microwave the bowl, covered, for 2 minutes"
318
+ "319","Add-Add 1/4 teaspoon pepper to the bowl"
319
+ "320","Add-Add 1 tablespoons of water to the bowl"
320
+ "321","Chop-Chop 1/4 red bell pepper into tiny bits"
321
+ "322","Place-Place the chopped pepper in the microwave-safe bowl"
322
+ "323","Melt-Melt the cheese by microwaving cup for 30 sec. (Check after 30 seconds and microwave for 10 seconds more if needed)"
323
+ "324","Mix-Mix all the ingredients of the bowl well"
324
+ "325","place-place avocado slices on each leaf"
325
+ "326","Season-season 1/4 tsp pepper on the bowl"
326
+ "327","Add-1/4 cup mayonnaise to the bowl"
327
+ "328","drain-drain excess water from can"
328
+ "329","Lay-Lay out 2 large lettuce leaves"
329
+ "330","Roll-Roll up the lettuce wraps"
330
+ "331","Mix-Mix the contents of the bowl"
331
+ "332","top-top lettuce leaves with the tuna mixture"
332
+ "333","Add-add chopped scallion to the bowl"
333
+ "334","Add-Add 1 can drained tuna to the bowl"
334
+ "335","Take-Take 1 ripe avocado"
335
+ "336","Open-Open a can of tuna"
336
+ "337","secure-secure the wrap with a toothpick"
337
+ "338","Season-Season bowl with 1/4 tsp salt"
338
+ "339","Add-1 tsp Sriracha sauce to the bowl"
339
+ "340","Chop-Chop 1 scallion"
340
+ "341","cut-cut avocado into thin slices"
341
+ "342","add-1/8 cup shredded mozzarella to a bowl"
342
+ "343","add-1/4 tsp salt to a bowl"
343
+ "344","Slice-Slice two 1/2 inch thick rounds from a baguette (slice slanted)"
344
+ "345","Spoon-Spoon the mixture from the bowl onto the bread"
345
+ "346","add-1/4 tsp pepper to a bowl"
346
+ "347","add-1/16 cup basil to a bowl"
347
+ "348","Combine-Combine the contents of the bowl"
348
+ "349","Brush-Brush 2 slices of baguette with olive oil on both sides"
349
+ "350","Cut-Cut 1/4 cup of cherry tomatoes into halves"
350
+ "351","add-In a bowl, add the cut cherry tomatoes"
351
+ "352","Toast-Toast both sides of the slices on the pan for 2 to 3 minutes until lightly charred and crispy and transfer the slices to a plate"
annotations/annotation_json/activity_idx_step_idx.json ADDED
@@ -0,0 +1,5750 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "1": [
3
+ 3,
4
+ 1,
5
+ 4,
6
+ 12,
7
+ 11,
8
+ 8,
9
+ 6,
10
+ 5,
11
+ 10,
12
+ 9,
13
+ 2,
14
+ 7,
15
+ 3,
16
+ 1,
17
+ 4,
18
+ 11,
19
+ 8,
20
+ 6,
21
+ 12,
22
+ 5,
23
+ 10,
24
+ 9,
25
+ 2,
26
+ 7,
27
+ 12,
28
+ 3,
29
+ 1,
30
+ 4,
31
+ 11,
32
+ 8,
33
+ 6,
34
+ 9,
35
+ 5,
36
+ 10,
37
+ 2,
38
+ 7,
39
+ 3,
40
+ 1,
41
+ 4,
42
+ 12,
43
+ 9,
44
+ 11,
45
+ 8,
46
+ 6,
47
+ 5,
48
+ 10,
49
+ 2,
50
+ 7,
51
+ 12,
52
+ 3,
53
+ 1,
54
+ 4,
55
+ 9,
56
+ 11,
57
+ 8,
58
+ 6,
59
+ 5,
60
+ 10,
61
+ 2,
62
+ 7,
63
+ 3,
64
+ 1,
65
+ 4,
66
+ 11,
67
+ 8,
68
+ 12,
69
+ 9,
70
+ 6,
71
+ 5,
72
+ 10,
73
+ 2,
74
+ 7,
75
+ 12,
76
+ 3,
77
+ 1,
78
+ 11,
79
+ 8,
80
+ 6,
81
+ 5,
82
+ 9,
83
+ 10,
84
+ 2,
85
+ 7,
86
+ 4,
87
+ 1,
88
+ 12,
89
+ 4,
90
+ 9,
91
+ 11,
92
+ 6,
93
+ 5,
94
+ 10,
95
+ 2,
96
+ 7,
97
+ 3,
98
+ 8,
99
+ 1,
100
+ 12,
101
+ 4,
102
+ 11,
103
+ 8,
104
+ 6,
105
+ 5,
106
+ 10,
107
+ 9,
108
+ 2,
109
+ 7,
110
+ 3,
111
+ 3,
112
+ 1,
113
+ 12,
114
+ 4,
115
+ 11,
116
+ 8,
117
+ 9,
118
+ 5,
119
+ 10,
120
+ 7,
121
+ 6,
122
+ 2,
123
+ 1,
124
+ 12,
125
+ 4,
126
+ 11,
127
+ 8,
128
+ 9,
129
+ 6,
130
+ 5,
131
+ 10,
132
+ 2,
133
+ 7,
134
+ 3,
135
+ 3,
136
+ 1,
137
+ 5,
138
+ 12,
139
+ 8,
140
+ 6,
141
+ 10,
142
+ 9,
143
+ 2,
144
+ 7,
145
+ 10,
146
+ 11,
147
+ 3,
148
+ 1,
149
+ 4,
150
+ 6,
151
+ 12,
152
+ 9,
153
+ 11,
154
+ 8,
155
+ 5,
156
+ 10,
157
+ 2,
158
+ 7,
159
+ 1,
160
+ 4,
161
+ 11,
162
+ 3,
163
+ 12,
164
+ 9,
165
+ 8,
166
+ 6,
167
+ 5,
168
+ 10,
169
+ 2,
170
+ 7,
171
+ 3,
172
+ 1,
173
+ 4,
174
+ 11,
175
+ 12,
176
+ 8,
177
+ 9,
178
+ 5,
179
+ 10,
180
+ 6,
181
+ 2,
182
+ 7,
183
+ 3,
184
+ 5,
185
+ 10,
186
+ 12,
187
+ 1,
188
+ 4,
189
+ 11,
190
+ 8,
191
+ 6,
192
+ 9,
193
+ 2,
194
+ 7,
195
+ 3,
196
+ 1,
197
+ 5,
198
+ 12,
199
+ 8,
200
+ 6,
201
+ 9,
202
+ 4,
203
+ 2,
204
+ 10,
205
+ 11,
206
+ 7,
207
+ 3,
208
+ 1,
209
+ 4,
210
+ 11,
211
+ 12,
212
+ 8,
213
+ 9,
214
+ 5,
215
+ 10,
216
+ 6,
217
+ 2,
218
+ 7
219
+ ],
220
+ "2": [
221
+ 21,
222
+ 14,
223
+ 23,
224
+ 17,
225
+ 16,
226
+ 26,
227
+ 27,
228
+ 22,
229
+ 19,
230
+ 24,
231
+ 15,
232
+ 20,
233
+ 18,
234
+ 20,
235
+ 18,
236
+ 25,
237
+ 21,
238
+ 14,
239
+ 16,
240
+ 17,
241
+ 22,
242
+ 26,
243
+ 23,
244
+ 27,
245
+ 19,
246
+ 24,
247
+ 15,
248
+ 20,
249
+ 18,
250
+ 20,
251
+ 18,
252
+ 25,
253
+ 14,
254
+ 16,
255
+ 26,
256
+ 23,
257
+ 17,
258
+ 21,
259
+ 27,
260
+ 22,
261
+ 19,
262
+ 24,
263
+ 15,
264
+ 20,
265
+ 18,
266
+ 20,
267
+ 18,
268
+ 25,
269
+ 14,
270
+ 16,
271
+ 17,
272
+ 27,
273
+ 23,
274
+ 26,
275
+ 22,
276
+ 21,
277
+ 19,
278
+ 24,
279
+ 15,
280
+ 20,
281
+ 18,
282
+ 20,
283
+ 18,
284
+ 25,
285
+ 17,
286
+ 23,
287
+ 27,
288
+ 14,
289
+ 19,
290
+ 16,
291
+ 22,
292
+ 26,
293
+ 21,
294
+ 24,
295
+ 15,
296
+ 20,
297
+ 18,
298
+ 20,
299
+ 18,
300
+ 25,
301
+ 14,
302
+ 22,
303
+ 17,
304
+ 16,
305
+ 27,
306
+ 21,
307
+ 26,
308
+ 19,
309
+ 24,
310
+ 23,
311
+ 15,
312
+ 20,
313
+ 18,
314
+ 20,
315
+ 18,
316
+ 25,
317
+ 17,
318
+ 23,
319
+ 14,
320
+ 27,
321
+ 22,
322
+ 21,
323
+ 19,
324
+ 16,
325
+ 26,
326
+ 24,
327
+ 15,
328
+ 20,
329
+ 18,
330
+ 20,
331
+ 18,
332
+ 25,
333
+ 22,
334
+ 14,
335
+ 16,
336
+ 26,
337
+ 17,
338
+ 23,
339
+ 27,
340
+ 19,
341
+ 21,
342
+ 24,
343
+ 15,
344
+ 20,
345
+ 18,
346
+ 20,
347
+ 18,
348
+ 25,
349
+ 14,
350
+ 17,
351
+ 16,
352
+ 26,
353
+ 22,
354
+ 21,
355
+ 27,
356
+ 19,
357
+ 23,
358
+ 15,
359
+ 20,
360
+ 18,
361
+ 20,
362
+ 25,
363
+ 24,
364
+ 18,
365
+ 17,
366
+ 19,
367
+ 22,
368
+ 14,
369
+ 23,
370
+ 21,
371
+ 26,
372
+ 24,
373
+ 15,
374
+ 20,
375
+ 18,
376
+ 25,
377
+ 16,
378
+ 27,
379
+ 20,
380
+ 18,
381
+ 17,
382
+ 21,
383
+ 14,
384
+ 27,
385
+ 23,
386
+ 19,
387
+ 16,
388
+ 22,
389
+ 26,
390
+ 24,
391
+ 15,
392
+ 20,
393
+ 20,
394
+ 25,
395
+ 18,
396
+ 18,
397
+ 14,
398
+ 17,
399
+ 16,
400
+ 26,
401
+ 22,
402
+ 27,
403
+ 19,
404
+ 21,
405
+ 24,
406
+ 20,
407
+ 20,
408
+ 18,
409
+ 23,
410
+ 18,
411
+ 25,
412
+ 15,
413
+ 22,
414
+ 17,
415
+ 27,
416
+ 19,
417
+ 14,
418
+ 16,
419
+ 26,
420
+ 23,
421
+ 24,
422
+ 15,
423
+ 21,
424
+ 24,
425
+ 20,
426
+ 18,
427
+ 20,
428
+ 18,
429
+ 25,
430
+ 14,
431
+ 23,
432
+ 21,
433
+ 20,
434
+ 22,
435
+ 17,
436
+ 27,
437
+ 19,
438
+ 16,
439
+ 26,
440
+ 24,
441
+ 18,
442
+ 20,
443
+ 15,
444
+ 18,
445
+ 25,
446
+ 18,
447
+ 25,
448
+ 17,
449
+ 14,
450
+ 16,
451
+ 23,
452
+ 20,
453
+ 26,
454
+ 18,
455
+ 22,
456
+ 27,
457
+ 19,
458
+ 24,
459
+ 20,
460
+ 18,
461
+ 25,
462
+ 21,
463
+ 15,
464
+ 14,
465
+ 17,
466
+ 27,
467
+ 19,
468
+ 22,
469
+ 21,
470
+ 20,
471
+ 18,
472
+ 16,
473
+ 23,
474
+ 26,
475
+ 15,
476
+ 24,
477
+ 20,
478
+ 18,
479
+ 25
480
+ ],
481
+ "3": [
482
+ 36,
483
+ 35,
484
+ 28,
485
+ 40,
486
+ 33,
487
+ 38,
488
+ 41,
489
+ 34,
490
+ 37,
491
+ 30,
492
+ 31,
493
+ 39,
494
+ 29,
495
+ 32,
496
+ 36,
497
+ 40,
498
+ 35,
499
+ 28,
500
+ 33,
501
+ 38,
502
+ 41,
503
+ 34,
504
+ 37,
505
+ 30,
506
+ 31,
507
+ 39,
508
+ 29,
509
+ 32,
510
+ 36,
511
+ 35,
512
+ 33,
513
+ 28,
514
+ 40,
515
+ 38,
516
+ 41,
517
+ 34,
518
+ 37,
519
+ 30,
520
+ 31,
521
+ 39,
522
+ 29,
523
+ 32,
524
+ 36,
525
+ 28,
526
+ 33,
527
+ 35,
528
+ 40,
529
+ 38,
530
+ 41,
531
+ 34,
532
+ 37,
533
+ 30,
534
+ 31,
535
+ 39,
536
+ 29,
537
+ 32,
538
+ 36,
539
+ 35,
540
+ 40,
541
+ 33,
542
+ 28,
543
+ 38,
544
+ 41,
545
+ 34,
546
+ 37,
547
+ 30,
548
+ 31,
549
+ 39,
550
+ 29,
551
+ 32,
552
+ 36,
553
+ 40,
554
+ 35,
555
+ 28,
556
+ 33,
557
+ 38,
558
+ 34,
559
+ 41,
560
+ 37,
561
+ 30,
562
+ 31,
563
+ 39,
564
+ 29,
565
+ 32,
566
+ 36,
567
+ 28,
568
+ 40,
569
+ 33,
570
+ 35,
571
+ 38,
572
+ 41,
573
+ 34,
574
+ 37,
575
+ 30,
576
+ 31,
577
+ 39,
578
+ 29,
579
+ 32,
580
+ 36,
581
+ 35,
582
+ 40,
583
+ 28,
584
+ 33,
585
+ 38,
586
+ 34,
587
+ 41,
588
+ 37,
589
+ 30,
590
+ 31,
591
+ 39,
592
+ 29,
593
+ 32,
594
+ 36,
595
+ 35,
596
+ 38,
597
+ 28,
598
+ 40,
599
+ 34,
600
+ 41,
601
+ 37,
602
+ 30,
603
+ 33,
604
+ 39,
605
+ 32,
606
+ 31,
607
+ 29,
608
+ 36,
609
+ 34,
610
+ 33,
611
+ 40,
612
+ 38,
613
+ 41,
614
+ 28,
615
+ 37,
616
+ 35,
617
+ 30,
618
+ 31,
619
+ 30,
620
+ 31,
621
+ 39,
622
+ 29,
623
+ 32,
624
+ 36,
625
+ 35,
626
+ 40,
627
+ 33,
628
+ 28,
629
+ 38,
630
+ 34,
631
+ 41,
632
+ 29,
633
+ 30,
634
+ 31,
635
+ 39,
636
+ 37,
637
+ 32,
638
+ 36,
639
+ 40,
640
+ 33,
641
+ 35,
642
+ 28,
643
+ 38,
644
+ 34,
645
+ 41,
646
+ 29,
647
+ 30,
648
+ 31,
649
+ 39,
650
+ 37,
651
+ 32,
652
+ 36,
653
+ 40,
654
+ 33,
655
+ 39,
656
+ 28,
657
+ 38,
658
+ 41,
659
+ 34,
660
+ 37,
661
+ 30,
662
+ 31,
663
+ 35,
664
+ 29,
665
+ 32
666
+ ],
667
+ "4": [
668
+ 14,
669
+ 51,
670
+ 44,
671
+ 47,
672
+ 46,
673
+ 54,
674
+ 52,
675
+ 55,
676
+ 49,
677
+ 45,
678
+ 50,
679
+ 48,
680
+ 53,
681
+ 42,
682
+ 43,
683
+ 47,
684
+ 14,
685
+ 44,
686
+ 51,
687
+ 46,
688
+ 54,
689
+ 52,
690
+ 55,
691
+ 49,
692
+ 45,
693
+ 48,
694
+ 53,
695
+ 50,
696
+ 42,
697
+ 43,
698
+ 47,
699
+ 44,
700
+ 46,
701
+ 14,
702
+ 51,
703
+ 54,
704
+ 52,
705
+ 55,
706
+ 49,
707
+ 45,
708
+ 50,
709
+ 53,
710
+ 48,
711
+ 42,
712
+ 43,
713
+ 47,
714
+ 14,
715
+ 46,
716
+ 51,
717
+ 54,
718
+ 44,
719
+ 52,
720
+ 55,
721
+ 49,
722
+ 45,
723
+ 53,
724
+ 48,
725
+ 50,
726
+ 42,
727
+ 43,
728
+ 47,
729
+ 14,
730
+ 46,
731
+ 44,
732
+ 51,
733
+ 54,
734
+ 52,
735
+ 55,
736
+ 49,
737
+ 45,
738
+ 53,
739
+ 48,
740
+ 50,
741
+ 42,
742
+ 43,
743
+ 14,
744
+ 47,
745
+ 46,
746
+ 51,
747
+ 44,
748
+ 54,
749
+ 52,
750
+ 55,
751
+ 49,
752
+ 45,
753
+ 53,
754
+ 50,
755
+ 48,
756
+ 42,
757
+ 43,
758
+ 47,
759
+ 14,
760
+ 51,
761
+ 44,
762
+ 46,
763
+ 54,
764
+ 52,
765
+ 55,
766
+ 49,
767
+ 45,
768
+ 48,
769
+ 50,
770
+ 53,
771
+ 42,
772
+ 43,
773
+ 44,
774
+ 14,
775
+ 47,
776
+ 51,
777
+ 46,
778
+ 54,
779
+ 52,
780
+ 55,
781
+ 49,
782
+ 45,
783
+ 50,
784
+ 48,
785
+ 53,
786
+ 42,
787
+ 43,
788
+ 47,
789
+ 14,
790
+ 51,
791
+ 46,
792
+ 54,
793
+ 44,
794
+ 52,
795
+ 55,
796
+ 49,
797
+ 45,
798
+ 48,
799
+ 53,
800
+ 50,
801
+ 42,
802
+ 43,
803
+ 14,
804
+ 51,
805
+ 44,
806
+ 47,
807
+ 46,
808
+ 54,
809
+ 52,
810
+ 55,
811
+ 49,
812
+ 45,
813
+ 49,
814
+ 45,
815
+ 53,
816
+ 48,
817
+ 42,
818
+ 43,
819
+ 50,
820
+ 47,
821
+ 44,
822
+ 14,
823
+ 51,
824
+ 54,
825
+ 52,
826
+ 55,
827
+ 49,
828
+ 45,
829
+ 53,
830
+ 48,
831
+ 42,
832
+ 43,
833
+ 46,
834
+ 50,
835
+ 47,
836
+ 14,
837
+ 46,
838
+ 51,
839
+ 44,
840
+ 54,
841
+ 52,
842
+ 55,
843
+ 45,
844
+ 53,
845
+ 48,
846
+ 42,
847
+ 43,
848
+ 49,
849
+ 50,
850
+ 47,
851
+ 14,
852
+ 51,
853
+ 46,
854
+ 44,
855
+ 54,
856
+ 52,
857
+ 55,
858
+ 49,
859
+ 45,
860
+ 50,
861
+ 48,
862
+ 53,
863
+ 42,
864
+ 43,
865
+ 14,
866
+ 47,
867
+ 51,
868
+ 44,
869
+ 46,
870
+ 53,
871
+ 52,
872
+ 54,
873
+ 49,
874
+ 45,
875
+ 48,
876
+ 50,
877
+ 55,
878
+ 43,
879
+ 42,
880
+ 14,
881
+ 44,
882
+ 47,
883
+ 51,
884
+ 54,
885
+ 46,
886
+ 50,
887
+ 55,
888
+ 49,
889
+ 45,
890
+ 52,
891
+ 45,
892
+ 53,
893
+ 48,
894
+ 42,
895
+ 43,
896
+ 47,
897
+ 14,
898
+ 46,
899
+ 44,
900
+ 52,
901
+ 14,
902
+ 51,
903
+ 54,
904
+ 55,
905
+ 49,
906
+ 45,
907
+ 50,
908
+ 48,
909
+ 53,
910
+ 42,
911
+ 43,
912
+ 44,
913
+ 14,
914
+ 47,
915
+ 51,
916
+ 46,
917
+ 54,
918
+ 52,
919
+ 55,
920
+ 49,
921
+ 45,
922
+ 50,
923
+ 48,
924
+ 53,
925
+ 42,
926
+ 43
927
+ ],
928
+ "5": [
929
+ 68,
930
+ 69,
931
+ 65,
932
+ 67,
933
+ 62,
934
+ 70,
935
+ 60,
936
+ 64,
937
+ 59,
938
+ 71,
939
+ 58,
940
+ 57,
941
+ 56,
942
+ 61,
943
+ 66,
944
+ 63,
945
+ 68,
946
+ 69,
947
+ 70,
948
+ 62,
949
+ 60,
950
+ 59,
951
+ 64,
952
+ 65,
953
+ 67,
954
+ 71,
955
+ 58,
956
+ 57,
957
+ 56,
958
+ 61,
959
+ 66,
960
+ 63,
961
+ 62,
962
+ 68,
963
+ 65,
964
+ 67,
965
+ 69,
966
+ 60,
967
+ 59,
968
+ 70,
969
+ 58,
970
+ 64,
971
+ 71,
972
+ 57,
973
+ 56,
974
+ 61,
975
+ 66,
976
+ 63,
977
+ 65,
978
+ 69,
979
+ 62,
980
+ 60,
981
+ 67,
982
+ 68,
983
+ 59,
984
+ 58,
985
+ 70,
986
+ 64,
987
+ 71,
988
+ 57,
989
+ 56,
990
+ 61,
991
+ 66,
992
+ 63,
993
+ 65,
994
+ 62,
995
+ 67,
996
+ 69,
997
+ 68,
998
+ 70,
999
+ 60,
1000
+ 64,
1001
+ 59,
1002
+ 71,
1003
+ 58,
1004
+ 57,
1005
+ 56,
1006
+ 61,
1007
+ 66,
1008
+ 63,
1009
+ 65,
1010
+ 68,
1011
+ 62,
1012
+ 70,
1013
+ 69,
1014
+ 64,
1015
+ 71,
1016
+ 67,
1017
+ 60,
1018
+ 59,
1019
+ 58,
1020
+ 57,
1021
+ 56,
1022
+ 61,
1023
+ 66,
1024
+ 63,
1025
+ 69,
1026
+ 62,
1027
+ 65,
1028
+ 68,
1029
+ 70,
1030
+ 67,
1031
+ 60,
1032
+ 64,
1033
+ 71,
1034
+ 59,
1035
+ 58,
1036
+ 57,
1037
+ 56,
1038
+ 61,
1039
+ 66,
1040
+ 63,
1041
+ 65,
1042
+ 62,
1043
+ 67,
1044
+ 68,
1045
+ 70,
1046
+ 69,
1047
+ 60,
1048
+ 59,
1049
+ 64,
1050
+ 71,
1051
+ 58,
1052
+ 57,
1053
+ 56,
1054
+ 61,
1055
+ 66,
1056
+ 63,
1057
+ 68,
1058
+ 69,
1059
+ 62,
1060
+ 65,
1061
+ 70,
1062
+ 60,
1063
+ 59,
1064
+ 67,
1065
+ 64,
1066
+ 58,
1067
+ 71,
1068
+ 57,
1069
+ 56,
1070
+ 61,
1071
+ 66,
1072
+ 63,
1073
+ 68,
1074
+ 70,
1075
+ 62,
1076
+ 69,
1077
+ 64,
1078
+ 60,
1079
+ 59,
1080
+ 65,
1081
+ 67,
1082
+ 58,
1083
+ 57,
1084
+ 56,
1085
+ 61,
1086
+ 66,
1087
+ 63,
1088
+ 71,
1089
+ 68,
1090
+ 70,
1091
+ 65,
1092
+ 69,
1093
+ 64,
1094
+ 71,
1095
+ 58,
1096
+ 57,
1097
+ 56,
1098
+ 61,
1099
+ 66,
1100
+ 63,
1101
+ 60,
1102
+ 67,
1103
+ 62,
1104
+ 59,
1105
+ 62,
1106
+ 65,
1107
+ 68,
1108
+ 70,
1109
+ 60,
1110
+ 59,
1111
+ 67,
1112
+ 64,
1113
+ 71,
1114
+ 69,
1115
+ 58,
1116
+ 57,
1117
+ 56,
1118
+ 66,
1119
+ 63,
1120
+ 61,
1121
+ 69,
1122
+ 68,
1123
+ 70,
1124
+ 64,
1125
+ 65,
1126
+ 62,
1127
+ 60,
1128
+ 67,
1129
+ 59,
1130
+ 58,
1131
+ 57,
1132
+ 56,
1133
+ 61,
1134
+ 66,
1135
+ 63,
1136
+ 71,
1137
+ 65,
1138
+ 62,
1139
+ 60,
1140
+ 69,
1141
+ 59,
1142
+ 67,
1143
+ 58,
1144
+ 68,
1145
+ 70,
1146
+ 57,
1147
+ 56,
1148
+ 61,
1149
+ 66,
1150
+ 64,
1151
+ 71,
1152
+ 63,
1153
+ 65,
1154
+ 60,
1155
+ 69,
1156
+ 59,
1157
+ 67,
1158
+ 58,
1159
+ 68,
1160
+ 70,
1161
+ 57,
1162
+ 56,
1163
+ 61,
1164
+ 66,
1165
+ 64,
1166
+ 71,
1167
+ 62,
1168
+ 63
1169
+ ],
1170
+ "7": [
1171
+ 77,
1172
+ 72,
1173
+ 81,
1174
+ 73,
1175
+ 74,
1176
+ 82,
1177
+ 80,
1178
+ 76,
1179
+ 79,
1180
+ 75,
1181
+ 78,
1182
+ 77,
1183
+ 72,
1184
+ 73,
1185
+ 81,
1186
+ 74,
1187
+ 80,
1188
+ 82,
1189
+ 76,
1190
+ 79,
1191
+ 75,
1192
+ 78,
1193
+ 77,
1194
+ 72,
1195
+ 73,
1196
+ 82,
1197
+ 80,
1198
+ 74,
1199
+ 81,
1200
+ 76,
1201
+ 79,
1202
+ 75,
1203
+ 78,
1204
+ 77,
1205
+ 72,
1206
+ 73,
1207
+ 74,
1208
+ 82,
1209
+ 81,
1210
+ 80,
1211
+ 76,
1212
+ 79,
1213
+ 75,
1214
+ 78,
1215
+ 77,
1216
+ 81,
1217
+ 72,
1218
+ 73,
1219
+ 82,
1220
+ 74,
1221
+ 80,
1222
+ 76,
1223
+ 79,
1224
+ 75,
1225
+ 78,
1226
+ 77,
1227
+ 72,
1228
+ 73,
1229
+ 82,
1230
+ 80,
1231
+ 81,
1232
+ 74,
1233
+ 76,
1234
+ 79,
1235
+ 75,
1236
+ 78,
1237
+ 77,
1238
+ 81,
1239
+ 72,
1240
+ 73,
1241
+ 82,
1242
+ 80,
1243
+ 74,
1244
+ 76,
1245
+ 79,
1246
+ 75,
1247
+ 78,
1248
+ 77,
1249
+ 73,
1250
+ 82,
1251
+ 74,
1252
+ 80,
1253
+ 81,
1254
+ 79,
1255
+ 75,
1256
+ 78,
1257
+ 72,
1258
+ 76,
1259
+ 77,
1260
+ 72,
1261
+ 73,
1262
+ 82,
1263
+ 80,
1264
+ 74,
1265
+ 76,
1266
+ 75,
1267
+ 81,
1268
+ 79,
1269
+ 78,
1270
+ 77,
1271
+ 72,
1272
+ 73,
1273
+ 81,
1274
+ 74,
1275
+ 82,
1276
+ 76,
1277
+ 79,
1278
+ 78,
1279
+ 80,
1280
+ 75,
1281
+ 77,
1282
+ 72,
1283
+ 76,
1284
+ 74,
1285
+ 80,
1286
+ 73,
1287
+ 82,
1288
+ 81,
1289
+ 79,
1290
+ 75,
1291
+ 78,
1292
+ 77,
1293
+ 81,
1294
+ 73,
1295
+ 74,
1296
+ 82,
1297
+ 72,
1298
+ 80,
1299
+ 79,
1300
+ 76,
1301
+ 75,
1302
+ 78,
1303
+ 81,
1304
+ 77,
1305
+ 72,
1306
+ 73,
1307
+ 74,
1308
+ 80,
1309
+ 82,
1310
+ 76,
1311
+ 79,
1312
+ 75,
1313
+ 78,
1314
+ 81,
1315
+ 77,
1316
+ 74,
1317
+ 73,
1318
+ 80,
1319
+ 72,
1320
+ 82,
1321
+ 76,
1322
+ 79,
1323
+ 75,
1324
+ 78,
1325
+ 77,
1326
+ 81,
1327
+ 72,
1328
+ 73,
1329
+ 79,
1330
+ 75,
1331
+ 74,
1332
+ 78,
1333
+ 82,
1334
+ 76,
1335
+ 80,
1336
+ 77,
1337
+ 72,
1338
+ 74,
1339
+ 80,
1340
+ 73,
1341
+ 82,
1342
+ 81,
1343
+ 79,
1344
+ 75,
1345
+ 78,
1346
+ 76
1347
+ ],
1348
+ "8": [
1349
+ 88,
1350
+ 89,
1351
+ 90,
1352
+ 84,
1353
+ 87,
1354
+ 85,
1355
+ 83,
1356
+ 88,
1357
+ 89,
1358
+ 84,
1359
+ 90,
1360
+ 87,
1361
+ 85,
1362
+ 83,
1363
+ 88,
1364
+ 89,
1365
+ 87,
1366
+ 90,
1367
+ 84,
1368
+ 85,
1369
+ 83,
1370
+ 88,
1371
+ 89,
1372
+ 90,
1373
+ 84,
1374
+ 87,
1375
+ 85,
1376
+ 83,
1377
+ 88,
1378
+ 89,
1379
+ 87,
1380
+ 84,
1381
+ 90,
1382
+ 85,
1383
+ 83,
1384
+ 88,
1385
+ 89,
1386
+ 84,
1387
+ 90,
1388
+ 87,
1389
+ 85,
1390
+ 83,
1391
+ 88,
1392
+ 89,
1393
+ 84,
1394
+ 90,
1395
+ 87,
1396
+ 85,
1397
+ 83,
1398
+ 88,
1399
+ 89,
1400
+ 90,
1401
+ 87,
1402
+ 85,
1403
+ 83,
1404
+ 84,
1405
+ 88,
1406
+ 90,
1407
+ 84,
1408
+ 87,
1409
+ 85,
1410
+ 83,
1411
+ 89,
1412
+ 88,
1413
+ 89,
1414
+ 84,
1415
+ 85,
1416
+ 83,
1417
+ 87,
1418
+ 90,
1419
+ 88,
1420
+ 89,
1421
+ 90,
1422
+ 87,
1423
+ 84,
1424
+ 85,
1425
+ 83,
1426
+ 88,
1427
+ 87,
1428
+ 89,
1429
+ 84,
1430
+ 85,
1431
+ 90,
1432
+ 83,
1433
+ 84,
1434
+ 90,
1435
+ 89,
1436
+ 88,
1437
+ 87,
1438
+ 85,
1439
+ 83,
1440
+ 88,
1441
+ 90,
1442
+ 84,
1443
+ 85,
1444
+ 83,
1445
+ 89,
1446
+ 87,
1447
+ 88,
1448
+ 90,
1449
+ 84,
1450
+ 87,
1451
+ 89,
1452
+ 83,
1453
+ 85,
1454
+ 87,
1455
+ 88,
1456
+ 89,
1457
+ 90,
1458
+ 83,
1459
+ 85,
1460
+ 84
1461
+ ],
1462
+ "9": [
1463
+ 99,
1464
+ 94,
1465
+ 98,
1466
+ 101,
1467
+ 95,
1468
+ 100,
1469
+ 93,
1470
+ 92,
1471
+ 91,
1472
+ 97,
1473
+ 96,
1474
+ 94,
1475
+ 99,
1476
+ 98,
1477
+ 101,
1478
+ 95,
1479
+ 100,
1480
+ 93,
1481
+ 92,
1482
+ 91,
1483
+ 97,
1484
+ 96,
1485
+ 94,
1486
+ 98,
1487
+ 101,
1488
+ 100,
1489
+ 95,
1490
+ 93,
1491
+ 99,
1492
+ 92,
1493
+ 91,
1494
+ 97,
1495
+ 96,
1496
+ 94,
1497
+ 98,
1498
+ 101,
1499
+ 95,
1500
+ 100,
1501
+ 93,
1502
+ 99,
1503
+ 92,
1504
+ 91,
1505
+ 97,
1506
+ 96,
1507
+ 94,
1508
+ 98,
1509
+ 101,
1510
+ 99,
1511
+ 95,
1512
+ 100,
1513
+ 93,
1514
+ 92,
1515
+ 91,
1516
+ 97,
1517
+ 96,
1518
+ 94,
1519
+ 99,
1520
+ 98,
1521
+ 101,
1522
+ 95,
1523
+ 100,
1524
+ 93,
1525
+ 92,
1526
+ 91,
1527
+ 97,
1528
+ 96,
1529
+ 94,
1530
+ 99,
1531
+ 98,
1532
+ 101,
1533
+ 95,
1534
+ 100,
1535
+ 93,
1536
+ 92,
1537
+ 91,
1538
+ 97,
1539
+ 96,
1540
+ 99,
1541
+ 94,
1542
+ 98,
1543
+ 101,
1544
+ 100,
1545
+ 95,
1546
+ 93,
1547
+ 92,
1548
+ 91,
1549
+ 97,
1550
+ 96,
1551
+ 94,
1552
+ 98,
1553
+ 99,
1554
+ 101,
1555
+ 100,
1556
+ 95,
1557
+ 93,
1558
+ 92,
1559
+ 91,
1560
+ 97,
1561
+ 96,
1562
+ 94,
1563
+ 98,
1564
+ 101,
1565
+ 95,
1566
+ 100,
1567
+ 93,
1568
+ 99,
1569
+ 92,
1570
+ 91,
1571
+ 97,
1572
+ 96,
1573
+ 94,
1574
+ 98,
1575
+ 101,
1576
+ 100,
1577
+ 95,
1578
+ 93,
1579
+ 92,
1580
+ 91,
1581
+ 97,
1582
+ 96,
1583
+ 99,
1584
+ 100,
1585
+ 94,
1586
+ 98,
1587
+ 101,
1588
+ 91,
1589
+ 95,
1590
+ 93,
1591
+ 99,
1592
+ 92,
1593
+ 97,
1594
+ 96,
1595
+ 99,
1596
+ 94,
1597
+ 98,
1598
+ 101,
1599
+ 100,
1600
+ 95,
1601
+ 91,
1602
+ 97,
1603
+ 96,
1604
+ 92,
1605
+ 93,
1606
+ 94,
1607
+ 98,
1608
+ 101,
1609
+ 100,
1610
+ 95,
1611
+ 93,
1612
+ 99,
1613
+ 92,
1614
+ 91,
1615
+ 97,
1616
+ 96
1617
+ ],
1618
+ "10": [
1619
+ 115,
1620
+ 113,
1621
+ 112,
1622
+ 118,
1623
+ 111,
1624
+ 107,
1625
+ 104,
1626
+ 116,
1627
+ 110,
1628
+ 114,
1629
+ 103,
1630
+ 106,
1631
+ 117,
1632
+ 105,
1633
+ 108,
1634
+ 102,
1635
+ 102,
1636
+ 102,
1637
+ 109,
1638
+ 115,
1639
+ 113,
1640
+ 112,
1641
+ 118,
1642
+ 111,
1643
+ 107,
1644
+ 104,
1645
+ 116,
1646
+ 110,
1647
+ 114,
1648
+ 103,
1649
+ 106,
1650
+ 117,
1651
+ 105,
1652
+ 108,
1653
+ 102,
1654
+ 102,
1655
+ 102,
1656
+ 109,
1657
+ 115,
1658
+ 113,
1659
+ 112,
1660
+ 118,
1661
+ 111,
1662
+ 107,
1663
+ 104,
1664
+ 116,
1665
+ 110,
1666
+ 114,
1667
+ 103,
1668
+ 106,
1669
+ 117,
1670
+ 105,
1671
+ 108,
1672
+ 102,
1673
+ 102,
1674
+ 102,
1675
+ 109,
1676
+ 115,
1677
+ 113,
1678
+ 112,
1679
+ 118,
1680
+ 111,
1681
+ 107,
1682
+ 104,
1683
+ 116,
1684
+ 110,
1685
+ 114,
1686
+ 103,
1687
+ 106,
1688
+ 117,
1689
+ 105,
1690
+ 108,
1691
+ 102,
1692
+ 102,
1693
+ 102,
1694
+ 109,
1695
+ 115,
1696
+ 113,
1697
+ 112,
1698
+ 118,
1699
+ 111,
1700
+ 107,
1701
+ 104,
1702
+ 116,
1703
+ 110,
1704
+ 114,
1705
+ 103,
1706
+ 106,
1707
+ 117,
1708
+ 105,
1709
+ 108,
1710
+ 102,
1711
+ 102,
1712
+ 102,
1713
+ 109,
1714
+ 115,
1715
+ 118,
1716
+ 111,
1717
+ 107,
1718
+ 104,
1719
+ 116,
1720
+ 110,
1721
+ 114,
1722
+ 108,
1723
+ 102,
1724
+ 102,
1725
+ 102,
1726
+ 109,
1727
+ 103,
1728
+ 113,
1729
+ 112,
1730
+ 106,
1731
+ 117,
1732
+ 105,
1733
+ 115,
1734
+ 113,
1735
+ 112,
1736
+ 118,
1737
+ 111,
1738
+ 107,
1739
+ 104,
1740
+ 116,
1741
+ 110,
1742
+ 114,
1743
+ 103,
1744
+ 106,
1745
+ 117,
1746
+ 105,
1747
+ 108,
1748
+ 102,
1749
+ 102,
1750
+ 102,
1751
+ 109,
1752
+ 115,
1753
+ 113,
1754
+ 112,
1755
+ 118,
1756
+ 111,
1757
+ 107,
1758
+ 104,
1759
+ 116,
1760
+ 110,
1761
+ 114,
1762
+ 103,
1763
+ 106,
1764
+ 117,
1765
+ 105,
1766
+ 108,
1767
+ 102,
1768
+ 102,
1769
+ 102,
1770
+ 102,
1771
+ 109,
1772
+ 113,
1773
+ 115,
1774
+ 112,
1775
+ 111,
1776
+ 107,
1777
+ 104,
1778
+ 116,
1779
+ 114,
1780
+ 110,
1781
+ 106,
1782
+ 117,
1783
+ 105,
1784
+ 108,
1785
+ 102,
1786
+ 102,
1787
+ 102,
1788
+ 109,
1789
+ 103,
1790
+ 118,
1791
+ 115,
1792
+ 111,
1793
+ 107,
1794
+ 104,
1795
+ 113,
1796
+ 112,
1797
+ 116,
1798
+ 106,
1799
+ 117,
1800
+ 105,
1801
+ 114,
1802
+ 103,
1803
+ 110,
1804
+ 118,
1805
+ 108,
1806
+ 102,
1807
+ 102,
1808
+ 102,
1809
+ 109,
1810
+ 115,
1811
+ 111,
1812
+ 107,
1813
+ 113,
1814
+ 112,
1815
+ 118,
1816
+ 116,
1817
+ 110,
1818
+ 104,
1819
+ 106,
1820
+ 117,
1821
+ 105,
1822
+ 108,
1823
+ 114,
1824
+ 103,
1825
+ 109,
1826
+ 102,
1827
+ 102,
1828
+ 102,
1829
+ 115,
1830
+ 118,
1831
+ 111,
1832
+ 107,
1833
+ 104,
1834
+ 116,
1835
+ 110,
1836
+ 114,
1837
+ 103,
1838
+ 106,
1839
+ 117,
1840
+ 105,
1841
+ 108,
1842
+ 102,
1843
+ 102,
1844
+ 102,
1845
+ 109,
1846
+ 112,
1847
+ 113
1848
+ ],
1849
+ "12": [
1850
+ 125,
1851
+ 122,
1852
+ 119,
1853
+ 120,
1854
+ 124,
1855
+ 123,
1856
+ 126,
1857
+ 127,
1858
+ 121,
1859
+ 125,
1860
+ 122,
1861
+ 119,
1862
+ 120,
1863
+ 124,
1864
+ 127,
1865
+ 126,
1866
+ 123,
1867
+ 121,
1868
+ 125,
1869
+ 122,
1870
+ 119,
1871
+ 120,
1872
+ 124,
1873
+ 127,
1874
+ 123,
1875
+ 126,
1876
+ 121,
1877
+ 125,
1878
+ 122,
1879
+ 119,
1880
+ 120,
1881
+ 127,
1882
+ 123,
1883
+ 124,
1884
+ 126,
1885
+ 121,
1886
+ 125,
1887
+ 122,
1888
+ 119,
1889
+ 120,
1890
+ 127,
1891
+ 123,
1892
+ 126,
1893
+ 124,
1894
+ 121,
1895
+ 125,
1896
+ 122,
1897
+ 119,
1898
+ 120,
1899
+ 127,
1900
+ 126,
1901
+ 124,
1902
+ 123,
1903
+ 121,
1904
+ 125,
1905
+ 122,
1906
+ 119,
1907
+ 120,
1908
+ 126,
1909
+ 124,
1910
+ 123,
1911
+ 127,
1912
+ 121,
1913
+ 125,
1914
+ 122,
1915
+ 119,
1916
+ 120,
1917
+ 126,
1918
+ 127,
1919
+ 124,
1920
+ 123,
1921
+ 121,
1922
+ 125,
1923
+ 122,
1924
+ 119,
1925
+ 120,
1926
+ 126,
1927
+ 127,
1928
+ 123,
1929
+ 124,
1930
+ 121,
1931
+ 125,
1932
+ 122,
1933
+ 119,
1934
+ 120,
1935
+ 126,
1936
+ 123,
1937
+ 127,
1938
+ 124,
1939
+ 121,
1940
+ 125,
1941
+ 122,
1942
+ 119,
1943
+ 120,
1944
+ 123,
1945
+ 127,
1946
+ 124,
1947
+ 126,
1948
+ 121,
1949
+ 125,
1950
+ 122,
1951
+ 119,
1952
+ 120,
1953
+ 124,
1954
+ 123,
1955
+ 127,
1956
+ 126,
1957
+ 121,
1958
+ 125,
1959
+ 122,
1960
+ 119,
1961
+ 120,
1962
+ 123,
1963
+ 126,
1964
+ 124,
1965
+ 127,
1966
+ 121,
1967
+ 125,
1968
+ 122,
1969
+ 119,
1970
+ 126,
1971
+ 124,
1972
+ 123,
1973
+ 127,
1974
+ 120,
1975
+ 121,
1976
+ 125,
1977
+ 122,
1978
+ 119,
1979
+ 120,
1980
+ 126,
1981
+ 127,
1982
+ 123,
1983
+ 124,
1984
+ 121,
1985
+ 125,
1986
+ 122,
1987
+ 119,
1988
+ 120,
1989
+ 123,
1990
+ 127,
1991
+ 126,
1992
+ 124,
1993
+ 121,
1994
+ 125,
1995
+ 122,
1996
+ 119,
1997
+ 120,
1998
+ 126,
1999
+ 127,
2000
+ 123,
2001
+ 124,
2002
+ 121,
2003
+ 125,
2004
+ 122,
2005
+ 119,
2006
+ 120,
2007
+ 123,
2008
+ 127,
2009
+ 124,
2010
+ 126,
2011
+ 121
2012
+ ],
2013
+ "13": [
2014
+ 129,
2015
+ 137,
2016
+ 132,
2017
+ 133,
2018
+ 138,
2019
+ 130,
2020
+ 135,
2021
+ 134,
2022
+ 131,
2023
+ 136,
2024
+ 128,
2025
+ 76,
2026
+ 129,
2027
+ 137,
2028
+ 132,
2029
+ 133,
2030
+ 130,
2031
+ 138,
2032
+ 135,
2033
+ 134,
2034
+ 131,
2035
+ 128,
2036
+ 136,
2037
+ 76,
2038
+ 129,
2039
+ 137,
2040
+ 132,
2041
+ 133,
2042
+ 138,
2043
+ 130,
2044
+ 135,
2045
+ 134,
2046
+ 131,
2047
+ 136,
2048
+ 128,
2049
+ 76,
2050
+ 129,
2051
+ 137,
2052
+ 132,
2053
+ 133,
2054
+ 130,
2055
+ 138,
2056
+ 135,
2057
+ 134,
2058
+ 131,
2059
+ 136,
2060
+ 128,
2061
+ 76,
2062
+ 129,
2063
+ 137,
2064
+ 132,
2065
+ 133,
2066
+ 130,
2067
+ 138,
2068
+ 135,
2069
+ 134,
2070
+ 136,
2071
+ 131,
2072
+ 128,
2073
+ 76,
2074
+ 129,
2075
+ 137,
2076
+ 132,
2077
+ 133,
2078
+ 130,
2079
+ 138,
2080
+ 135,
2081
+ 134,
2082
+ 131,
2083
+ 128,
2084
+ 136,
2085
+ 76,
2086
+ 129,
2087
+ 137,
2088
+ 132,
2089
+ 133,
2090
+ 130,
2091
+ 138,
2092
+ 135,
2093
+ 134,
2094
+ 131,
2095
+ 128,
2096
+ 136,
2097
+ 76,
2098
+ 129,
2099
+ 137,
2100
+ 132,
2101
+ 133,
2102
+ 130,
2103
+ 135,
2104
+ 134,
2105
+ 131,
2106
+ 128,
2107
+ 76,
2108
+ 138,
2109
+ 136,
2110
+ 137,
2111
+ 132,
2112
+ 133,
2113
+ 138,
2114
+ 135,
2115
+ 136,
2116
+ 131,
2117
+ 128,
2118
+ 76,
2119
+ 129,
2120
+ 130,
2121
+ 134,
2122
+ 129,
2123
+ 137,
2124
+ 132,
2125
+ 133,
2126
+ 130,
2127
+ 138,
2128
+ 136,
2129
+ 128,
2130
+ 76,
2131
+ 135,
2132
+ 134,
2133
+ 131,
2134
+ 129,
2135
+ 132,
2136
+ 130,
2137
+ 133,
2138
+ 138,
2139
+ 134,
2140
+ 136,
2141
+ 131,
2142
+ 76,
2143
+ 137,
2144
+ 135,
2145
+ 128,
2146
+ 129,
2147
+ 137,
2148
+ 132,
2149
+ 133,
2150
+ 130,
2151
+ 131,
2152
+ 128,
2153
+ 138,
2154
+ 135,
2155
+ 134,
2156
+ 136,
2157
+ 76,
2158
+ 129,
2159
+ 137,
2160
+ 132,
2161
+ 133,
2162
+ 130,
2163
+ 138,
2164
+ 135,
2165
+ 76,
2166
+ 136,
2167
+ 131,
2168
+ 128,
2169
+ 134,
2170
+ 129,
2171
+ 137,
2172
+ 132,
2173
+ 133,
2174
+ 138,
2175
+ 130,
2176
+ 136,
2177
+ 134,
2178
+ 131,
2179
+ 128,
2180
+ 135,
2181
+ 76
2182
+ ],
2183
+ "15": [
2184
+ 145,
2185
+ 140,
2186
+ 149,
2187
+ 155,
2188
+ 150,
2189
+ 154,
2190
+ 141,
2191
+ 139,
2192
+ 152,
2193
+ 151,
2194
+ 148,
2195
+ 147,
2196
+ 157,
2197
+ 142,
2198
+ 146,
2199
+ 144,
2200
+ 153,
2201
+ 143,
2202
+ 156,
2203
+ 145,
2204
+ 149,
2205
+ 140,
2206
+ 155,
2207
+ 150,
2208
+ 154,
2209
+ 139,
2210
+ 141,
2211
+ 152,
2212
+ 151,
2213
+ 148,
2214
+ 147,
2215
+ 157,
2216
+ 146,
2217
+ 142,
2218
+ 144,
2219
+ 153,
2220
+ 143,
2221
+ 156,
2222
+ 145,
2223
+ 149,
2224
+ 155,
2225
+ 150,
2226
+ 140,
2227
+ 154,
2228
+ 139,
2229
+ 141,
2230
+ 152,
2231
+ 151,
2232
+ 148,
2233
+ 147,
2234
+ 157,
2235
+ 146,
2236
+ 142,
2237
+ 144,
2238
+ 153,
2239
+ 143,
2240
+ 156,
2241
+ 145,
2242
+ 149,
2243
+ 140,
2244
+ 155,
2245
+ 150,
2246
+ 154,
2247
+ 141,
2248
+ 139,
2249
+ 152,
2250
+ 151,
2251
+ 148,
2252
+ 147,
2253
+ 157,
2254
+ 142,
2255
+ 146,
2256
+ 144,
2257
+ 153,
2258
+ 143,
2259
+ 156,
2260
+ 154,
2261
+ 145,
2262
+ 139,
2263
+ 149,
2264
+ 140,
2265
+ 141,
2266
+ 152,
2267
+ 151,
2268
+ 155,
2269
+ 148,
2270
+ 147,
2271
+ 157,
2272
+ 146,
2273
+ 150,
2274
+ 142,
2275
+ 144,
2276
+ 153,
2277
+ 143,
2278
+ 156,
2279
+ 145,
2280
+ 149,
2281
+ 155,
2282
+ 140,
2283
+ 150,
2284
+ 154,
2285
+ 141,
2286
+ 139,
2287
+ 152,
2288
+ 151,
2289
+ 148,
2290
+ 147,
2291
+ 157,
2292
+ 142,
2293
+ 146,
2294
+ 144,
2295
+ 153,
2296
+ 143,
2297
+ 156,
2298
+ 145,
2299
+ 154,
2300
+ 139,
2301
+ 141,
2302
+ 140,
2303
+ 152,
2304
+ 149,
2305
+ 151,
2306
+ 155,
2307
+ 150,
2308
+ 148,
2309
+ 147,
2310
+ 157,
2311
+ 142,
2312
+ 146,
2313
+ 144,
2314
+ 153,
2315
+ 143,
2316
+ 156,
2317
+ 154,
2318
+ 139,
2319
+ 141,
2320
+ 151,
2321
+ 147,
2322
+ 149,
2323
+ 155,
2324
+ 150,
2325
+ 157,
2326
+ 146,
2327
+ 142,
2328
+ 144,
2329
+ 153,
2330
+ 143,
2331
+ 156,
2332
+ 145,
2333
+ 140,
2334
+ 148,
2335
+ 152,
2336
+ 149,
2337
+ 154,
2338
+ 141,
2339
+ 139,
2340
+ 155,
2341
+ 145,
2342
+ 140,
2343
+ 152,
2344
+ 151,
2345
+ 148,
2346
+ 147,
2347
+ 150,
2348
+ 157,
2349
+ 146,
2350
+ 142,
2351
+ 144,
2352
+ 143,
2353
+ 156,
2354
+ 153,
2355
+ 154,
2356
+ 149,
2357
+ 139,
2358
+ 155,
2359
+ 145,
2360
+ 150,
2361
+ 140,
2362
+ 141,
2363
+ 152,
2364
+ 151,
2365
+ 148,
2366
+ 157,
2367
+ 146,
2368
+ 142,
2369
+ 144,
2370
+ 153,
2371
+ 143,
2372
+ 156,
2373
+ 147,
2374
+ 149,
2375
+ 145,
2376
+ 154,
2377
+ 140,
2378
+ 155,
2379
+ 150,
2380
+ 139,
2381
+ 147,
2382
+ 157,
2383
+ 142,
2384
+ 144,
2385
+ 143,
2386
+ 156,
2387
+ 152,
2388
+ 141,
2389
+ 151,
2390
+ 148,
2391
+ 153,
2392
+ 146,
2393
+ 145,
2394
+ 154,
2395
+ 141,
2396
+ 140,
2397
+ 139,
2398
+ 152,
2399
+ 151,
2400
+ 149,
2401
+ 148,
2402
+ 157,
2403
+ 150,
2404
+ 146,
2405
+ 142,
2406
+ 144,
2407
+ 153,
2408
+ 143,
2409
+ 156,
2410
+ 147,
2411
+ 155,
2412
+ 149,
2413
+ 145,
2414
+ 140,
2415
+ 155,
2416
+ 154,
2417
+ 139,
2418
+ 141,
2419
+ 150,
2420
+ 152,
2421
+ 151,
2422
+ 148,
2423
+ 147,
2424
+ 146,
2425
+ 157,
2426
+ 142,
2427
+ 144,
2428
+ 143,
2429
+ 156,
2430
+ 153,
2431
+ 145,
2432
+ 154,
2433
+ 139,
2434
+ 140,
2435
+ 141,
2436
+ 152,
2437
+ 149,
2438
+ 151,
2439
+ 155,
2440
+ 150,
2441
+ 157,
2442
+ 146,
2443
+ 147,
2444
+ 142,
2445
+ 144,
2446
+ 153,
2447
+ 143,
2448
+ 156,
2449
+ 148,
2450
+ 145,
2451
+ 154,
2452
+ 139,
2453
+ 140,
2454
+ 149,
2455
+ 141,
2456
+ 152,
2457
+ 148,
2458
+ 151,
2459
+ 155,
2460
+ 143,
2461
+ 150,
2462
+ 157,
2463
+ 146,
2464
+ 142,
2465
+ 153,
2466
+ 144,
2467
+ 156,
2468
+ 147
2469
+ ],
2470
+ "16": [
2471
+ 163,
2472
+ 158,
2473
+ 169,
2474
+ 161,
2475
+ 176,
2476
+ 180,
2477
+ 167,
2478
+ 177,
2479
+ 164,
2480
+ 159,
2481
+ 173,
2482
+ 178,
2483
+ 179,
2484
+ 166,
2485
+ 160,
2486
+ 162,
2487
+ 165,
2488
+ 168,
2489
+ 175,
2490
+ 170,
2491
+ 172,
2492
+ 171,
2493
+ 174,
2494
+ 163,
2495
+ 169,
2496
+ 167,
2497
+ 177,
2498
+ 161,
2499
+ 158,
2500
+ 176,
2501
+ 180,
2502
+ 164,
2503
+ 159,
2504
+ 173,
2505
+ 178,
2506
+ 179,
2507
+ 166,
2508
+ 160,
2509
+ 162,
2510
+ 165,
2511
+ 168,
2512
+ 175,
2513
+ 170,
2514
+ 172,
2515
+ 171,
2516
+ 174,
2517
+ 161,
2518
+ 158,
2519
+ 176,
2520
+ 163,
2521
+ 169,
2522
+ 167,
2523
+ 177,
2524
+ 180,
2525
+ 164,
2526
+ 159,
2527
+ 173,
2528
+ 178,
2529
+ 179,
2530
+ 166,
2531
+ 162,
2532
+ 160,
2533
+ 165,
2534
+ 168,
2535
+ 175,
2536
+ 170,
2537
+ 172,
2538
+ 171,
2539
+ 174,
2540
+ 161,
2541
+ 164,
2542
+ 176,
2543
+ 163,
2544
+ 180,
2545
+ 169,
2546
+ 167,
2547
+ 177,
2548
+ 159,
2549
+ 158,
2550
+ 173,
2551
+ 179,
2552
+ 178,
2553
+ 166,
2554
+ 162,
2555
+ 160,
2556
+ 165,
2557
+ 175,
2558
+ 168,
2559
+ 170,
2560
+ 172,
2561
+ 171,
2562
+ 174,
2563
+ 167,
2564
+ 177,
2565
+ 164,
2566
+ 169,
2567
+ 158,
2568
+ 163,
2569
+ 176,
2570
+ 161,
2571
+ 180,
2572
+ 159,
2573
+ 173,
2574
+ 178,
2575
+ 179,
2576
+ 166,
2577
+ 162,
2578
+ 160,
2579
+ 165,
2580
+ 168,
2581
+ 175,
2582
+ 170,
2583
+ 172,
2584
+ 171,
2585
+ 174,
2586
+ 176,
2587
+ 161,
2588
+ 163,
2589
+ 164,
2590
+ 167,
2591
+ 177,
2592
+ 159,
2593
+ 180,
2594
+ 169,
2595
+ 158,
2596
+ 173,
2597
+ 179,
2598
+ 178,
2599
+ 166,
2600
+ 162,
2601
+ 160,
2602
+ 165,
2603
+ 175,
2604
+ 168,
2605
+ 170,
2606
+ 172,
2607
+ 171,
2608
+ 174,
2609
+ 167,
2610
+ 169,
2611
+ 177,
2612
+ 176,
2613
+ 161,
2614
+ 164,
2615
+ 180,
2616
+ 159,
2617
+ 158,
2618
+ 163,
2619
+ 173,
2620
+ 178,
2621
+ 179,
2622
+ 166,
2623
+ 162,
2624
+ 160,
2625
+ 165,
2626
+ 175,
2627
+ 168,
2628
+ 170,
2629
+ 172,
2630
+ 171,
2631
+ 174,
2632
+ 161,
2633
+ 164,
2634
+ 167,
2635
+ 177,
2636
+ 159,
2637
+ 169,
2638
+ 158,
2639
+ 163,
2640
+ 176,
2641
+ 180,
2642
+ 173,
2643
+ 178,
2644
+ 179,
2645
+ 166,
2646
+ 160,
2647
+ 162,
2648
+ 165,
2649
+ 175,
2650
+ 168,
2651
+ 170,
2652
+ 172,
2653
+ 171,
2654
+ 174,
2655
+ 163,
2656
+ 169,
2657
+ 173,
2658
+ 168,
2659
+ 158,
2660
+ 178,
2661
+ 161,
2662
+ 164,
2663
+ 175,
2664
+ 176,
2665
+ 167,
2666
+ 180,
2667
+ 179,
2668
+ 166,
2669
+ 162,
2670
+ 165,
2671
+ 170,
2672
+ 177,
2673
+ 159,
2674
+ 172,
2675
+ 171,
2676
+ 160,
2677
+ 174,
2678
+ 163,
2679
+ 168,
2680
+ 158,
2681
+ 173,
2682
+ 178,
2683
+ 177,
2684
+ 161,
2685
+ 176,
2686
+ 164,
2687
+ 180,
2688
+ 179,
2689
+ 167,
2690
+ 166,
2691
+ 162,
2692
+ 160,
2693
+ 159,
2694
+ 165,
2695
+ 172,
2696
+ 171,
2697
+ 174,
2698
+ 169,
2699
+ 175,
2700
+ 170,
2701
+ 163,
2702
+ 169,
2703
+ 173,
2704
+ 179,
2705
+ 178,
2706
+ 158,
2707
+ 175,
2708
+ 161,
2709
+ 168,
2710
+ 167,
2711
+ 164,
2712
+ 177,
2713
+ 166,
2714
+ 176,
2715
+ 162,
2716
+ 180,
2717
+ 160,
2718
+ 165,
2719
+ 170,
2720
+ 159,
2721
+ 172,
2722
+ 171,
2723
+ 174,
2724
+ 173,
2725
+ 176,
2726
+ 167,
2727
+ 163,
2728
+ 179,
2729
+ 169,
2730
+ 161,
2731
+ 178,
2732
+ 175,
2733
+ 166,
2734
+ 160,
2735
+ 162,
2736
+ 165,
2737
+ 158,
2738
+ 168,
2739
+ 164,
2740
+ 159,
2741
+ 172,
2742
+ 171,
2743
+ 174,
2744
+ 180,
2745
+ 177,
2746
+ 170,
2747
+ 173,
2748
+ 168,
2749
+ 161,
2750
+ 177,
2751
+ 178,
2752
+ 167,
2753
+ 169,
2754
+ 176,
2755
+ 162,
2756
+ 175,
2757
+ 160,
2758
+ 165,
2759
+ 164,
2760
+ 180,
2761
+ 160,
2762
+ 158,
2763
+ 159,
2764
+ 172,
2765
+ 171,
2766
+ 174,
2767
+ 163,
2768
+ 170,
2769
+ 179,
2770
+ 166,
2771
+ 173,
2772
+ 163,
2773
+ 161,
2774
+ 158,
2775
+ 167,
2776
+ 169,
2777
+ 159,
2778
+ 175,
2779
+ 179,
2780
+ 176,
2781
+ 164,
2782
+ 180,
2783
+ 166,
2784
+ 162,
2785
+ 177,
2786
+ 165,
2787
+ 170,
2788
+ 172,
2789
+ 171,
2790
+ 174,
2791
+ 168,
2792
+ 160,
2793
+ 178,
2794
+ 163,
2795
+ 169,
2796
+ 176,
2797
+ 180,
2798
+ 173,
2799
+ 161,
2800
+ 179,
2801
+ 158,
2802
+ 166,
2803
+ 160,
2804
+ 162,
2805
+ 165,
2806
+ 175,
2807
+ 168,
2808
+ 170,
2809
+ 167,
2810
+ 177,
2811
+ 164,
2812
+ 159,
2813
+ 172,
2814
+ 171,
2815
+ 174,
2816
+ 178,
2817
+ 173,
2818
+ 176,
2819
+ 169,
2820
+ 178,
2821
+ 158,
2822
+ 180,
2823
+ 168,
2824
+ 167,
2825
+ 177,
2826
+ 161,
2827
+ 160,
2828
+ 163,
2829
+ 162,
2830
+ 165,
2831
+ 159,
2832
+ 179,
2833
+ 166,
2834
+ 172,
2835
+ 171,
2836
+ 174,
2837
+ 164,
2838
+ 175,
2839
+ 170
2840
+ ],
2841
+ "17": [
2842
+ 183,
2843
+ 181,
2844
+ 189,
2845
+ 191,
2846
+ 182,
2847
+ 188,
2848
+ 185,
2849
+ 187,
2850
+ 184,
2851
+ 190,
2852
+ 186,
2853
+ 183,
2854
+ 181,
2855
+ 187,
2856
+ 188,
2857
+ 189,
2858
+ 184,
2859
+ 182,
2860
+ 191,
2861
+ 185,
2862
+ 190,
2863
+ 186,
2864
+ 183,
2865
+ 191,
2866
+ 189,
2867
+ 182,
2868
+ 188,
2869
+ 185,
2870
+ 187,
2871
+ 181,
2872
+ 184,
2873
+ 190,
2874
+ 186,
2875
+ 183,
2876
+ 188,
2877
+ 187,
2878
+ 189,
2879
+ 191,
2880
+ 184,
2881
+ 182,
2882
+ 181,
2883
+ 185,
2884
+ 190,
2885
+ 186,
2886
+ 183,
2887
+ 187,
2888
+ 184,
2889
+ 188,
2890
+ 191,
2891
+ 189,
2892
+ 181,
2893
+ 182,
2894
+ 185,
2895
+ 190,
2896
+ 186,
2897
+ 183,
2898
+ 181,
2899
+ 187,
2900
+ 188,
2901
+ 189,
2902
+ 182,
2903
+ 185,
2904
+ 190,
2905
+ 184,
2906
+ 191,
2907
+ 186,
2908
+ 189,
2909
+ 183,
2910
+ 187,
2911
+ 184,
2912
+ 182,
2913
+ 181,
2914
+ 188,
2915
+ 185,
2916
+ 191,
2917
+ 190,
2918
+ 186,
2919
+ 183,
2920
+ 189,
2921
+ 181,
2922
+ 188,
2923
+ 182,
2924
+ 187,
2925
+ 185,
2926
+ 184,
2927
+ 191,
2928
+ 190,
2929
+ 186,
2930
+ 183,
2931
+ 191,
2932
+ 181,
2933
+ 189,
2934
+ 187,
2935
+ 182,
2936
+ 185,
2937
+ 184,
2938
+ 190,
2939
+ 188,
2940
+ 186,
2941
+ 183,
2942
+ 187,
2943
+ 184,
2944
+ 188,
2945
+ 191,
2946
+ 189,
2947
+ 181,
2948
+ 182,
2949
+ 185,
2950
+ 190,
2951
+ 186,
2952
+ 189,
2953
+ 183,
2954
+ 181,
2955
+ 182,
2956
+ 185,
2957
+ 190,
2958
+ 188,
2959
+ 184,
2960
+ 191,
2961
+ 187,
2962
+ 186,
2963
+ 183,
2964
+ 187,
2965
+ 189,
2966
+ 191,
2967
+ 188,
2968
+ 181,
2969
+ 182,
2970
+ 185,
2971
+ 190,
2972
+ 184,
2973
+ 186,
2974
+ 183,
2975
+ 189,
2976
+ 182,
2977
+ 191,
2978
+ 181,
2979
+ 184,
2980
+ 187,
2981
+ 185,
2982
+ 190,
2983
+ 186,
2984
+ 188,
2985
+ 189,
2986
+ 183,
2987
+ 187,
2988
+ 182,
2989
+ 188,
2990
+ 181,
2991
+ 185,
2992
+ 191,
2993
+ 190,
2994
+ 186,
2995
+ 184,
2996
+ 187,
2997
+ 191,
2998
+ 183,
2999
+ 182,
3000
+ 181,
3001
+ 188,
3002
+ 185,
3003
+ 190,
3004
+ 184,
3005
+ 189,
3006
+ 186,
3007
+ 188,
3008
+ 187,
3009
+ 189,
3010
+ 183,
3011
+ 182,
3012
+ 184,
3013
+ 181,
3014
+ 191,
3015
+ 186,
3016
+ 185,
3017
+ 190,
3018
+ 186,
3019
+ 188,
3020
+ 187,
3021
+ 189,
3022
+ 181,
3023
+ 183,
3024
+ 185,
3025
+ 184,
3026
+ 191,
3027
+ 190,
3028
+ 186,
3029
+ 182,
3030
+ 189,
3031
+ 185,
3032
+ 184,
3033
+ 188,
3034
+ 187,
3035
+ 183,
3036
+ 191,
3037
+ 190,
3038
+ 181,
3039
+ 186,
3040
+ 182,
3041
+ 189,
3042
+ 188,
3043
+ 181,
3044
+ 182,
3045
+ 187,
3046
+ 191,
3047
+ 185,
3048
+ 190,
3049
+ 184,
3050
+ 183,
3051
+ 186,
3052
+ 181,
3053
+ 189,
3054
+ 188,
3055
+ 182,
3056
+ 191,
3057
+ 184,
3058
+ 183,
3059
+ 186,
3060
+ 187,
3061
+ 185,
3062
+ 190
3063
+ ],
3064
+ "18": [
3065
+ 203,
3066
+ 200,
3067
+ 196,
3068
+ 204,
3069
+ 199,
3070
+ 202,
3071
+ 201,
3072
+ 193,
3073
+ 198,
3074
+ 194,
3075
+ 192,
3076
+ 197,
3077
+ 195,
3078
+ 203,
3079
+ 196,
3080
+ 204,
3081
+ 200,
3082
+ 199,
3083
+ 202,
3084
+ 201,
3085
+ 198,
3086
+ 194,
3087
+ 193,
3088
+ 192,
3089
+ 197,
3090
+ 195,
3091
+ 203,
3092
+ 200,
3093
+ 196,
3094
+ 204,
3095
+ 199,
3096
+ 202,
3097
+ 201,
3098
+ 193,
3099
+ 198,
3100
+ 194,
3101
+ 192,
3102
+ 197,
3103
+ 195,
3104
+ 200,
3105
+ 203,
3106
+ 196,
3107
+ 204,
3108
+ 199,
3109
+ 202,
3110
+ 201,
3111
+ 198,
3112
+ 194,
3113
+ 193,
3114
+ 192,
3115
+ 197,
3116
+ 195,
3117
+ 200,
3118
+ 203,
3119
+ 196,
3120
+ 204,
3121
+ 199,
3122
+ 202,
3123
+ 201,
3124
+ 193,
3125
+ 194,
3126
+ 198,
3127
+ 192,
3128
+ 197,
3129
+ 195,
3130
+ 203,
3131
+ 200,
3132
+ 196,
3133
+ 204,
3134
+ 199,
3135
+ 202,
3136
+ 201,
3137
+ 194,
3138
+ 198,
3139
+ 193,
3140
+ 192,
3141
+ 197,
3142
+ 195,
3143
+ 200,
3144
+ 203,
3145
+ 196,
3146
+ 204,
3147
+ 199,
3148
+ 202,
3149
+ 201,
3150
+ 193,
3151
+ 194,
3152
+ 198,
3153
+ 192,
3154
+ 197,
3155
+ 195,
3156
+ 200,
3157
+ 196,
3158
+ 204,
3159
+ 199,
3160
+ 203,
3161
+ 202,
3162
+ 194,
3163
+ 193,
3164
+ 201,
3165
+ 192,
3166
+ 198,
3167
+ 197,
3168
+ 195,
3169
+ 200,
3170
+ 196,
3171
+ 203,
3172
+ 204,
3173
+ 199,
3174
+ 202,
3175
+ 201,
3176
+ 193,
3177
+ 192,
3178
+ 194,
3179
+ 198,
3180
+ 197,
3181
+ 195,
3182
+ 196,
3183
+ 204,
3184
+ 200,
3185
+ 199,
3186
+ 202,
3187
+ 194,
3188
+ 193,
3189
+ 197,
3190
+ 195,
3191
+ 203,
3192
+ 198,
3193
+ 201,
3194
+ 192,
3195
+ 196,
3196
+ 203,
3197
+ 200,
3198
+ 204,
3199
+ 199,
3200
+ 202,
3201
+ 194,
3202
+ 201,
3203
+ 198,
3204
+ 192,
3205
+ 193,
3206
+ 197,
3207
+ 195,
3208
+ 196,
3209
+ 200,
3210
+ 203,
3211
+ 204,
3212
+ 199,
3213
+ 194,
3214
+ 193,
3215
+ 201,
3216
+ 198,
3217
+ 192,
3218
+ 195,
3219
+ 197,
3220
+ 202,
3221
+ 196,
3222
+ 200,
3223
+ 202,
3224
+ 204,
3225
+ 198,
3226
+ 203,
3227
+ 194,
3228
+ 199,
3229
+ 201,
3230
+ 193,
3231
+ 192,
3232
+ 197,
3233
+ 195,
3234
+ 200,
3235
+ 196,
3236
+ 199,
3237
+ 202,
3238
+ 194,
3239
+ 198,
3240
+ 203,
3241
+ 201,
3242
+ 204,
3243
+ 192,
3244
+ 193,
3245
+ 197,
3246
+ 195,
3247
+ 200,
3248
+ 196,
3249
+ 204,
3250
+ 199,
3251
+ 202,
3252
+ 203,
3253
+ 201,
3254
+ 198,
3255
+ 194,
3256
+ 193,
3257
+ 192,
3258
+ 197,
3259
+ 195
3260
+ ],
3261
+ "20": [
3262
+ 206,
3263
+ 176,
3264
+ 212,
3265
+ 205,
3266
+ 214,
3267
+ 210,
3268
+ 211,
3269
+ 215,
3270
+ 208,
3271
+ 213,
3272
+ 209,
3273
+ 207,
3274
+ 218,
3275
+ 217,
3276
+ 207,
3277
+ 219,
3278
+ 220,
3279
+ 216,
3280
+ 176,
3281
+ 211,
3282
+ 206,
3283
+ 205,
3284
+ 214,
3285
+ 210,
3286
+ 212,
3287
+ 215,
3288
+ 208,
3289
+ 213,
3290
+ 209,
3291
+ 207,
3292
+ 218,
3293
+ 217,
3294
+ 207,
3295
+ 219,
3296
+ 220,
3297
+ 216,
3298
+ 212,
3299
+ 206,
3300
+ 205,
3301
+ 176,
3302
+ 214,
3303
+ 211,
3304
+ 210,
3305
+ 215,
3306
+ 208,
3307
+ 213,
3308
+ 209,
3309
+ 207,
3310
+ 217,
3311
+ 218,
3312
+ 207,
3313
+ 219,
3314
+ 220,
3315
+ 216,
3316
+ 206,
3317
+ 205,
3318
+ 214,
3319
+ 210,
3320
+ 176,
3321
+ 212,
3322
+ 211,
3323
+ 215,
3324
+ 208,
3325
+ 213,
3326
+ 209,
3327
+ 207,
3328
+ 217,
3329
+ 218,
3330
+ 207,
3331
+ 219,
3332
+ 220,
3333
+ 216,
3334
+ 206,
3335
+ 205,
3336
+ 214,
3337
+ 210,
3338
+ 176,
3339
+ 212,
3340
+ 211,
3341
+ 215,
3342
+ 208,
3343
+ 213,
3344
+ 209,
3345
+ 207,
3346
+ 217,
3347
+ 218,
3348
+ 207,
3349
+ 219,
3350
+ 220,
3351
+ 216,
3352
+ 176,
3353
+ 206,
3354
+ 205,
3355
+ 214,
3356
+ 210,
3357
+ 211,
3358
+ 212,
3359
+ 215,
3360
+ 208,
3361
+ 213,
3362
+ 209,
3363
+ 207,
3364
+ 218,
3365
+ 217,
3366
+ 207,
3367
+ 219,
3368
+ 220,
3369
+ 216,
3370
+ 176,
3371
+ 206,
3372
+ 212,
3373
+ 211,
3374
+ 205,
3375
+ 214,
3376
+ 210,
3377
+ 215,
3378
+ 208,
3379
+ 213,
3380
+ 209,
3381
+ 207,
3382
+ 218,
3383
+ 217,
3384
+ 207,
3385
+ 219,
3386
+ 220,
3387
+ 216,
3388
+ 215,
3389
+ 206,
3390
+ 176,
3391
+ 205,
3392
+ 214,
3393
+ 212,
3394
+ 210,
3395
+ 208,
3396
+ 213,
3397
+ 211,
3398
+ 207,
3399
+ 218,
3400
+ 209,
3401
+ 207,
3402
+ 219,
3403
+ 220,
3404
+ 216,
3405
+ 217,
3406
+ 206,
3407
+ 176,
3408
+ 205,
3409
+ 215,
3410
+ 212,
3411
+ 210,
3412
+ 211,
3413
+ 208,
3414
+ 213,
3415
+ 207,
3416
+ 217,
3417
+ 218,
3418
+ 207,
3419
+ 220,
3420
+ 219,
3421
+ 216,
3422
+ 209,
3423
+ 214,
3424
+ 206,
3425
+ 205,
3426
+ 214,
3427
+ 210,
3428
+ 215,
3429
+ 212,
3430
+ 208,
3431
+ 213,
3432
+ 209,
3433
+ 176,
3434
+ 207,
3435
+ 211,
3436
+ 218,
3437
+ 217,
3438
+ 207,
3439
+ 219,
3440
+ 216,
3441
+ 220,
3442
+ 176,
3443
+ 214,
3444
+ 210,
3445
+ 212,
3446
+ 215,
3447
+ 208,
3448
+ 213,
3449
+ 209,
3450
+ 207,
3451
+ 211,
3452
+ 218,
3453
+ 217,
3454
+ 207,
3455
+ 219,
3456
+ 216,
3457
+ 206,
3458
+ 220,
3459
+ 205,
3460
+ 176,
3461
+ 215,
3462
+ 211,
3463
+ 206,
3464
+ 217,
3465
+ 205,
3466
+ 214,
3467
+ 212,
3468
+ 218,
3469
+ 208,
3470
+ 213,
3471
+ 209,
3472
+ 207,
3473
+ 219,
3474
+ 207,
3475
+ 220,
3476
+ 216,
3477
+ 210,
3478
+ 212,
3479
+ 215,
3480
+ 206,
3481
+ 205,
3482
+ 176,
3483
+ 214,
3484
+ 210,
3485
+ 208,
3486
+ 213,
3487
+ 220,
3488
+ 207,
3489
+ 211,
3490
+ 218,
3491
+ 207,
3492
+ 209,
3493
+ 219,
3494
+ 216,
3495
+ 217,
3496
+ 206,
3497
+ 215,
3498
+ 205,
3499
+ 214,
3500
+ 176,
3501
+ 210,
3502
+ 207,
3503
+ 217,
3504
+ 211,
3505
+ 218,
3506
+ 207,
3507
+ 219,
3508
+ 220,
3509
+ 208,
3510
+ 209,
3511
+ 213,
3512
+ 216,
3513
+ 212
3514
+ ],
3515
+ "21": [
3516
+ 225,
3517
+ 229,
3518
+ 221,
3519
+ 232,
3520
+ 227,
3521
+ 223,
3522
+ 231,
3523
+ 226,
3524
+ 233,
3525
+ 228,
3526
+ 230,
3527
+ 234,
3528
+ 222,
3529
+ 224,
3530
+ 229,
3531
+ 225,
3532
+ 232,
3533
+ 221,
3534
+ 227,
3535
+ 223,
3536
+ 231,
3537
+ 226,
3538
+ 228,
3539
+ 233,
3540
+ 230,
3541
+ 234,
3542
+ 222,
3543
+ 224,
3544
+ 221,
3545
+ 229,
3546
+ 225,
3547
+ 232,
3548
+ 227,
3549
+ 233,
3550
+ 223,
3551
+ 231,
3552
+ 226,
3553
+ 228,
3554
+ 230,
3555
+ 234,
3556
+ 222,
3557
+ 224,
3558
+ 232,
3559
+ 225,
3560
+ 233,
3561
+ 229,
3562
+ 221,
3563
+ 227,
3564
+ 223,
3565
+ 231,
3566
+ 226,
3567
+ 228,
3568
+ 230,
3569
+ 234,
3570
+ 222,
3571
+ 224,
3572
+ 232,
3573
+ 229,
3574
+ 225,
3575
+ 221,
3576
+ 233,
3577
+ 227,
3578
+ 223,
3579
+ 231,
3580
+ 226,
3581
+ 228,
3582
+ 230,
3583
+ 234,
3584
+ 222,
3585
+ 224,
3586
+ 225,
3587
+ 229,
3588
+ 221,
3589
+ 232,
3590
+ 227,
3591
+ 233,
3592
+ 223,
3593
+ 231,
3594
+ 226,
3595
+ 228,
3596
+ 230,
3597
+ 234,
3598
+ 222,
3599
+ 224,
3600
+ 232,
3601
+ 221,
3602
+ 233,
3603
+ 225,
3604
+ 229,
3605
+ 227,
3606
+ 223,
3607
+ 231,
3608
+ 226,
3609
+ 228,
3610
+ 230,
3611
+ 234,
3612
+ 222,
3613
+ 224,
3614
+ 232,
3615
+ 225,
3616
+ 221,
3617
+ 229,
3618
+ 233,
3619
+ 227,
3620
+ 223,
3621
+ 231,
3622
+ 226,
3623
+ 228,
3624
+ 230,
3625
+ 234,
3626
+ 222,
3627
+ 224,
3628
+ 232,
3629
+ 225,
3630
+ 221,
3631
+ 233,
3632
+ 229,
3633
+ 227,
3634
+ 223,
3635
+ 231,
3636
+ 226,
3637
+ 228,
3638
+ 230,
3639
+ 234,
3640
+ 222,
3641
+ 224,
3642
+ 229,
3643
+ 232,
3644
+ 225,
3645
+ 227,
3646
+ 223,
3647
+ 231,
3648
+ 226,
3649
+ 228,
3650
+ 230,
3651
+ 233,
3652
+ 234,
3653
+ 222,
3654
+ 224,
3655
+ 221,
3656
+ 232,
3657
+ 229,
3658
+ 221,
3659
+ 227,
3660
+ 223,
3661
+ 231,
3662
+ 226,
3663
+ 233,
3664
+ 228,
3665
+ 230,
3666
+ 234,
3667
+ 222,
3668
+ 224,
3669
+ 225,
3670
+ 232,
3671
+ 225,
3672
+ 221,
3673
+ 233,
3674
+ 229,
3675
+ 227,
3676
+ 231,
3677
+ 226,
3678
+ 228,
3679
+ 230,
3680
+ 234,
3681
+ 222,
3682
+ 224,
3683
+ 223,
3684
+ 229,
3685
+ 225,
3686
+ 232,
3687
+ 221,
3688
+ 227,
3689
+ 223,
3690
+ 231,
3691
+ 226,
3692
+ 228,
3693
+ 230,
3694
+ 234,
3695
+ 224,
3696
+ 233,
3697
+ 222,
3698
+ 221,
3699
+ 225,
3700
+ 229,
3701
+ 232,
3702
+ 227,
3703
+ 223,
3704
+ 231,
3705
+ 226,
3706
+ 228,
3707
+ 230,
3708
+ 224,
3709
+ 234,
3710
+ 233,
3711
+ 222,
3712
+ 221,
3713
+ 232,
3714
+ 233,
3715
+ 224,
3716
+ 225,
3717
+ 227,
3718
+ 223,
3719
+ 231,
3720
+ 226,
3721
+ 228,
3722
+ 230,
3723
+ 234,
3724
+ 222,
3725
+ 229,
3726
+ 225,
3727
+ 221,
3728
+ 229,
3729
+ 232,
3730
+ 233,
3731
+ 227,
3732
+ 223,
3733
+ 224,
3734
+ 231,
3735
+ 226,
3736
+ 228,
3737
+ 230,
3738
+ 234,
3739
+ 222,
3740
+ 225,
3741
+ 221,
3742
+ 229,
3743
+ 227,
3744
+ 232,
3745
+ 227,
3746
+ 223,
3747
+ 231,
3748
+ 226,
3749
+ 228,
3750
+ 230,
3751
+ 234,
3752
+ 233,
3753
+ 222,
3754
+ 224,
3755
+ 232,
3756
+ 221,
3757
+ 225,
3758
+ 227,
3759
+ 229,
3760
+ 231,
3761
+ 226,
3762
+ 228,
3763
+ 223,
3764
+ 230,
3765
+ 233,
3766
+ 234,
3767
+ 222,
3768
+ 224,
3769
+ 225,
3770
+ 229,
3771
+ 221,
3772
+ 232,
3773
+ 227,
3774
+ 223,
3775
+ 231,
3776
+ 226,
3777
+ 233,
3778
+ 228,
3779
+ 230,
3780
+ 234,
3781
+ 222,
3782
+ 224
3783
+ ],
3784
+ "22": [
3785
+ 247,
3786
+ 237,
3787
+ 246,
3788
+ 239,
3789
+ 242,
3790
+ 249,
3791
+ 248,
3792
+ 235,
3793
+ 240,
3794
+ 244,
3795
+ 236,
3796
+ 241,
3797
+ 238,
3798
+ 245,
3799
+ 243,
3800
+ 239,
3801
+ 237,
3802
+ 247,
3803
+ 246,
3804
+ 242,
3805
+ 249,
3806
+ 248,
3807
+ 235,
3808
+ 240,
3809
+ 244,
3810
+ 236,
3811
+ 241,
3812
+ 238,
3813
+ 245,
3814
+ 243,
3815
+ 247,
3816
+ 237,
3817
+ 246,
3818
+ 242,
3819
+ 249,
3820
+ 239,
3821
+ 248,
3822
+ 235,
3823
+ 240,
3824
+ 244,
3825
+ 236,
3826
+ 241,
3827
+ 238,
3828
+ 245,
3829
+ 243,
3830
+ 237,
3831
+ 249,
3832
+ 247,
3833
+ 242,
3834
+ 239,
3835
+ 246,
3836
+ 248,
3837
+ 235,
3838
+ 240,
3839
+ 244,
3840
+ 236,
3841
+ 241,
3842
+ 238,
3843
+ 245,
3844
+ 243,
3845
+ 239,
3846
+ 237,
3847
+ 242,
3848
+ 247,
3849
+ 246,
3850
+ 235,
3851
+ 240,
3852
+ 244,
3853
+ 249,
3854
+ 248,
3855
+ 236,
3856
+ 241,
3857
+ 238,
3858
+ 245,
3859
+ 243,
3860
+ 247,
3861
+ 246,
3862
+ 237,
3863
+ 242,
3864
+ 239,
3865
+ 249,
3866
+ 248,
3867
+ 235,
3868
+ 240,
3869
+ 244,
3870
+ 236,
3871
+ 241,
3872
+ 238,
3873
+ 245,
3874
+ 243,
3875
+ 247,
3876
+ 237,
3877
+ 239,
3878
+ 246,
3879
+ 242,
3880
+ 249,
3881
+ 248,
3882
+ 235,
3883
+ 240,
3884
+ 244,
3885
+ 236,
3886
+ 241,
3887
+ 238,
3888
+ 245,
3889
+ 243,
3890
+ 237,
3891
+ 247,
3892
+ 242,
3893
+ 239,
3894
+ 246,
3895
+ 249,
3896
+ 248,
3897
+ 235,
3898
+ 240,
3899
+ 244,
3900
+ 236,
3901
+ 241,
3902
+ 238,
3903
+ 245,
3904
+ 243,
3905
+ 237,
3906
+ 247,
3907
+ 246,
3908
+ 242,
3909
+ 239,
3910
+ 249,
3911
+ 248,
3912
+ 235,
3913
+ 240,
3914
+ 244,
3915
+ 236,
3916
+ 241,
3917
+ 238,
3918
+ 245,
3919
+ 243,
3920
+ 247,
3921
+ 246,
3922
+ 235,
3923
+ 237,
3924
+ 249,
3925
+ 240,
3926
+ 244,
3927
+ 239,
3928
+ 242,
3929
+ 236,
3930
+ 248,
3931
+ 241,
3932
+ 238,
3933
+ 245,
3934
+ 243,
3935
+ 237,
3936
+ 247,
3937
+ 246,
3938
+ 239,
3939
+ 235,
3940
+ 240,
3941
+ 244,
3942
+ 242,
3943
+ 244,
3944
+ 249,
3945
+ 236,
3946
+ 241,
3947
+ 238,
3948
+ 245,
3949
+ 243,
3950
+ 248,
3951
+ 239,
3952
+ 249,
3953
+ 237,
3954
+ 235,
3955
+ 247,
3956
+ 246,
3957
+ 248,
3958
+ 240,
3959
+ 241,
3960
+ 238,
3961
+ 245,
3962
+ 243,
3963
+ 236,
3964
+ 244,
3965
+ 242,
3966
+ 237,
3967
+ 249,
3968
+ 235,
3969
+ 247,
3970
+ 246,
3971
+ 240,
3972
+ 239,
3973
+ 248,
3974
+ 244,
3975
+ 236,
3976
+ 242,
3977
+ 241,
3978
+ 238,
3979
+ 245,
3980
+ 243,
3981
+ 247,
3982
+ 239,
3983
+ 235,
3984
+ 246,
3985
+ 249,
3986
+ 248,
3987
+ 241,
3988
+ 240,
3989
+ 244,
3990
+ 236,
3991
+ 237,
3992
+ 242,
3993
+ 238,
3994
+ 245,
3995
+ 243,
3996
+ 247,
3997
+ 237,
3998
+ 246,
3999
+ 239,
4000
+ 249,
4001
+ 235,
4002
+ 242,
4003
+ 248,
4004
+ 240,
4005
+ 241,
4006
+ 244,
4007
+ 236,
4008
+ 238,
4009
+ 245,
4010
+ 243,
4011
+ 247,
4012
+ 237,
4013
+ 246,
4014
+ 235,
4015
+ 240,
4016
+ 242,
4017
+ 248,
4018
+ 244,
4019
+ 236,
4020
+ 239,
4021
+ 249,
4022
+ 241,
4023
+ 238,
4024
+ 245,
4025
+ 243,
4026
+ 237,
4027
+ 249,
4028
+ 235,
4029
+ 247,
4030
+ 246,
4031
+ 240,
4032
+ 239,
4033
+ 248,
4034
+ 244,
4035
+ 236,
4036
+ 242,
4037
+ 241,
4038
+ 238,
4039
+ 245,
4040
+ 243
4041
+ ],
4042
+ "23": [
4043
+ 273,
4044
+ 268,
4045
+ 250,
4046
+ 270,
4047
+ 269,
4048
+ 254,
4049
+ 257,
4050
+ 267,
4051
+ 262,
4052
+ 271,
4053
+ 255,
4054
+ 259,
4055
+ 252,
4056
+ 260,
4057
+ 251,
4058
+ 263,
4059
+ 266,
4060
+ 258,
4061
+ 265,
4062
+ 253,
4063
+ 261,
4064
+ 274,
4065
+ 272,
4066
+ 256,
4067
+ 264,
4068
+ 273,
4069
+ 269,
4070
+ 257,
4071
+ 270,
4072
+ 259,
4073
+ 267,
4074
+ 250,
4075
+ 268,
4076
+ 254,
4077
+ 262,
4078
+ 255,
4079
+ 252,
4080
+ 260,
4081
+ 251,
4082
+ 271,
4083
+ 263,
4084
+ 266,
4085
+ 258,
4086
+ 265,
4087
+ 253,
4088
+ 261,
4089
+ 274,
4090
+ 272,
4091
+ 256,
4092
+ 264,
4093
+ 273,
4094
+ 269,
4095
+ 268,
4096
+ 252,
4097
+ 254,
4098
+ 267,
4099
+ 257,
4100
+ 270,
4101
+ 259,
4102
+ 271,
4103
+ 250,
4104
+ 262,
4105
+ 263,
4106
+ 255,
4107
+ 260,
4108
+ 251,
4109
+ 266,
4110
+ 258,
4111
+ 265,
4112
+ 253,
4113
+ 261,
4114
+ 274,
4115
+ 272,
4116
+ 256,
4117
+ 264,
4118
+ 252,
4119
+ 271,
4120
+ 270,
4121
+ 250,
4122
+ 257,
4123
+ 273,
4124
+ 268,
4125
+ 254,
4126
+ 269,
4127
+ 262,
4128
+ 263,
4129
+ 267,
4130
+ 255,
4131
+ 260,
4132
+ 251,
4133
+ 259,
4134
+ 266,
4135
+ 265,
4136
+ 258,
4137
+ 253,
4138
+ 261,
4139
+ 274,
4140
+ 272,
4141
+ 256,
4142
+ 264,
4143
+ 273,
4144
+ 268,
4145
+ 250,
4146
+ 269,
4147
+ 257,
4148
+ 252,
4149
+ 262,
4150
+ 270,
4151
+ 267,
4152
+ 254,
4153
+ 259,
4154
+ 255,
4155
+ 260,
4156
+ 271,
4157
+ 251,
4158
+ 263,
4159
+ 266,
4160
+ 265,
4161
+ 258,
4162
+ 253,
4163
+ 261,
4164
+ 274,
4165
+ 272,
4166
+ 256,
4167
+ 264,
4168
+ 252,
4169
+ 271,
4170
+ 270,
4171
+ 250,
4172
+ 254,
4173
+ 268,
4174
+ 267,
4175
+ 273,
4176
+ 269,
4177
+ 259,
4178
+ 257,
4179
+ 262,
4180
+ 255,
4181
+ 260,
4182
+ 251,
4183
+ 263,
4184
+ 266,
4185
+ 258,
4186
+ 265,
4187
+ 253,
4188
+ 261,
4189
+ 274,
4190
+ 272,
4191
+ 256,
4192
+ 264,
4193
+ 252,
4194
+ 254,
4195
+ 268,
4196
+ 257,
4197
+ 262,
4198
+ 250,
4199
+ 270,
4200
+ 267,
4201
+ 269,
4202
+ 273,
4203
+ 255,
4204
+ 271,
4205
+ 263,
4206
+ 260,
4207
+ 251,
4208
+ 259,
4209
+ 266,
4210
+ 265,
4211
+ 258,
4212
+ 253,
4213
+ 261,
4214
+ 274,
4215
+ 272,
4216
+ 256,
4217
+ 264,
4218
+ 273,
4219
+ 269,
4220
+ 257,
4221
+ 267,
4222
+ 250,
4223
+ 254,
4224
+ 262,
4225
+ 252,
4226
+ 268,
4227
+ 255,
4228
+ 260,
4229
+ 270,
4230
+ 251,
4231
+ 271,
4232
+ 263,
4233
+ 259,
4234
+ 266,
4235
+ 265,
4236
+ 258,
4237
+ 253,
4238
+ 261,
4239
+ 274,
4240
+ 272,
4241
+ 256,
4242
+ 264,
4243
+ 273,
4244
+ 269,
4245
+ 257,
4246
+ 267,
4247
+ 271,
4248
+ 252,
4249
+ 268,
4250
+ 254,
4251
+ 262,
4252
+ 250,
4253
+ 270,
4254
+ 263,
4255
+ 255,
4256
+ 260,
4257
+ 251,
4258
+ 259,
4259
+ 266,
4260
+ 265,
4261
+ 258,
4262
+ 253,
4263
+ 261,
4264
+ 274,
4265
+ 272,
4266
+ 256,
4267
+ 264,
4268
+ 273,
4269
+ 269,
4270
+ 257,
4271
+ 270,
4272
+ 259,
4273
+ 267,
4274
+ 250,
4275
+ 252,
4276
+ 268,
4277
+ 254,
4278
+ 262,
4279
+ 255,
4280
+ 271,
4281
+ 260,
4282
+ 251,
4283
+ 263,
4284
+ 266,
4285
+ 265,
4286
+ 258,
4287
+ 253,
4288
+ 261,
4289
+ 274,
4290
+ 272,
4291
+ 256,
4292
+ 264,
4293
+ 252,
4294
+ 254,
4295
+ 250,
4296
+ 257,
4297
+ 269,
4298
+ 271,
4299
+ 270,
4300
+ 262,
4301
+ 273,
4302
+ 255,
4303
+ 267,
4304
+ 268,
4305
+ 259,
4306
+ 263,
4307
+ 260,
4308
+ 251,
4309
+ 266,
4310
+ 265,
4311
+ 258,
4312
+ 253,
4313
+ 261,
4314
+ 274,
4315
+ 272,
4316
+ 256,
4317
+ 264,
4318
+ 252,
4319
+ 254,
4320
+ 268,
4321
+ 257,
4322
+ 262,
4323
+ 250,
4324
+ 270,
4325
+ 255,
4326
+ 271,
4327
+ 269,
4328
+ 259,
4329
+ 263,
4330
+ 260,
4331
+ 273,
4332
+ 251,
4333
+ 266,
4334
+ 258,
4335
+ 253,
4336
+ 261,
4337
+ 274,
4338
+ 272,
4339
+ 256,
4340
+ 264,
4341
+ 267,
4342
+ 265,
4343
+ 257,
4344
+ 269,
4345
+ 250,
4346
+ 252,
4347
+ 271,
4348
+ 255,
4349
+ 268,
4350
+ 254,
4351
+ 260,
4352
+ 251,
4353
+ 273,
4354
+ 263,
4355
+ 270,
4356
+ 259,
4357
+ 266,
4358
+ 265,
4359
+ 258,
4360
+ 253,
4361
+ 261,
4362
+ 274,
4363
+ 272,
4364
+ 256,
4365
+ 264,
4366
+ 267,
4367
+ 262,
4368
+ 273,
4369
+ 269,
4370
+ 271,
4371
+ 263,
4372
+ 270,
4373
+ 271,
4374
+ 261,
4375
+ 257,
4376
+ 262,
4377
+ 255,
4378
+ 250,
4379
+ 251,
4380
+ 256,
4381
+ 266,
4382
+ 259,
4383
+ 258,
4384
+ 265,
4385
+ 268,
4386
+ 274,
4387
+ 267,
4388
+ 272,
4389
+ 264,
4390
+ 253,
4391
+ 260,
4392
+ 254,
4393
+ 252,
4394
+ 257,
4395
+ 262,
4396
+ 255,
4397
+ 268,
4398
+ 269,
4399
+ 260,
4400
+ 251,
4401
+ 270,
4402
+ 271,
4403
+ 250,
4404
+ 273,
4405
+ 267,
4406
+ 256,
4407
+ 259,
4408
+ 263,
4409
+ 265,
4410
+ 258,
4411
+ 253,
4412
+ 261,
4413
+ 254,
4414
+ 272,
4415
+ 252,
4416
+ 264,
4417
+ 274,
4418
+ 266,
4419
+ 273,
4420
+ 257,
4421
+ 262,
4422
+ 255,
4423
+ 267,
4424
+ 271,
4425
+ 250,
4426
+ 268,
4427
+ 270,
4428
+ 263,
4429
+ 266,
4430
+ 260,
4431
+ 259,
4432
+ 251,
4433
+ 252,
4434
+ 265,
4435
+ 258,
4436
+ 253,
4437
+ 261,
4438
+ 274,
4439
+ 272,
4440
+ 256,
4441
+ 264,
4442
+ 254,
4443
+ 269
4444
+ ],
4445
+ "25": [
4446
+ 275,
4447
+ 293,
4448
+ 291,
4449
+ 279,
4450
+ 286,
4451
+ 276,
4452
+ 292,
4453
+ 280,
4454
+ 285,
4455
+ 287,
4456
+ 290,
4457
+ 282,
4458
+ 277,
4459
+ 278,
4460
+ 284,
4461
+ 289,
4462
+ 281,
4463
+ 288,
4464
+ 283,
4465
+ 275,
4466
+ 293,
4467
+ 291,
4468
+ 279,
4469
+ 286,
4470
+ 276,
4471
+ 292,
4472
+ 280,
4473
+ 285,
4474
+ 287,
4475
+ 290,
4476
+ 282,
4477
+ 277,
4478
+ 278,
4479
+ 284,
4480
+ 289,
4481
+ 281,
4482
+ 288,
4483
+ 283,
4484
+ 275,
4485
+ 293,
4486
+ 276,
4487
+ 286,
4488
+ 291,
4489
+ 279,
4490
+ 292,
4491
+ 280,
4492
+ 285,
4493
+ 287,
4494
+ 290,
4495
+ 282,
4496
+ 278,
4497
+ 277,
4498
+ 284,
4499
+ 289,
4500
+ 281,
4501
+ 288,
4502
+ 283,
4503
+ 275,
4504
+ 293,
4505
+ 291,
4506
+ 279,
4507
+ 286,
4508
+ 276,
4509
+ 292,
4510
+ 280,
4511
+ 285,
4512
+ 287,
4513
+ 290,
4514
+ 282,
4515
+ 277,
4516
+ 278,
4517
+ 284,
4518
+ 289,
4519
+ 281,
4520
+ 288,
4521
+ 283,
4522
+ 275,
4523
+ 293,
4524
+ 291,
4525
+ 279,
4526
+ 286,
4527
+ 276,
4528
+ 292,
4529
+ 280,
4530
+ 285,
4531
+ 287,
4532
+ 290,
4533
+ 282,
4534
+ 277,
4535
+ 278,
4536
+ 284,
4537
+ 289,
4538
+ 281,
4539
+ 288,
4540
+ 283,
4541
+ 275,
4542
+ 293,
4543
+ 291,
4544
+ 279,
4545
+ 286,
4546
+ 276,
4547
+ 292,
4548
+ 280,
4549
+ 285,
4550
+ 287,
4551
+ 290,
4552
+ 282,
4553
+ 277,
4554
+ 278,
4555
+ 284,
4556
+ 289,
4557
+ 281,
4558
+ 288,
4559
+ 283,
4560
+ 275,
4561
+ 293,
4562
+ 291,
4563
+ 279,
4564
+ 286,
4565
+ 276,
4566
+ 292,
4567
+ 280,
4568
+ 285,
4569
+ 287,
4570
+ 290,
4571
+ 282,
4572
+ 277,
4573
+ 278,
4574
+ 284,
4575
+ 289,
4576
+ 281,
4577
+ 288,
4578
+ 283,
4579
+ 275,
4580
+ 293,
4581
+ 291,
4582
+ 279,
4583
+ 286,
4584
+ 276,
4585
+ 292,
4586
+ 280,
4587
+ 285,
4588
+ 287,
4589
+ 290,
4590
+ 282,
4591
+ 278,
4592
+ 277,
4593
+ 284,
4594
+ 289,
4595
+ 281,
4596
+ 288,
4597
+ 283,
4598
+ 291,
4599
+ 286,
4600
+ 276,
4601
+ 275,
4602
+ 293,
4603
+ 279,
4604
+ 292,
4605
+ 280,
4606
+ 285,
4607
+ 287,
4608
+ 290,
4609
+ 282,
4610
+ 278,
4611
+ 277,
4612
+ 284,
4613
+ 289,
4614
+ 281,
4615
+ 288,
4616
+ 283,
4617
+ 275,
4618
+ 293,
4619
+ 291,
4620
+ 279,
4621
+ 286,
4622
+ 276,
4623
+ 292,
4624
+ 280,
4625
+ 285,
4626
+ 287,
4627
+ 290,
4628
+ 282,
4629
+ 278,
4630
+ 277,
4631
+ 284,
4632
+ 289,
4633
+ 281,
4634
+ 288,
4635
+ 283,
4636
+ 275,
4637
+ 286,
4638
+ 291,
4639
+ 293,
4640
+ 279,
4641
+ 276,
4642
+ 292,
4643
+ 280,
4644
+ 285,
4645
+ 287,
4646
+ 290,
4647
+ 282,
4648
+ 278,
4649
+ 277,
4650
+ 284,
4651
+ 289,
4652
+ 281,
4653
+ 288,
4654
+ 283,
4655
+ 275,
4656
+ 293,
4657
+ 291,
4658
+ 279,
4659
+ 276,
4660
+ 292,
4661
+ 285,
4662
+ 287,
4663
+ 290,
4664
+ 282,
4665
+ 277,
4666
+ 278,
4667
+ 284,
4668
+ 289,
4669
+ 286,
4670
+ 281,
4671
+ 288,
4672
+ 283,
4673
+ 280,
4674
+ 275,
4675
+ 293,
4676
+ 279,
4677
+ 286,
4678
+ 291,
4679
+ 276,
4680
+ 292,
4681
+ 282,
4682
+ 289,
4683
+ 280,
4684
+ 285,
4685
+ 287,
4686
+ 290,
4687
+ 278,
4688
+ 281,
4689
+ 284,
4690
+ 288,
4691
+ 283,
4692
+ 277,
4693
+ 275,
4694
+ 286,
4695
+ 291,
4696
+ 279,
4697
+ 292,
4698
+ 285,
4699
+ 287,
4700
+ 278,
4701
+ 289,
4702
+ 282,
4703
+ 277,
4704
+ 284,
4705
+ 288,
4706
+ 283,
4707
+ 280,
4708
+ 276,
4709
+ 293,
4710
+ 290,
4711
+ 281,
4712
+ 275,
4713
+ 293,
4714
+ 291,
4715
+ 279,
4716
+ 286,
4717
+ 276,
4718
+ 292,
4719
+ 280,
4720
+ 285,
4721
+ 287,
4722
+ 290,
4723
+ 282,
4724
+ 277,
4725
+ 278,
4726
+ 284,
4727
+ 289,
4728
+ 281,
4729
+ 288,
4730
+ 283
4731
+ ],
4732
+ "26": [
4733
+ 304,
4734
+ 303,
4735
+ 310,
4736
+ 297,
4737
+ 301,
4738
+ 299,
4739
+ 308,
4740
+ 296,
4741
+ 313,
4742
+ 300,
4743
+ 294,
4744
+ 307,
4745
+ 312,
4746
+ 309,
4747
+ 305,
4748
+ 295,
4749
+ 298,
4750
+ 311,
4751
+ 306,
4752
+ 302,
4753
+ 304,
4754
+ 310,
4755
+ 299,
4756
+ 297,
4757
+ 308,
4758
+ 313,
4759
+ 300,
4760
+ 303,
4761
+ 301,
4762
+ 296,
4763
+ 294,
4764
+ 307,
4765
+ 312,
4766
+ 309,
4767
+ 305,
4768
+ 295,
4769
+ 298,
4770
+ 311,
4771
+ 306,
4772
+ 302,
4773
+ 303,
4774
+ 299,
4775
+ 304,
4776
+ 301,
4777
+ 297,
4778
+ 310,
4779
+ 308,
4780
+ 313,
4781
+ 300,
4782
+ 296,
4783
+ 294,
4784
+ 307,
4785
+ 312,
4786
+ 309,
4787
+ 305,
4788
+ 295,
4789
+ 298,
4790
+ 311,
4791
+ 306,
4792
+ 302,
4793
+ 299,
4794
+ 310,
4795
+ 303,
4796
+ 304,
4797
+ 297,
4798
+ 301,
4799
+ 308,
4800
+ 300,
4801
+ 296,
4802
+ 313,
4803
+ 294,
4804
+ 307,
4805
+ 312,
4806
+ 309,
4807
+ 305,
4808
+ 295,
4809
+ 298,
4810
+ 311,
4811
+ 306,
4812
+ 302,
4813
+ 297,
4814
+ 303,
4815
+ 299,
4816
+ 304,
4817
+ 310,
4818
+ 308,
4819
+ 313,
4820
+ 300,
4821
+ 296,
4822
+ 301,
4823
+ 294,
4824
+ 307,
4825
+ 312,
4826
+ 309,
4827
+ 305,
4828
+ 295,
4829
+ 298,
4830
+ 311,
4831
+ 306,
4832
+ 302,
4833
+ 299,
4834
+ 303,
4835
+ 304,
4836
+ 297,
4837
+ 310,
4838
+ 308,
4839
+ 300,
4840
+ 313,
4841
+ 296,
4842
+ 294,
4843
+ 301,
4844
+ 307,
4845
+ 312,
4846
+ 309,
4847
+ 305,
4848
+ 295,
4849
+ 298,
4850
+ 311,
4851
+ 306,
4852
+ 302,
4853
+ 303,
4854
+ 310,
4855
+ 297,
4856
+ 304,
4857
+ 299,
4858
+ 308,
4859
+ 313,
4860
+ 300,
4861
+ 296,
4862
+ 301,
4863
+ 294,
4864
+ 307,
4865
+ 312,
4866
+ 309,
4867
+ 305,
4868
+ 295,
4869
+ 298,
4870
+ 311,
4871
+ 306,
4872
+ 302,
4873
+ 310,
4874
+ 304,
4875
+ 303,
4876
+ 299,
4877
+ 297,
4878
+ 308,
4879
+ 313,
4880
+ 296,
4881
+ 301,
4882
+ 300,
4883
+ 294,
4884
+ 307,
4885
+ 312,
4886
+ 309,
4887
+ 305,
4888
+ 295,
4889
+ 298,
4890
+ 311,
4891
+ 306,
4892
+ 302,
4893
+ 304,
4894
+ 299,
4895
+ 297,
4896
+ 303,
4897
+ 310,
4898
+ 308,
4899
+ 300,
4900
+ 313,
4901
+ 296,
4902
+ 301,
4903
+ 294,
4904
+ 307,
4905
+ 312,
4906
+ 309,
4907
+ 305,
4908
+ 295,
4909
+ 298,
4910
+ 311,
4911
+ 306,
4912
+ 302,
4913
+ 310,
4914
+ 304,
4915
+ 297,
4916
+ 299,
4917
+ 308,
4918
+ 296,
4919
+ 300,
4920
+ 313,
4921
+ 303,
4922
+ 294,
4923
+ 301,
4924
+ 307,
4925
+ 312,
4926
+ 309,
4927
+ 305,
4928
+ 295,
4929
+ 298,
4930
+ 311,
4931
+ 306,
4932
+ 302,
4933
+ 299,
4934
+ 297,
4935
+ 310,
4936
+ 308,
4937
+ 313,
4938
+ 296,
4939
+ 303,
4940
+ 301,
4941
+ 300,
4942
+ 294,
4943
+ 307,
4944
+ 309,
4945
+ 305,
4946
+ 295,
4947
+ 298,
4948
+ 306,
4949
+ 302,
4950
+ 304,
4951
+ 312,
4952
+ 311,
4953
+ 297,
4954
+ 304,
4955
+ 310,
4956
+ 308,
4957
+ 313,
4958
+ 300,
4959
+ 296,
4960
+ 294,
4961
+ 307,
4962
+ 312,
4963
+ 309,
4964
+ 305,
4965
+ 298,
4966
+ 306,
4967
+ 302,
4968
+ 299,
4969
+ 303,
4970
+ 301,
4971
+ 311,
4972
+ 295,
4973
+ 304,
4974
+ 310,
4975
+ 299,
4976
+ 297,
4977
+ 308,
4978
+ 300,
4979
+ 303,
4980
+ 301,
4981
+ 296,
4982
+ 313,
4983
+ 294,
4984
+ 307,
4985
+ 312,
4986
+ 309,
4987
+ 305,
4988
+ 295,
4989
+ 298,
4990
+ 311,
4991
+ 306,
4992
+ 302,
4993
+ 304,
4994
+ 297,
4995
+ 299,
4996
+ 303,
4997
+ 310,
4998
+ 308,
4999
+ 301,
5000
+ 300,
5001
+ 313,
5002
+ 294,
5003
+ 307,
5004
+ 312,
5005
+ 309,
5006
+ 305,
5007
+ 295,
5008
+ 298,
5009
+ 306,
5010
+ 302,
5011
+ 296,
5012
+ 311,
5013
+ 310,
5014
+ 299,
5015
+ 303,
5016
+ 301,
5017
+ 304,
5018
+ 296,
5019
+ 308,
5020
+ 307,
5021
+ 312,
5022
+ 305,
5023
+ 309,
5024
+ 295,
5025
+ 298,
5026
+ 311,
5027
+ 306,
5028
+ 302,
5029
+ 300,
5030
+ 294,
5031
+ 297,
5032
+ 313,
5033
+ 297,
5034
+ 299,
5035
+ 304,
5036
+ 303,
5037
+ 310,
5038
+ 308,
5039
+ 301,
5040
+ 296,
5041
+ 313,
5042
+ 294,
5043
+ 300,
5044
+ 307,
5045
+ 312,
5046
+ 309,
5047
+ 298,
5048
+ 306,
5049
+ 302,
5050
+ 295,
5051
+ 305,
5052
+ 311,
5053
+ 304,
5054
+ 310,
5055
+ 299,
5056
+ 297,
5057
+ 308,
5058
+ 300,
5059
+ 303,
5060
+ 296,
5061
+ 313,
5062
+ 301,
5063
+ 294,
5064
+ 307,
5065
+ 312,
5066
+ 309,
5067
+ 305,
5068
+ 295,
5069
+ 298,
5070
+ 311,
5071
+ 306,
5072
+ 302
5073
+ ],
5074
+ "27": [
5075
+ 321,
5076
+ 322,
5077
+ 316,
5078
+ 320,
5079
+ 323,
5080
+ 318,
5081
+ 317,
5082
+ 315,
5083
+ 319,
5084
+ 314,
5085
+ 324,
5086
+ 320,
5087
+ 316,
5088
+ 321,
5089
+ 323,
5090
+ 322,
5091
+ 318,
5092
+ 317,
5093
+ 315,
5094
+ 314,
5095
+ 319,
5096
+ 324,
5097
+ 316,
5098
+ 321,
5099
+ 320,
5100
+ 323,
5101
+ 322,
5102
+ 318,
5103
+ 317,
5104
+ 315,
5105
+ 319,
5106
+ 314,
5107
+ 324,
5108
+ 321,
5109
+ 316,
5110
+ 322,
5111
+ 320,
5112
+ 323,
5113
+ 318,
5114
+ 317,
5115
+ 319,
5116
+ 315,
5117
+ 314,
5118
+ 324,
5119
+ 320,
5120
+ 316,
5121
+ 321,
5122
+ 323,
5123
+ 322,
5124
+ 318,
5125
+ 317,
5126
+ 315,
5127
+ 319,
5128
+ 314,
5129
+ 324,
5130
+ 316,
5131
+ 321,
5132
+ 320,
5133
+ 323,
5134
+ 322,
5135
+ 318,
5136
+ 317,
5137
+ 315,
5138
+ 314,
5139
+ 319,
5140
+ 324,
5141
+ 321,
5142
+ 322,
5143
+ 320,
5144
+ 318,
5145
+ 316,
5146
+ 323,
5147
+ 317,
5148
+ 315,
5149
+ 314,
5150
+ 319,
5151
+ 324,
5152
+ 316,
5153
+ 321,
5154
+ 322,
5155
+ 320,
5156
+ 323,
5157
+ 317,
5158
+ 314,
5159
+ 319,
5160
+ 315,
5161
+ 324,
5162
+ 318,
5163
+ 321,
5164
+ 316,
5165
+ 323,
5166
+ 322,
5167
+ 318,
5168
+ 317,
5169
+ 319,
5170
+ 314,
5171
+ 315,
5172
+ 324,
5173
+ 320,
5174
+ 316,
5175
+ 320,
5176
+ 321,
5177
+ 323,
5178
+ 322,
5179
+ 318,
5180
+ 317,
5181
+ 315,
5182
+ 314,
5183
+ 324,
5184
+ 319,
5185
+ 320,
5186
+ 321,
5187
+ 322,
5188
+ 316,
5189
+ 323,
5190
+ 318,
5191
+ 317,
5192
+ 319,
5193
+ 314,
5194
+ 324,
5195
+ 315,
5196
+ 320,
5197
+ 319,
5198
+ 321,
5199
+ 318,
5200
+ 322,
5201
+ 316,
5202
+ 323,
5203
+ 317,
5204
+ 315,
5205
+ 314,
5206
+ 324,
5207
+ 316,
5208
+ 321,
5209
+ 322,
5210
+ 318,
5211
+ 320,
5212
+ 317,
5213
+ 314,
5214
+ 319,
5215
+ 324,
5216
+ 323,
5217
+ 315,
5218
+ 316,
5219
+ 321,
5220
+ 322,
5221
+ 323,
5222
+ 318,
5223
+ 317,
5224
+ 319,
5225
+ 320,
5226
+ 314,
5227
+ 315,
5228
+ 324,
5229
+ 320,
5230
+ 316,
5231
+ 323,
5232
+ 321,
5233
+ 322,
5234
+ 317,
5235
+ 318,
5236
+ 319,
5237
+ 315,
5238
+ 314,
5239
+ 324
5240
+ ],
5241
+ "28": [
5242
+ 335,
5243
+ 336,
5244
+ 328,
5245
+ 329,
5246
+ 341,
5247
+ 327,
5248
+ 340,
5249
+ 325,
5250
+ 339,
5251
+ 333,
5252
+ 334,
5253
+ 331,
5254
+ 338,
5255
+ 326,
5256
+ 332,
5257
+ 330,
5258
+ 337,
5259
+ 336,
5260
+ 327,
5261
+ 339,
5262
+ 328,
5263
+ 334,
5264
+ 340,
5265
+ 329,
5266
+ 335,
5267
+ 341,
5268
+ 325,
5269
+ 333,
5270
+ 331,
5271
+ 338,
5272
+ 326,
5273
+ 332,
5274
+ 330,
5275
+ 337,
5276
+ 336,
5277
+ 335,
5278
+ 340,
5279
+ 333,
5280
+ 341,
5281
+ 328,
5282
+ 329,
5283
+ 327,
5284
+ 339,
5285
+ 334,
5286
+ 331,
5287
+ 326,
5288
+ 325,
5289
+ 338,
5290
+ 332,
5291
+ 330,
5292
+ 337,
5293
+ 340,
5294
+ 339,
5295
+ 327,
5296
+ 336,
5297
+ 328,
5298
+ 333,
5299
+ 334,
5300
+ 335,
5301
+ 331,
5302
+ 326,
5303
+ 329,
5304
+ 338,
5305
+ 341,
5306
+ 325,
5307
+ 332,
5308
+ 330,
5309
+ 337,
5310
+ 339,
5311
+ 336,
5312
+ 328,
5313
+ 340,
5314
+ 333,
5315
+ 327,
5316
+ 334,
5317
+ 331,
5318
+ 335,
5319
+ 341,
5320
+ 329,
5321
+ 325,
5322
+ 338,
5323
+ 326,
5324
+ 332,
5325
+ 330,
5326
+ 337,
5327
+ 339,
5328
+ 329,
5329
+ 336,
5330
+ 328,
5331
+ 327,
5332
+ 334,
5333
+ 335,
5334
+ 340,
5335
+ 333,
5336
+ 341,
5337
+ 325,
5338
+ 331,
5339
+ 326,
5340
+ 338,
5341
+ 332,
5342
+ 330,
5343
+ 337,
5344
+ 336,
5345
+ 327,
5346
+ 329,
5347
+ 339,
5348
+ 340,
5349
+ 333,
5350
+ 328,
5351
+ 334,
5352
+ 335,
5353
+ 331,
5354
+ 326,
5355
+ 338,
5356
+ 341,
5357
+ 325,
5358
+ 332,
5359
+ 330,
5360
+ 337,
5361
+ 340,
5362
+ 329,
5363
+ 335,
5364
+ 336,
5365
+ 327,
5366
+ 341,
5367
+ 339,
5368
+ 328,
5369
+ 333,
5370
+ 334,
5371
+ 331,
5372
+ 326,
5373
+ 338,
5374
+ 325,
5375
+ 332,
5376
+ 330,
5377
+ 337,
5378
+ 327,
5379
+ 335,
5380
+ 336,
5381
+ 329,
5382
+ 340,
5383
+ 341,
5384
+ 325,
5385
+ 328,
5386
+ 334,
5387
+ 339,
5388
+ 333,
5389
+ 331,
5390
+ 326,
5391
+ 338,
5392
+ 332,
5393
+ 330,
5394
+ 337,
5395
+ 336,
5396
+ 328,
5397
+ 327,
5398
+ 340,
5399
+ 339,
5400
+ 334,
5401
+ 335,
5402
+ 333,
5403
+ 329,
5404
+ 331,
5405
+ 326,
5406
+ 338,
5407
+ 330,
5408
+ 337,
5409
+ 341,
5410
+ 332,
5411
+ 325,
5412
+ 335,
5413
+ 341,
5414
+ 336,
5415
+ 340,
5416
+ 329,
5417
+ 328,
5418
+ 327,
5419
+ 339,
5420
+ 334,
5421
+ 325,
5422
+ 326,
5423
+ 332,
5424
+ 330,
5425
+ 337,
5426
+ 333,
5427
+ 331,
5428
+ 338,
5429
+ 340,
5430
+ 329,
5431
+ 339,
5432
+ 335,
5433
+ 336,
5434
+ 328,
5435
+ 333,
5436
+ 341,
5437
+ 325,
5438
+ 327,
5439
+ 331,
5440
+ 338,
5441
+ 326,
5442
+ 334,
5443
+ 332,
5444
+ 330,
5445
+ 337,
5446
+ 336,
5447
+ 339,
5448
+ 340,
5449
+ 335,
5450
+ 333,
5451
+ 329,
5452
+ 341,
5453
+ 328,
5454
+ 332,
5455
+ 325,
5456
+ 338,
5457
+ 327,
5458
+ 330,
5459
+ 334,
5460
+ 331,
5461
+ 337,
5462
+ 326,
5463
+ 336,
5464
+ 340,
5465
+ 328,
5466
+ 335,
5467
+ 341,
5468
+ 333,
5469
+ 327,
5470
+ 339,
5471
+ 329,
5472
+ 334,
5473
+ 331,
5474
+ 325,
5475
+ 338,
5476
+ 326,
5477
+ 332,
5478
+ 330,
5479
+ 337,
5480
+ 340,
5481
+ 335,
5482
+ 336,
5483
+ 327,
5484
+ 333,
5485
+ 328,
5486
+ 341,
5487
+ 339,
5488
+ 325,
5489
+ 329,
5490
+ 334,
5491
+ 331,
5492
+ 338,
5493
+ 332,
5494
+ 330,
5495
+ 326,
5496
+ 337,
5497
+ 336,
5498
+ 335,
5499
+ 340,
5500
+ 328,
5501
+ 339,
5502
+ 341,
5503
+ 334,
5504
+ 327,
5505
+ 333,
5506
+ 331,
5507
+ 338,
5508
+ 329,
5509
+ 332,
5510
+ 325,
5511
+ 326,
5512
+ 330,
5513
+ 337,
5514
+ 336,
5515
+ 327,
5516
+ 335,
5517
+ 329,
5518
+ 340,
5519
+ 333,
5520
+ 339,
5521
+ 334,
5522
+ 331,
5523
+ 341,
5524
+ 340,
5525
+ 325,
5526
+ 326,
5527
+ 332,
5528
+ 330,
5529
+ 337,
5530
+ 338,
5531
+ 328,
5532
+ 336,
5533
+ 339,
5534
+ 328,
5535
+ 335,
5536
+ 341,
5537
+ 334,
5538
+ 331,
5539
+ 329,
5540
+ 332,
5541
+ 338,
5542
+ 326,
5543
+ 340,
5544
+ 325,
5545
+ 330,
5546
+ 337,
5547
+ 327,
5548
+ 333
5549
+ ],
5550
+ "29": [
5551
+ 342,
5552
+ 343,
5553
+ 346,
5554
+ 344,
5555
+ 349,
5556
+ 352,
5557
+ 350,
5558
+ 347,
5559
+ 351,
5560
+ 348,
5561
+ 345,
5562
+ 343,
5563
+ 344,
5564
+ 347,
5565
+ 342,
5566
+ 349,
5567
+ 346,
5568
+ 350,
5569
+ 351,
5570
+ 352,
5571
+ 348,
5572
+ 345,
5573
+ 347,
5574
+ 342,
5575
+ 344,
5576
+ 343,
5577
+ 349,
5578
+ 346,
5579
+ 350,
5580
+ 352,
5581
+ 351,
5582
+ 348,
5583
+ 345,
5584
+ 344,
5585
+ 342,
5586
+ 347,
5587
+ 343,
5588
+ 350,
5589
+ 351,
5590
+ 349,
5591
+ 346,
5592
+ 352,
5593
+ 348,
5594
+ 345,
5595
+ 344,
5596
+ 349,
5597
+ 350,
5598
+ 347,
5599
+ 351,
5600
+ 342,
5601
+ 343,
5602
+ 346,
5603
+ 348,
5604
+ 352,
5605
+ 345,
5606
+ 343,
5607
+ 342,
5608
+ 344,
5609
+ 349,
5610
+ 347,
5611
+ 350,
5612
+ 352,
5613
+ 346,
5614
+ 351,
5615
+ 348,
5616
+ 345,
5617
+ 344,
5618
+ 342,
5619
+ 349,
5620
+ 350,
5621
+ 351,
5622
+ 346,
5623
+ 343,
5624
+ 347,
5625
+ 352,
5626
+ 348,
5627
+ 345,
5628
+ 347,
5629
+ 346,
5630
+ 344,
5631
+ 342,
5632
+ 349,
5633
+ 343,
5634
+ 350,
5635
+ 352,
5636
+ 351,
5637
+ 348,
5638
+ 345,
5639
+ 343,
5640
+ 350,
5641
+ 342,
5642
+ 344,
5643
+ 349,
5644
+ 347,
5645
+ 346,
5646
+ 351,
5647
+ 348,
5648
+ 345,
5649
+ 352,
5650
+ 343,
5651
+ 344,
5652
+ 347,
5653
+ 346,
5654
+ 342,
5655
+ 350,
5656
+ 349,
5657
+ 348,
5658
+ 352,
5659
+ 345,
5660
+ 351,
5661
+ 346,
5662
+ 350,
5663
+ 344,
5664
+ 347,
5665
+ 342,
5666
+ 349,
5667
+ 352,
5668
+ 351,
5669
+ 348,
5670
+ 345,
5671
+ 343,
5672
+ 344,
5673
+ 347,
5674
+ 352,
5675
+ 343,
5676
+ 350,
5677
+ 346,
5678
+ 342,
5679
+ 348,
5680
+ 345,
5681
+ 349,
5682
+ 351,
5683
+ 347,
5684
+ 344,
5685
+ 343,
5686
+ 342,
5687
+ 346,
5688
+ 348,
5689
+ 349,
5690
+ 345,
5691
+ 350,
5692
+ 352,
5693
+ 351,
5694
+ 344,
5695
+ 343,
5696
+ 352,
5697
+ 342,
5698
+ 349,
5699
+ 347,
5700
+ 350,
5701
+ 351,
5702
+ 348,
5703
+ 346,
5704
+ 345,
5705
+ 343,
5706
+ 350,
5707
+ 344,
5708
+ 347,
5709
+ 346,
5710
+ 351,
5711
+ 349,
5712
+ 348,
5713
+ 342,
5714
+ 352,
5715
+ 345,
5716
+ 350,
5717
+ 344,
5718
+ 347,
5719
+ 352,
5720
+ 342,
5721
+ 343,
5722
+ 351,
5723
+ 349,
5724
+ 346,
5725
+ 348,
5726
+ 345,
5727
+ 346,
5728
+ 344,
5729
+ 342,
5730
+ 350,
5731
+ 351,
5732
+ 347,
5733
+ 349,
5734
+ 352,
5735
+ 345,
5736
+ 343,
5737
+ 348,
5738
+ 343,
5739
+ 344,
5740
+ 347,
5741
+ 346,
5742
+ 342,
5743
+ 350,
5744
+ 349,
5745
+ 348,
5746
+ 352,
5747
+ 345,
5748
+ 351
5749
+ ]
5750
+ }
annotations/annotation_json/complete_step_annotations.json ADDED
The diff for this file is too large to render. See raw diff
 
annotations/annotation_json/error_annotations.json ADDED
The diff for this file is too large to render. See raw diff
 
annotations/annotation_json/error_category_idx.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Preparation Error": 0,
3
+ "Measurement Error": 1,
4
+ "Order Error": 2,
5
+ "Timing Error": 3,
6
+ "Technique Error": 4,
7
+ "Temperature Error": 5,
8
+ "Missing Step": 6,
9
+ "Other": 7
10
+ }
annotations/annotation_json/recording_id_step_idx.json ADDED
@@ -0,0 +1,6470 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "1_7": [
3
+ 3,
4
+ 1,
5
+ 4,
6
+ 12,
7
+ 11,
8
+ 8,
9
+ 6,
10
+ 5,
11
+ 10,
12
+ 9,
13
+ 2,
14
+ 7
15
+ ],
16
+ "1_10": [
17
+ 3,
18
+ 1,
19
+ 4,
20
+ 11,
21
+ 8,
22
+ 6,
23
+ 12,
24
+ 5,
25
+ 10,
26
+ 9,
27
+ 2,
28
+ 7
29
+ ],
30
+ "1_14": [
31
+ 12,
32
+ 3,
33
+ 1,
34
+ 4,
35
+ 11,
36
+ 8,
37
+ 6,
38
+ 9,
39
+ 5,
40
+ 10,
41
+ 2,
42
+ 7
43
+ ],
44
+ "1_19": [
45
+ 3,
46
+ 1,
47
+ 4,
48
+ 12,
49
+ 9,
50
+ 11,
51
+ 8,
52
+ 6,
53
+ 5,
54
+ 10,
55
+ 2,
56
+ 7
57
+ ],
58
+ "1_20": [
59
+ 12,
60
+ 3,
61
+ 1,
62
+ 4,
63
+ 9,
64
+ 11,
65
+ 8,
66
+ 6,
67
+ 5,
68
+ 10,
69
+ 2,
70
+ 7
71
+ ],
72
+ "1_25": [
73
+ 3,
74
+ 1,
75
+ 4,
76
+ 11,
77
+ 8,
78
+ 12,
79
+ 9,
80
+ 6,
81
+ 5,
82
+ 10,
83
+ 2,
84
+ 7
85
+ ],
86
+ "1_28": [
87
+ 12,
88
+ 3,
89
+ 1,
90
+ 11,
91
+ 8,
92
+ 6,
93
+ 5,
94
+ 9,
95
+ 10,
96
+ 2,
97
+ 7,
98
+ 4
99
+ ],
100
+ "1_30": [
101
+ 1,
102
+ 12,
103
+ 4,
104
+ 9,
105
+ 11,
106
+ 6,
107
+ 5,
108
+ 10,
109
+ 2,
110
+ 7,
111
+ 3,
112
+ 8
113
+ ],
114
+ "1_32": [
115
+ 1,
116
+ 12,
117
+ 4,
118
+ 11,
119
+ 8,
120
+ 6,
121
+ 5,
122
+ 10,
123
+ 9,
124
+ 2,
125
+ 7,
126
+ 3
127
+ ],
128
+ "1_33": [
129
+ 3,
130
+ 1,
131
+ 12,
132
+ 4,
133
+ 11,
134
+ 8,
135
+ 9,
136
+ 5,
137
+ 10,
138
+ 7,
139
+ 6,
140
+ 2
141
+ ],
142
+ "1_34": [
143
+ 1,
144
+ 12,
145
+ 4,
146
+ 11,
147
+ 8,
148
+ 9,
149
+ 6,
150
+ 5,
151
+ 10,
152
+ 2,
153
+ 7,
154
+ 3
155
+ ],
156
+ "1_36": [
157
+ 3,
158
+ 1,
159
+ 5,
160
+ 12,
161
+ 8,
162
+ 6,
163
+ 10,
164
+ 9,
165
+ 2,
166
+ 7,
167
+ 10,
168
+ 11
169
+ ],
170
+ "1_37": [
171
+ 3,
172
+ 1,
173
+ 4,
174
+ 6,
175
+ 12,
176
+ 9,
177
+ 11,
178
+ 8,
179
+ 5,
180
+ 10,
181
+ 2,
182
+ 7
183
+ ],
184
+ "1_42": [
185
+ 1,
186
+ 4,
187
+ 11,
188
+ 3,
189
+ 12,
190
+ 9,
191
+ 8,
192
+ 6,
193
+ 5,
194
+ 10,
195
+ 2,
196
+ 7
197
+ ],
198
+ "1_43": [
199
+ 3,
200
+ 1,
201
+ 4,
202
+ 11,
203
+ 12,
204
+ 8,
205
+ 9,
206
+ 5,
207
+ 10,
208
+ 6,
209
+ 2,
210
+ 7
211
+ ],
212
+ "1_49": [
213
+ 3,
214
+ 5,
215
+ 10,
216
+ 12,
217
+ 1,
218
+ 4,
219
+ 11,
220
+ 8,
221
+ 6,
222
+ 9,
223
+ 2,
224
+ 7
225
+ ],
226
+ "1_136": [
227
+ 3,
228
+ 1,
229
+ 5,
230
+ 12,
231
+ 8,
232
+ 6,
233
+ 9,
234
+ 4,
235
+ 2,
236
+ 10,
237
+ 11,
238
+ 7
239
+ ],
240
+ "1_143": [
241
+ 3,
242
+ 1,
243
+ 4,
244
+ 11,
245
+ 12,
246
+ 8,
247
+ 9,
248
+ 5,
249
+ 10,
250
+ 6,
251
+ 2,
252
+ 7
253
+ ],
254
+ "2_3": [
255
+ 21,
256
+ 14,
257
+ 23,
258
+ 17,
259
+ 16,
260
+ 26,
261
+ 27,
262
+ 22,
263
+ 19,
264
+ 24,
265
+ 15,
266
+ 20,
267
+ 18,
268
+ 20,
269
+ 18,
270
+ 25
271
+ ],
272
+ "2_4": [
273
+ 21,
274
+ 14,
275
+ 16,
276
+ 17,
277
+ 22,
278
+ 26,
279
+ 23,
280
+ 27,
281
+ 19,
282
+ 24,
283
+ 15,
284
+ 20,
285
+ 18,
286
+ 20,
287
+ 18,
288
+ 25
289
+ ],
290
+ "2_5": [
291
+ 14,
292
+ 16,
293
+ 26,
294
+ 23,
295
+ 17,
296
+ 21,
297
+ 27,
298
+ 22,
299
+ 19,
300
+ 24,
301
+ 15,
302
+ 20,
303
+ 18,
304
+ 20,
305
+ 18,
306
+ 25
307
+ ],
308
+ "2_8": [
309
+ 14,
310
+ 16,
311
+ 17,
312
+ 27,
313
+ 23,
314
+ 26,
315
+ 22,
316
+ 21,
317
+ 19,
318
+ 24,
319
+ 15,
320
+ 20,
321
+ 18,
322
+ 20,
323
+ 18,
324
+ 25
325
+ ],
326
+ "2_13": [
327
+ 17,
328
+ 23,
329
+ 27,
330
+ 14,
331
+ 19,
332
+ 16,
333
+ 22,
334
+ 26,
335
+ 21,
336
+ 24,
337
+ 15,
338
+ 20,
339
+ 18,
340
+ 20,
341
+ 18,
342
+ 25
343
+ ],
344
+ "2_17": [
345
+ 14,
346
+ 22,
347
+ 17,
348
+ 16,
349
+ 27,
350
+ 21,
351
+ 26,
352
+ 19,
353
+ 24,
354
+ 23,
355
+ 15,
356
+ 20,
357
+ 18,
358
+ 20,
359
+ 18,
360
+ 25
361
+ ],
362
+ "2_19": [
363
+ 17,
364
+ 23,
365
+ 14,
366
+ 27,
367
+ 22,
368
+ 21,
369
+ 19,
370
+ 16,
371
+ 26,
372
+ 24,
373
+ 15,
374
+ 20,
375
+ 18,
376
+ 20,
377
+ 18,
378
+ 25
379
+ ],
380
+ "2_22": [
381
+ 22,
382
+ 14,
383
+ 16,
384
+ 26,
385
+ 17,
386
+ 23,
387
+ 27,
388
+ 19,
389
+ 21,
390
+ 24,
391
+ 15,
392
+ 20,
393
+ 18,
394
+ 20,
395
+ 18,
396
+ 25
397
+ ],
398
+ "2_26": [
399
+ 14,
400
+ 17,
401
+ 16,
402
+ 26,
403
+ 22,
404
+ 21,
405
+ 27,
406
+ 19,
407
+ 23,
408
+ 15,
409
+ 20,
410
+ 18,
411
+ 20,
412
+ 25,
413
+ 24,
414
+ 18
415
+ ],
416
+ "2_28": [
417
+ 17,
418
+ 19,
419
+ 22,
420
+ 14,
421
+ 23,
422
+ 21,
423
+ 26,
424
+ 24,
425
+ 15,
426
+ 20,
427
+ 18,
428
+ 25,
429
+ 16,
430
+ 27,
431
+ 20,
432
+ 18
433
+ ],
434
+ "2_30": [
435
+ 17,
436
+ 21,
437
+ 14,
438
+ 27,
439
+ 23,
440
+ 19,
441
+ 16,
442
+ 22,
443
+ 26,
444
+ 24,
445
+ 15,
446
+ 20,
447
+ 20,
448
+ 25,
449
+ 18,
450
+ 18
451
+ ],
452
+ "2_38": [
453
+ 14,
454
+ 17,
455
+ 16,
456
+ 26,
457
+ 22,
458
+ 27,
459
+ 19,
460
+ 21,
461
+ 24,
462
+ 20,
463
+ 20,
464
+ 18,
465
+ 23,
466
+ 18,
467
+ 25,
468
+ 15
469
+ ],
470
+ "2_41": [
471
+ 22,
472
+ 17,
473
+ 27,
474
+ 19,
475
+ 14,
476
+ 16,
477
+ 26,
478
+ 23,
479
+ 24,
480
+ 15,
481
+ 21,
482
+ 24,
483
+ 20,
484
+ 18,
485
+ 20,
486
+ 18,
487
+ 25
488
+ ],
489
+ "2_42": [
490
+ 14,
491
+ 23,
492
+ 21,
493
+ 20,
494
+ 22,
495
+ 17,
496
+ 27,
497
+ 19,
498
+ 16,
499
+ 26,
500
+ 24,
501
+ 18,
502
+ 20,
503
+ 15,
504
+ 18,
505
+ 25,
506
+ 18,
507
+ 25
508
+ ],
509
+ "2_46": [
510
+ 17,
511
+ 14,
512
+ 16,
513
+ 23,
514
+ 20,
515
+ 26,
516
+ 18,
517
+ 22,
518
+ 27,
519
+ 19,
520
+ 24,
521
+ 20,
522
+ 18,
523
+ 25,
524
+ 21,
525
+ 15
526
+ ],
527
+ "2_47": [
528
+ 14,
529
+ 17,
530
+ 27,
531
+ 19,
532
+ 22,
533
+ 21,
534
+ 20,
535
+ 18,
536
+ 16,
537
+ 23,
538
+ 26,
539
+ 15,
540
+ 24,
541
+ 20,
542
+ 18,
543
+ 25
544
+ ],
545
+ "3_2": [
546
+ 36,
547
+ 35,
548
+ 28,
549
+ 40,
550
+ 33,
551
+ 38,
552
+ 41,
553
+ 34,
554
+ 37,
555
+ 30,
556
+ 31,
557
+ 39,
558
+ 29,
559
+ 32
560
+ ],
561
+ "3_5": [
562
+ 36,
563
+ 40,
564
+ 35,
565
+ 28,
566
+ 33,
567
+ 38,
568
+ 41,
569
+ 34,
570
+ 37,
571
+ 30,
572
+ 31,
573
+ 39,
574
+ 29,
575
+ 32
576
+ ],
577
+ "3_11": [
578
+ 36,
579
+ 35,
580
+ 33,
581
+ 28,
582
+ 40,
583
+ 38,
584
+ 41,
585
+ 34,
586
+ 37,
587
+ 30,
588
+ 31,
589
+ 39,
590
+ 29,
591
+ 32
592
+ ],
593
+ "3_12": [
594
+ 36,
595
+ 28,
596
+ 33,
597
+ 35,
598
+ 40,
599
+ 38,
600
+ 41,
601
+ 34,
602
+ 37,
603
+ 30,
604
+ 31,
605
+ 39,
606
+ 29,
607
+ 32
608
+ ],
609
+ "3_13": [
610
+ 36,
611
+ 35,
612
+ 40,
613
+ 33,
614
+ 28,
615
+ 38,
616
+ 41,
617
+ 34,
618
+ 37,
619
+ 30,
620
+ 31,
621
+ 39,
622
+ 29,
623
+ 32
624
+ ],
625
+ "3_14": [
626
+ 36,
627
+ 40,
628
+ 35,
629
+ 28,
630
+ 33,
631
+ 38,
632
+ 34,
633
+ 41,
634
+ 37,
635
+ 30,
636
+ 31,
637
+ 39,
638
+ 29,
639
+ 32
640
+ ],
641
+ "3_18": [
642
+ 36,
643
+ 28,
644
+ 40,
645
+ 33,
646
+ 35,
647
+ 38,
648
+ 41,
649
+ 34,
650
+ 37,
651
+ 30,
652
+ 31,
653
+ 39,
654
+ 29,
655
+ 32
656
+ ],
657
+ "3_22": [
658
+ 36,
659
+ 35,
660
+ 40,
661
+ 28,
662
+ 33,
663
+ 38,
664
+ 34,
665
+ 41,
666
+ 37,
667
+ 30,
668
+ 31,
669
+ 39,
670
+ 29,
671
+ 32
672
+ ],
673
+ "3_34": [
674
+ 36,
675
+ 35,
676
+ 38,
677
+ 28,
678
+ 40,
679
+ 34,
680
+ 41,
681
+ 37,
682
+ 30,
683
+ 33,
684
+ 39,
685
+ 32,
686
+ 31,
687
+ 29
688
+ ],
689
+ "3_36": [
690
+ 36,
691
+ 34,
692
+ 33,
693
+ 40,
694
+ 38,
695
+ 41,
696
+ 28,
697
+ 37,
698
+ 35,
699
+ 30,
700
+ 31,
701
+ 30,
702
+ 31,
703
+ 39,
704
+ 29,
705
+ 32
706
+ ],
707
+ "3_46": [
708
+ 36,
709
+ 35,
710
+ 40,
711
+ 33,
712
+ 28,
713
+ 38,
714
+ 34,
715
+ 41,
716
+ 29,
717
+ 30,
718
+ 31,
719
+ 39,
720
+ 37,
721
+ 32
722
+ ],
723
+ "3_49": [
724
+ 36,
725
+ 40,
726
+ 33,
727
+ 35,
728
+ 28,
729
+ 38,
730
+ 34,
731
+ 41,
732
+ 29,
733
+ 30,
734
+ 31,
735
+ 39,
736
+ 37,
737
+ 32
738
+ ],
739
+ "3_50": [
740
+ 36,
741
+ 40,
742
+ 33,
743
+ 39,
744
+ 28,
745
+ 38,
746
+ 41,
747
+ 34,
748
+ 37,
749
+ 30,
750
+ 31,
751
+ 35,
752
+ 29,
753
+ 32
754
+ ],
755
+ "4_2": [
756
+ 14,
757
+ 51,
758
+ 44,
759
+ 47,
760
+ 46,
761
+ 54,
762
+ 52,
763
+ 55,
764
+ 49,
765
+ 45,
766
+ 50,
767
+ 48,
768
+ 53,
769
+ 42,
770
+ 43
771
+ ],
772
+ "4_3": [
773
+ 47,
774
+ 14,
775
+ 44,
776
+ 51,
777
+ 46,
778
+ 54,
779
+ 52,
780
+ 55,
781
+ 49,
782
+ 45,
783
+ 48,
784
+ 53,
785
+ 50,
786
+ 42,
787
+ 43
788
+ ],
789
+ "4_5": [
790
+ 47,
791
+ 44,
792
+ 46,
793
+ 14,
794
+ 51,
795
+ 54,
796
+ 52,
797
+ 55,
798
+ 49,
799
+ 45,
800
+ 50,
801
+ 53,
802
+ 48,
803
+ 42,
804
+ 43
805
+ ],
806
+ "4_7": [
807
+ 47,
808
+ 14,
809
+ 46,
810
+ 51,
811
+ 54,
812
+ 44,
813
+ 52,
814
+ 55,
815
+ 49,
816
+ 45,
817
+ 53,
818
+ 48,
819
+ 50,
820
+ 42,
821
+ 43
822
+ ],
823
+ "4_9": [
824
+ 47,
825
+ 14,
826
+ 46,
827
+ 44,
828
+ 51,
829
+ 54,
830
+ 52,
831
+ 55,
832
+ 49,
833
+ 45,
834
+ 53,
835
+ 48,
836
+ 50,
837
+ 42,
838
+ 43
839
+ ],
840
+ "4_17": [
841
+ 14,
842
+ 47,
843
+ 46,
844
+ 51,
845
+ 44,
846
+ 54,
847
+ 52,
848
+ 55,
849
+ 49,
850
+ 45,
851
+ 53,
852
+ 50,
853
+ 48,
854
+ 42,
855
+ 43
856
+ ],
857
+ "4_20": [
858
+ 47,
859
+ 14,
860
+ 51,
861
+ 44,
862
+ 46,
863
+ 54,
864
+ 52,
865
+ 55,
866
+ 49,
867
+ 45,
868
+ 48,
869
+ 50,
870
+ 53,
871
+ 42,
872
+ 43
873
+ ],
874
+ "4_22": [
875
+ 44,
876
+ 14,
877
+ 47,
878
+ 51,
879
+ 46,
880
+ 54,
881
+ 52,
882
+ 55,
883
+ 49,
884
+ 45,
885
+ 50,
886
+ 48,
887
+ 53,
888
+ 42,
889
+ 43
890
+ ],
891
+ "4_24": [
892
+ 47,
893
+ 14,
894
+ 51,
895
+ 46,
896
+ 54,
897
+ 44,
898
+ 52,
899
+ 55,
900
+ 49,
901
+ 45,
902
+ 48,
903
+ 53,
904
+ 50,
905
+ 42,
906
+ 43
907
+ ],
908
+ "4_30": [
909
+ 14,
910
+ 51,
911
+ 44,
912
+ 47,
913
+ 46,
914
+ 54,
915
+ 52,
916
+ 55,
917
+ 49,
918
+ 45,
919
+ 49,
920
+ 45,
921
+ 53,
922
+ 48,
923
+ 42,
924
+ 43,
925
+ 50
926
+ ],
927
+ "4_32": [
928
+ 47,
929
+ 44,
930
+ 14,
931
+ 51,
932
+ 54,
933
+ 52,
934
+ 55,
935
+ 49,
936
+ 45,
937
+ 53,
938
+ 48,
939
+ 42,
940
+ 43,
941
+ 46,
942
+ 50
943
+ ],
944
+ "4_35": [
945
+ 47,
946
+ 14,
947
+ 46,
948
+ 51,
949
+ 44,
950
+ 54,
951
+ 52,
952
+ 55,
953
+ 45,
954
+ 53,
955
+ 48,
956
+ 42,
957
+ 43,
958
+ 49,
959
+ 50
960
+ ],
961
+ "4_36": [
962
+ 47,
963
+ 14,
964
+ 51,
965
+ 46,
966
+ 44,
967
+ 54,
968
+ 52,
969
+ 55,
970
+ 49,
971
+ 45,
972
+ 50,
973
+ 48,
974
+ 53,
975
+ 42,
976
+ 43
977
+ ],
978
+ "4_40": [
979
+ 14,
980
+ 47,
981
+ 51,
982
+ 44,
983
+ 46,
984
+ 53,
985
+ 52,
986
+ 54,
987
+ 49,
988
+ 45,
989
+ 48,
990
+ 50,
991
+ 55,
992
+ 43,
993
+ 42
994
+ ],
995
+ "4_43": [
996
+ 14,
997
+ 44,
998
+ 47,
999
+ 51,
1000
+ 54,
1001
+ 46,
1002
+ 50,
1003
+ 55,
1004
+ 49,
1005
+ 45,
1006
+ 52,
1007
+ 45,
1008
+ 53,
1009
+ 48,
1010
+ 42,
1011
+ 43
1012
+ ],
1013
+ "4_44": [
1014
+ 47,
1015
+ 14,
1016
+ 46,
1017
+ 44,
1018
+ 52,
1019
+ 14,
1020
+ 51,
1021
+ 54,
1022
+ 55,
1023
+ 49,
1024
+ 45,
1025
+ 50,
1026
+ 48,
1027
+ 53,
1028
+ 42,
1029
+ 43
1030
+ ],
1031
+ "4_122": [
1032
+ 44,
1033
+ 14,
1034
+ 47,
1035
+ 51,
1036
+ 46,
1037
+ 54,
1038
+ 52,
1039
+ 55,
1040
+ 49,
1041
+ 45,
1042
+ 50,
1043
+ 48,
1044
+ 53,
1045
+ 42,
1046
+ 43
1047
+ ],
1048
+ "5_2": [
1049
+ 68,
1050
+ 69,
1051
+ 65,
1052
+ 67,
1053
+ 62,
1054
+ 70,
1055
+ 60,
1056
+ 64,
1057
+ 59,
1058
+ 71,
1059
+ 58,
1060
+ 57,
1061
+ 56,
1062
+ 61,
1063
+ 66,
1064
+ 63
1065
+ ],
1066
+ "5_3": [
1067
+ 68,
1068
+ 69,
1069
+ 70,
1070
+ 62,
1071
+ 60,
1072
+ 59,
1073
+ 64,
1074
+ 65,
1075
+ 67,
1076
+ 71,
1077
+ 58,
1078
+ 57,
1079
+ 56,
1080
+ 61,
1081
+ 66,
1082
+ 63
1083
+ ],
1084
+ "5_4": [
1085
+ 62,
1086
+ 68,
1087
+ 65,
1088
+ 67,
1089
+ 69,
1090
+ 60,
1091
+ 59,
1092
+ 70,
1093
+ 58,
1094
+ 64,
1095
+ 71,
1096
+ 57,
1097
+ 56,
1098
+ 61,
1099
+ 66,
1100
+ 63
1101
+ ],
1102
+ "5_11": [
1103
+ 65,
1104
+ 69,
1105
+ 62,
1106
+ 60,
1107
+ 67,
1108
+ 68,
1109
+ 59,
1110
+ 58,
1111
+ 70,
1112
+ 64,
1113
+ 71,
1114
+ 57,
1115
+ 56,
1116
+ 61,
1117
+ 66,
1118
+ 63
1119
+ ],
1120
+ "5_15": [
1121
+ 65,
1122
+ 62,
1123
+ 67,
1124
+ 69,
1125
+ 68,
1126
+ 70,
1127
+ 60,
1128
+ 64,
1129
+ 59,
1130
+ 71,
1131
+ 58,
1132
+ 57,
1133
+ 56,
1134
+ 61,
1135
+ 66,
1136
+ 63
1137
+ ],
1138
+ "5_18": [
1139
+ 65,
1140
+ 68,
1141
+ 62,
1142
+ 70,
1143
+ 69,
1144
+ 64,
1145
+ 71,
1146
+ 67,
1147
+ 60,
1148
+ 59,
1149
+ 58,
1150
+ 57,
1151
+ 56,
1152
+ 61,
1153
+ 66,
1154
+ 63
1155
+ ],
1156
+ "5_19": [
1157
+ 69,
1158
+ 62,
1159
+ 65,
1160
+ 68,
1161
+ 70,
1162
+ 67,
1163
+ 60,
1164
+ 64,
1165
+ 71,
1166
+ 59,
1167
+ 58,
1168
+ 57,
1169
+ 56,
1170
+ 61,
1171
+ 66,
1172
+ 63
1173
+ ],
1174
+ "5_22": [
1175
+ 65,
1176
+ 62,
1177
+ 67,
1178
+ 68,
1179
+ 70,
1180
+ 69,
1181
+ 60,
1182
+ 59,
1183
+ 64,
1184
+ 71,
1185
+ 58,
1186
+ 57,
1187
+ 56,
1188
+ 61,
1189
+ 66,
1190
+ 63
1191
+ ],
1192
+ "5_24": [
1193
+ 68,
1194
+ 69,
1195
+ 62,
1196
+ 65,
1197
+ 70,
1198
+ 60,
1199
+ 59,
1200
+ 67,
1201
+ 64,
1202
+ 58,
1203
+ 71,
1204
+ 57,
1205
+ 56,
1206
+ 61,
1207
+ 66,
1208
+ 63
1209
+ ],
1210
+ "5_27": [
1211
+ 68,
1212
+ 70,
1213
+ 62,
1214
+ 69,
1215
+ 64,
1216
+ 60,
1217
+ 59,
1218
+ 65,
1219
+ 67,
1220
+ 58,
1221
+ 57,
1222
+ 56,
1223
+ 61,
1224
+ 66,
1225
+ 63,
1226
+ 71
1227
+ ],
1228
+ "5_28": [
1229
+ 68,
1230
+ 70,
1231
+ 65,
1232
+ 69,
1233
+ 64,
1234
+ 71,
1235
+ 58,
1236
+ 57,
1237
+ 56,
1238
+ 61,
1239
+ 66,
1240
+ 63,
1241
+ 60,
1242
+ 67,
1243
+ 62,
1244
+ 59
1245
+ ],
1246
+ "5_35": [
1247
+ 62,
1248
+ 65,
1249
+ 68,
1250
+ 70,
1251
+ 60,
1252
+ 59,
1253
+ 67,
1254
+ 64,
1255
+ 71,
1256
+ 69,
1257
+ 58,
1258
+ 57,
1259
+ 56,
1260
+ 66,
1261
+ 63,
1262
+ 61
1263
+ ],
1264
+ "5_37": [
1265
+ 69,
1266
+ 68,
1267
+ 70,
1268
+ 64,
1269
+ 65,
1270
+ 62,
1271
+ 60,
1272
+ 67,
1273
+ 59,
1274
+ 58,
1275
+ 57,
1276
+ 56,
1277
+ 61,
1278
+ 66,
1279
+ 63,
1280
+ 71
1281
+ ],
1282
+ "5_42": [
1283
+ 65,
1284
+ 62,
1285
+ 60,
1286
+ 69,
1287
+ 59,
1288
+ 67,
1289
+ 58,
1290
+ 68,
1291
+ 70,
1292
+ 57,
1293
+ 56,
1294
+ 61,
1295
+ 66,
1296
+ 64,
1297
+ 71,
1298
+ 63
1299
+ ],
1300
+ "5_44": [
1301
+ 65,
1302
+ 60,
1303
+ 69,
1304
+ 59,
1305
+ 67,
1306
+ 58,
1307
+ 68,
1308
+ 70,
1309
+ 57,
1310
+ 56,
1311
+ 61,
1312
+ 66,
1313
+ 64,
1314
+ 71,
1315
+ 62,
1316
+ 63
1317
+ ],
1318
+ "7_1": [
1319
+ 77,
1320
+ 72,
1321
+ 81,
1322
+ 73,
1323
+ 74,
1324
+ 82,
1325
+ 80,
1326
+ 76,
1327
+ 79,
1328
+ 75,
1329
+ 78
1330
+ ],
1331
+ "7_2": [
1332
+ 77,
1333
+ 72,
1334
+ 73,
1335
+ 81,
1336
+ 74,
1337
+ 80,
1338
+ 82,
1339
+ 76,
1340
+ 79,
1341
+ 75,
1342
+ 78
1343
+ ],
1344
+ "7_3": [
1345
+ 77,
1346
+ 72,
1347
+ 73,
1348
+ 82,
1349
+ 80,
1350
+ 74,
1351
+ 81,
1352
+ 76,
1353
+ 79,
1354
+ 75,
1355
+ 78
1356
+ ],
1357
+ "7_5": [
1358
+ 77,
1359
+ 72,
1360
+ 73,
1361
+ 74,
1362
+ 82,
1363
+ 81,
1364
+ 80,
1365
+ 76,
1366
+ 79,
1367
+ 75,
1368
+ 78
1369
+ ],
1370
+ "7_18": [
1371
+ 77,
1372
+ 81,
1373
+ 72,
1374
+ 73,
1375
+ 82,
1376
+ 74,
1377
+ 80,
1378
+ 76,
1379
+ 79,
1380
+ 75,
1381
+ 78
1382
+ ],
1383
+ "7_19": [
1384
+ 77,
1385
+ 72,
1386
+ 73,
1387
+ 82,
1388
+ 80,
1389
+ 81,
1390
+ 74,
1391
+ 76,
1392
+ 79,
1393
+ 75,
1394
+ 78
1395
+ ],
1396
+ "7_24": [
1397
+ 77,
1398
+ 81,
1399
+ 72,
1400
+ 73,
1401
+ 82,
1402
+ 80,
1403
+ 74,
1404
+ 76,
1405
+ 79,
1406
+ 75,
1407
+ 78
1408
+ ],
1409
+ "7_26": [
1410
+ 77,
1411
+ 73,
1412
+ 82,
1413
+ 74,
1414
+ 80,
1415
+ 81,
1416
+ 79,
1417
+ 75,
1418
+ 78,
1419
+ 72,
1420
+ 76
1421
+ ],
1422
+ "7_30": [
1423
+ 77,
1424
+ 72,
1425
+ 73,
1426
+ 82,
1427
+ 80,
1428
+ 74,
1429
+ 76,
1430
+ 75,
1431
+ 81,
1432
+ 79,
1433
+ 78
1434
+ ],
1435
+ "7_32": [
1436
+ 77,
1437
+ 72,
1438
+ 73,
1439
+ 81,
1440
+ 74,
1441
+ 82,
1442
+ 76,
1443
+ 79,
1444
+ 78,
1445
+ 80,
1446
+ 75
1447
+ ],
1448
+ "7_35": [
1449
+ 77,
1450
+ 72,
1451
+ 76,
1452
+ 74,
1453
+ 80,
1454
+ 73,
1455
+ 82,
1456
+ 81,
1457
+ 79,
1458
+ 75,
1459
+ 78
1460
+ ],
1461
+ "7_38": [
1462
+ 77,
1463
+ 81,
1464
+ 73,
1465
+ 74,
1466
+ 82,
1467
+ 72,
1468
+ 80,
1469
+ 79,
1470
+ 76,
1471
+ 75,
1472
+ 78
1473
+ ],
1474
+ "7_44": [
1475
+ 81,
1476
+ 77,
1477
+ 72,
1478
+ 73,
1479
+ 74,
1480
+ 80,
1481
+ 82,
1482
+ 76,
1483
+ 79,
1484
+ 75,
1485
+ 78
1486
+ ],
1487
+ "7_48": [
1488
+ 81,
1489
+ 77,
1490
+ 74,
1491
+ 73,
1492
+ 80,
1493
+ 72,
1494
+ 82,
1495
+ 76,
1496
+ 79,
1497
+ 75,
1498
+ 78
1499
+ ],
1500
+ "7_50": [
1501
+ 77,
1502
+ 81,
1503
+ 72,
1504
+ 73,
1505
+ 79,
1506
+ 75,
1507
+ 74,
1508
+ 78,
1509
+ 82,
1510
+ 76,
1511
+ 80
1512
+ ],
1513
+ "7_135": [
1514
+ 77,
1515
+ 72,
1516
+ 74,
1517
+ 80,
1518
+ 73,
1519
+ 82,
1520
+ 81,
1521
+ 79,
1522
+ 75,
1523
+ 78,
1524
+ 76
1525
+ ],
1526
+ "8_3": [
1527
+ 88,
1528
+ 89,
1529
+ 90,
1530
+ 84,
1531
+ 87,
1532
+ 85,
1533
+ 83
1534
+ ],
1535
+ "8_11": [
1536
+ 88,
1537
+ 89,
1538
+ 84,
1539
+ 90,
1540
+ 87,
1541
+ 85,
1542
+ 83
1543
+ ],
1544
+ "8_15": [
1545
+ 88,
1546
+ 89,
1547
+ 87,
1548
+ 90,
1549
+ 84,
1550
+ 85,
1551
+ 83
1552
+ ],
1553
+ "8_16": [
1554
+ 88,
1555
+ 89,
1556
+ 90,
1557
+ 84,
1558
+ 87,
1559
+ 85,
1560
+ 83
1561
+ ],
1562
+ "8_19": [
1563
+ 88,
1564
+ 89,
1565
+ 87,
1566
+ 84,
1567
+ 90,
1568
+ 85,
1569
+ 83
1570
+ ],
1571
+ "8_20": [
1572
+ 88,
1573
+ 89,
1574
+ 84,
1575
+ 90,
1576
+ 87,
1577
+ 85,
1578
+ 83
1579
+ ],
1580
+ "8_25": [
1581
+ 88,
1582
+ 89,
1583
+ 84,
1584
+ 90,
1585
+ 87,
1586
+ 85,
1587
+ 83
1588
+ ],
1589
+ "8_26": [
1590
+ 88,
1591
+ 89,
1592
+ 90,
1593
+ 87,
1594
+ 85,
1595
+ 83,
1596
+ 84
1597
+ ],
1598
+ "8_30": [
1599
+ 88,
1600
+ 90,
1601
+ 84,
1602
+ 87,
1603
+ 85,
1604
+ 83,
1605
+ 89
1606
+ ],
1607
+ "8_31": [
1608
+ 88,
1609
+ 89,
1610
+ 84,
1611
+ 85,
1612
+ 83,
1613
+ 87,
1614
+ 90
1615
+ ],
1616
+ "8_33": [
1617
+ 88,
1618
+ 89,
1619
+ 90,
1620
+ 87,
1621
+ 84,
1622
+ 85,
1623
+ 83
1624
+ ],
1625
+ "8_35": [
1626
+ 88,
1627
+ 87,
1628
+ 89,
1629
+ 84,
1630
+ 85,
1631
+ 90,
1632
+ 83
1633
+ ],
1634
+ "8_40": [
1635
+ 84,
1636
+ 90,
1637
+ 89,
1638
+ 88,
1639
+ 87,
1640
+ 85,
1641
+ 83
1642
+ ],
1643
+ "8_44": [
1644
+ 88,
1645
+ 90,
1646
+ 84,
1647
+ 85,
1648
+ 83,
1649
+ 89,
1650
+ 87
1651
+ ],
1652
+ "8_45": [
1653
+ 88,
1654
+ 90,
1655
+ 84,
1656
+ 87,
1657
+ 89,
1658
+ 83,
1659
+ 85
1660
+ ],
1661
+ "8_50": [
1662
+ 87,
1663
+ 88,
1664
+ 89,
1665
+ 90,
1666
+ 83,
1667
+ 85,
1668
+ 84
1669
+ ],
1670
+ "9_2": [
1671
+ 99,
1672
+ 94,
1673
+ 98,
1674
+ 101,
1675
+ 95,
1676
+ 100,
1677
+ 93,
1678
+ 92,
1679
+ 91,
1680
+ 97,
1681
+ 96
1682
+ ],
1683
+ "9_4": [
1684
+ 94,
1685
+ 99,
1686
+ 98,
1687
+ 101,
1688
+ 95,
1689
+ 100,
1690
+ 93,
1691
+ 92,
1692
+ 91,
1693
+ 97,
1694
+ 96
1695
+ ],
1696
+ "9_8": [
1697
+ 94,
1698
+ 98,
1699
+ 101,
1700
+ 100,
1701
+ 95,
1702
+ 93,
1703
+ 99,
1704
+ 92,
1705
+ 91,
1706
+ 97,
1707
+ 96
1708
+ ],
1709
+ "9_12": [
1710
+ 94,
1711
+ 98,
1712
+ 101,
1713
+ 95,
1714
+ 100,
1715
+ 93,
1716
+ 99,
1717
+ 92,
1718
+ 91,
1719
+ 97,
1720
+ 96
1721
+ ],
1722
+ "9_13": [
1723
+ 94,
1724
+ 98,
1725
+ 101,
1726
+ 99,
1727
+ 95,
1728
+ 100,
1729
+ 93,
1730
+ 92,
1731
+ 91,
1732
+ 97,
1733
+ 96
1734
+ ],
1735
+ "9_15": [
1736
+ 94,
1737
+ 99,
1738
+ 98,
1739
+ 101,
1740
+ 95,
1741
+ 100,
1742
+ 93,
1743
+ 92,
1744
+ 91,
1745
+ 97,
1746
+ 96
1747
+ ],
1748
+ "9_19": [
1749
+ 94,
1750
+ 99,
1751
+ 98,
1752
+ 101,
1753
+ 95,
1754
+ 100,
1755
+ 93,
1756
+ 92,
1757
+ 91,
1758
+ 97,
1759
+ 96
1760
+ ],
1761
+ "9_22": [
1762
+ 99,
1763
+ 94,
1764
+ 98,
1765
+ 101,
1766
+ 100,
1767
+ 95,
1768
+ 93,
1769
+ 92,
1770
+ 91,
1771
+ 97,
1772
+ 96
1773
+ ],
1774
+ "9_24": [
1775
+ 94,
1776
+ 98,
1777
+ 99,
1778
+ 101,
1779
+ 100,
1780
+ 95,
1781
+ 93,
1782
+ 92,
1783
+ 91,
1784
+ 97,
1785
+ 96
1786
+ ],
1787
+ "9_25": [
1788
+ 94,
1789
+ 98,
1790
+ 101,
1791
+ 95,
1792
+ 100,
1793
+ 93,
1794
+ 99,
1795
+ 92,
1796
+ 91,
1797
+ 97,
1798
+ 96
1799
+ ],
1800
+ "9_36": [
1801
+ 94,
1802
+ 98,
1803
+ 101,
1804
+ 100,
1805
+ 95,
1806
+ 93,
1807
+ 92,
1808
+ 91,
1809
+ 97,
1810
+ 96,
1811
+ 99
1812
+ ],
1813
+ "9_45": [
1814
+ 100,
1815
+ 94,
1816
+ 98,
1817
+ 101,
1818
+ 91,
1819
+ 95,
1820
+ 93,
1821
+ 99,
1822
+ 92,
1823
+ 97,
1824
+ 96
1825
+ ],
1826
+ "9_47": [
1827
+ 99,
1828
+ 94,
1829
+ 98,
1830
+ 101,
1831
+ 100,
1832
+ 95,
1833
+ 91,
1834
+ 97,
1835
+ 96,
1836
+ 92,
1837
+ 93
1838
+ ],
1839
+ "9_108": [
1840
+ 94,
1841
+ 98,
1842
+ 101,
1843
+ 100,
1844
+ 95,
1845
+ 93,
1846
+ 99,
1847
+ 92,
1848
+ 91,
1849
+ 97,
1850
+ 96
1851
+ ],
1852
+ "10_6": [
1853
+ 115,
1854
+ 113,
1855
+ 112,
1856
+ 118,
1857
+ 111,
1858
+ 107,
1859
+ 104,
1860
+ 116,
1861
+ 110,
1862
+ 114,
1863
+ 103,
1864
+ 106,
1865
+ 117,
1866
+ 105,
1867
+ 108,
1868
+ 102,
1869
+ 102,
1870
+ 102,
1871
+ 109
1872
+ ],
1873
+ "10_7": [
1874
+ 115,
1875
+ 113,
1876
+ 112,
1877
+ 118,
1878
+ 111,
1879
+ 107,
1880
+ 104,
1881
+ 116,
1882
+ 110,
1883
+ 114,
1884
+ 103,
1885
+ 106,
1886
+ 117,
1887
+ 105,
1888
+ 108,
1889
+ 102,
1890
+ 102,
1891
+ 102,
1892
+ 109
1893
+ ],
1894
+ "10_16": [
1895
+ 115,
1896
+ 113,
1897
+ 112,
1898
+ 118,
1899
+ 111,
1900
+ 107,
1901
+ 104,
1902
+ 116,
1903
+ 110,
1904
+ 114,
1905
+ 103,
1906
+ 106,
1907
+ 117,
1908
+ 105,
1909
+ 108,
1910
+ 102,
1911
+ 102,
1912
+ 102,
1913
+ 109
1914
+ ],
1915
+ "10_18": [
1916
+ 115,
1917
+ 113,
1918
+ 112,
1919
+ 118,
1920
+ 111,
1921
+ 107,
1922
+ 104,
1923
+ 116,
1924
+ 110,
1925
+ 114,
1926
+ 103,
1927
+ 106,
1928
+ 117,
1929
+ 105,
1930
+ 108,
1931
+ 102,
1932
+ 102,
1933
+ 102,
1934
+ 109
1935
+ ],
1936
+ "10_24": [
1937
+ 115,
1938
+ 113,
1939
+ 112,
1940
+ 118,
1941
+ 111,
1942
+ 107,
1943
+ 104,
1944
+ 116,
1945
+ 110,
1946
+ 114,
1947
+ 103,
1948
+ 106,
1949
+ 117,
1950
+ 105,
1951
+ 108,
1952
+ 102,
1953
+ 102,
1954
+ 102,
1955
+ 109
1956
+ ],
1957
+ "10_26": [
1958
+ 115,
1959
+ 118,
1960
+ 111,
1961
+ 107,
1962
+ 104,
1963
+ 116,
1964
+ 110,
1965
+ 114,
1966
+ 108,
1967
+ 102,
1968
+ 102,
1969
+ 102,
1970
+ 109,
1971
+ 103,
1972
+ 113,
1973
+ 112,
1974
+ 106,
1975
+ 117,
1976
+ 105
1977
+ ],
1978
+ "10_31": [
1979
+ 115,
1980
+ 113,
1981
+ 112,
1982
+ 118,
1983
+ 111,
1984
+ 107,
1985
+ 104,
1986
+ 116,
1987
+ 110,
1988
+ 114,
1989
+ 103,
1990
+ 106,
1991
+ 117,
1992
+ 105,
1993
+ 108,
1994
+ 102,
1995
+ 102,
1996
+ 102,
1997
+ 109
1998
+ ],
1999
+ "10_42": [
2000
+ 115,
2001
+ 113,
2002
+ 112,
2003
+ 118,
2004
+ 111,
2005
+ 107,
2006
+ 104,
2007
+ 116,
2008
+ 110,
2009
+ 114,
2010
+ 103,
2011
+ 106,
2012
+ 117,
2013
+ 105,
2014
+ 108,
2015
+ 102,
2016
+ 102,
2017
+ 102,
2018
+ 102,
2019
+ 109
2020
+ ],
2021
+ "10_46": [
2022
+ 113,
2023
+ 115,
2024
+ 112,
2025
+ 111,
2026
+ 107,
2027
+ 104,
2028
+ 116,
2029
+ 114,
2030
+ 110,
2031
+ 106,
2032
+ 117,
2033
+ 105,
2034
+ 108,
2035
+ 102,
2036
+ 102,
2037
+ 102,
2038
+ 109,
2039
+ 103,
2040
+ 118
2041
+ ],
2042
+ "10_47": [
2043
+ 115,
2044
+ 111,
2045
+ 107,
2046
+ 104,
2047
+ 113,
2048
+ 112,
2049
+ 116,
2050
+ 106,
2051
+ 117,
2052
+ 105,
2053
+ 114,
2054
+ 103,
2055
+ 110,
2056
+ 118,
2057
+ 108,
2058
+ 102,
2059
+ 102,
2060
+ 102,
2061
+ 109
2062
+ ],
2063
+ "10_48": [
2064
+ 115,
2065
+ 111,
2066
+ 107,
2067
+ 113,
2068
+ 112,
2069
+ 118,
2070
+ 116,
2071
+ 110,
2072
+ 104,
2073
+ 106,
2074
+ 117,
2075
+ 105,
2076
+ 108,
2077
+ 114,
2078
+ 103,
2079
+ 109,
2080
+ 102,
2081
+ 102,
2082
+ 102
2083
+ ],
2084
+ "10_50": [
2085
+ 115,
2086
+ 118,
2087
+ 111,
2088
+ 107,
2089
+ 104,
2090
+ 116,
2091
+ 110,
2092
+ 114,
2093
+ 103,
2094
+ 106,
2095
+ 117,
2096
+ 105,
2097
+ 108,
2098
+ 102,
2099
+ 102,
2100
+ 102,
2101
+ 109,
2102
+ 112,
2103
+ 113
2104
+ ],
2105
+ "12_2": [
2106
+ 125,
2107
+ 122,
2108
+ 119,
2109
+ 120,
2110
+ 124,
2111
+ 123,
2112
+ 126,
2113
+ 127,
2114
+ 121
2115
+ ],
2116
+ "12_5": [
2117
+ 125,
2118
+ 122,
2119
+ 119,
2120
+ 120,
2121
+ 124,
2122
+ 127,
2123
+ 126,
2124
+ 123,
2125
+ 121
2126
+ ],
2127
+ "12_6": [
2128
+ 125,
2129
+ 122,
2130
+ 119,
2131
+ 120,
2132
+ 124,
2133
+ 127,
2134
+ 123,
2135
+ 126,
2136
+ 121
2137
+ ],
2138
+ "12_9": [
2139
+ 125,
2140
+ 122,
2141
+ 119,
2142
+ 120,
2143
+ 127,
2144
+ 123,
2145
+ 124,
2146
+ 126,
2147
+ 121
2148
+ ],
2149
+ "12_10": [
2150
+ 125,
2151
+ 122,
2152
+ 119,
2153
+ 120,
2154
+ 127,
2155
+ 123,
2156
+ 126,
2157
+ 124,
2158
+ 121
2159
+ ],
2160
+ "12_12": [
2161
+ 125,
2162
+ 122,
2163
+ 119,
2164
+ 120,
2165
+ 127,
2166
+ 126,
2167
+ 124,
2168
+ 123,
2169
+ 121
2170
+ ],
2171
+ "12_13": [
2172
+ 125,
2173
+ 122,
2174
+ 119,
2175
+ 120,
2176
+ 126,
2177
+ 124,
2178
+ 123,
2179
+ 127,
2180
+ 121
2181
+ ],
2182
+ "12_15": [
2183
+ 125,
2184
+ 122,
2185
+ 119,
2186
+ 120,
2187
+ 126,
2188
+ 127,
2189
+ 124,
2190
+ 123,
2191
+ 121
2192
+ ],
2193
+ "12_16": [
2194
+ 125,
2195
+ 122,
2196
+ 119,
2197
+ 120,
2198
+ 126,
2199
+ 127,
2200
+ 123,
2201
+ 124,
2202
+ 121
2203
+ ],
2204
+ "12_17": [
2205
+ 125,
2206
+ 122,
2207
+ 119,
2208
+ 120,
2209
+ 126,
2210
+ 123,
2211
+ 127,
2212
+ 124,
2213
+ 121
2214
+ ],
2215
+ "12_19": [
2216
+ 125,
2217
+ 122,
2218
+ 119,
2219
+ 120,
2220
+ 123,
2221
+ 127,
2222
+ 124,
2223
+ 126,
2224
+ 121
2225
+ ],
2226
+ "12_26": [
2227
+ 125,
2228
+ 122,
2229
+ 119,
2230
+ 120,
2231
+ 124,
2232
+ 123,
2233
+ 127,
2234
+ 126,
2235
+ 121
2236
+ ],
2237
+ "12_38": [
2238
+ 125,
2239
+ 122,
2240
+ 119,
2241
+ 120,
2242
+ 123,
2243
+ 126,
2244
+ 124,
2245
+ 127,
2246
+ 121
2247
+ ],
2248
+ "12_41": [
2249
+ 125,
2250
+ 122,
2251
+ 119,
2252
+ 126,
2253
+ 124,
2254
+ 123,
2255
+ 127,
2256
+ 120,
2257
+ 121
2258
+ ],
2259
+ "12_43": [
2260
+ 125,
2261
+ 122,
2262
+ 119,
2263
+ 120,
2264
+ 126,
2265
+ 127,
2266
+ 123,
2267
+ 124,
2268
+ 121
2269
+ ],
2270
+ "12_48": [
2271
+ 125,
2272
+ 122,
2273
+ 119,
2274
+ 120,
2275
+ 123,
2276
+ 127,
2277
+ 126,
2278
+ 124,
2279
+ 121
2280
+ ],
2281
+ "12_51": [
2282
+ 125,
2283
+ 122,
2284
+ 119,
2285
+ 120,
2286
+ 126,
2287
+ 127,
2288
+ 123,
2289
+ 124,
2290
+ 121
2291
+ ],
2292
+ "12_119": [
2293
+ 125,
2294
+ 122,
2295
+ 119,
2296
+ 120,
2297
+ 123,
2298
+ 127,
2299
+ 124,
2300
+ 126,
2301
+ 121
2302
+ ],
2303
+ "13_5": [
2304
+ 129,
2305
+ 137,
2306
+ 132,
2307
+ 133,
2308
+ 138,
2309
+ 130,
2310
+ 135,
2311
+ 134,
2312
+ 131,
2313
+ 136,
2314
+ 128,
2315
+ 76
2316
+ ],
2317
+ "13_9": [
2318
+ 129,
2319
+ 137,
2320
+ 132,
2321
+ 133,
2322
+ 130,
2323
+ 138,
2324
+ 135,
2325
+ 134,
2326
+ 131,
2327
+ 128,
2328
+ 136,
2329
+ 76
2330
+ ],
2331
+ "13_12": [
2332
+ 129,
2333
+ 137,
2334
+ 132,
2335
+ 133,
2336
+ 138,
2337
+ 130,
2338
+ 135,
2339
+ 134,
2340
+ 131,
2341
+ 136,
2342
+ 128,
2343
+ 76
2344
+ ],
2345
+ "13_14": [
2346
+ 129,
2347
+ 137,
2348
+ 132,
2349
+ 133,
2350
+ 130,
2351
+ 138,
2352
+ 135,
2353
+ 134,
2354
+ 131,
2355
+ 136,
2356
+ 128,
2357
+ 76
2358
+ ],
2359
+ "13_18": [
2360
+ 129,
2361
+ 137,
2362
+ 132,
2363
+ 133,
2364
+ 130,
2365
+ 138,
2366
+ 135,
2367
+ 134,
2368
+ 136,
2369
+ 131,
2370
+ 128,
2371
+ 76
2372
+ ],
2373
+ "13_20": [
2374
+ 129,
2375
+ 137,
2376
+ 132,
2377
+ 133,
2378
+ 130,
2379
+ 138,
2380
+ 135,
2381
+ 134,
2382
+ 131,
2383
+ 128,
2384
+ 136,
2385
+ 76
2386
+ ],
2387
+ "13_24": [
2388
+ 129,
2389
+ 137,
2390
+ 132,
2391
+ 133,
2392
+ 130,
2393
+ 138,
2394
+ 135,
2395
+ 134,
2396
+ 131,
2397
+ 128,
2398
+ 136,
2399
+ 76
2400
+ ],
2401
+ "13_31": [
2402
+ 129,
2403
+ 137,
2404
+ 132,
2405
+ 133,
2406
+ 130,
2407
+ 135,
2408
+ 134,
2409
+ 131,
2410
+ 128,
2411
+ 76,
2412
+ 138,
2413
+ 136
2414
+ ],
2415
+ "13_32": [
2416
+ 137,
2417
+ 132,
2418
+ 133,
2419
+ 138,
2420
+ 135,
2421
+ 136,
2422
+ 131,
2423
+ 128,
2424
+ 76,
2425
+ 129,
2426
+ 130,
2427
+ 134
2428
+ ],
2429
+ "13_36": [
2430
+ 129,
2431
+ 137,
2432
+ 132,
2433
+ 133,
2434
+ 130,
2435
+ 138,
2436
+ 136,
2437
+ 128,
2438
+ 76,
2439
+ 135,
2440
+ 134,
2441
+ 131
2442
+ ],
2443
+ "13_38": [
2444
+ 129,
2445
+ 132,
2446
+ 130,
2447
+ 133,
2448
+ 138,
2449
+ 134,
2450
+ 136,
2451
+ 131,
2452
+ 76,
2453
+ 137,
2454
+ 135,
2455
+ 128
2456
+ ],
2457
+ "13_41": [
2458
+ 129,
2459
+ 137,
2460
+ 132,
2461
+ 133,
2462
+ 130,
2463
+ 131,
2464
+ 128,
2465
+ 138,
2466
+ 135,
2467
+ 134,
2468
+ 136,
2469
+ 76
2470
+ ],
2471
+ "13_44": [
2472
+ 129,
2473
+ 137,
2474
+ 132,
2475
+ 133,
2476
+ 130,
2477
+ 138,
2478
+ 135,
2479
+ 76,
2480
+ 136,
2481
+ 131,
2482
+ 128,
2483
+ 134
2484
+ ],
2485
+ "13_45": [
2486
+ 129,
2487
+ 137,
2488
+ 132,
2489
+ 133,
2490
+ 138,
2491
+ 130,
2492
+ 136,
2493
+ 134,
2494
+ 131,
2495
+ 128,
2496
+ 135,
2497
+ 76
2498
+ ],
2499
+ "15_2": [
2500
+ 145,
2501
+ 140,
2502
+ 149,
2503
+ 155,
2504
+ 150,
2505
+ 154,
2506
+ 141,
2507
+ 139,
2508
+ 152,
2509
+ 151,
2510
+ 148,
2511
+ 147,
2512
+ 157,
2513
+ 142,
2514
+ 146,
2515
+ 144,
2516
+ 153,
2517
+ 143,
2518
+ 156
2519
+ ],
2520
+ "15_4": [
2521
+ 145,
2522
+ 149,
2523
+ 140,
2524
+ 155,
2525
+ 150,
2526
+ 154,
2527
+ 139,
2528
+ 141,
2529
+ 152,
2530
+ 151,
2531
+ 148,
2532
+ 147,
2533
+ 157,
2534
+ 146,
2535
+ 142,
2536
+ 144,
2537
+ 153,
2538
+ 143,
2539
+ 156
2540
+ ],
2541
+ "15_5": [
2542
+ 145,
2543
+ 149,
2544
+ 155,
2545
+ 150,
2546
+ 140,
2547
+ 154,
2548
+ 139,
2549
+ 141,
2550
+ 152,
2551
+ 151,
2552
+ 148,
2553
+ 147,
2554
+ 157,
2555
+ 146,
2556
+ 142,
2557
+ 144,
2558
+ 153,
2559
+ 143,
2560
+ 156
2561
+ ],
2562
+ "15_8": [
2563
+ 145,
2564
+ 149,
2565
+ 140,
2566
+ 155,
2567
+ 150,
2568
+ 154,
2569
+ 141,
2570
+ 139,
2571
+ 152,
2572
+ 151,
2573
+ 148,
2574
+ 147,
2575
+ 157,
2576
+ 142,
2577
+ 146,
2578
+ 144,
2579
+ 153,
2580
+ 143,
2581
+ 156
2582
+ ],
2583
+ "15_17": [
2584
+ 154,
2585
+ 145,
2586
+ 139,
2587
+ 149,
2588
+ 140,
2589
+ 141,
2590
+ 152,
2591
+ 151,
2592
+ 155,
2593
+ 148,
2594
+ 147,
2595
+ 157,
2596
+ 146,
2597
+ 150,
2598
+ 142,
2599
+ 144,
2600
+ 153,
2601
+ 143,
2602
+ 156
2603
+ ],
2604
+ "15_18": [
2605
+ 145,
2606
+ 149,
2607
+ 155,
2608
+ 140,
2609
+ 150,
2610
+ 154,
2611
+ 141,
2612
+ 139,
2613
+ 152,
2614
+ 151,
2615
+ 148,
2616
+ 147,
2617
+ 157,
2618
+ 142,
2619
+ 146,
2620
+ 144,
2621
+ 153,
2622
+ 143,
2623
+ 156
2624
+ ],
2625
+ "15_19": [
2626
+ 145,
2627
+ 154,
2628
+ 139,
2629
+ 141,
2630
+ 140,
2631
+ 152,
2632
+ 149,
2633
+ 151,
2634
+ 155,
2635
+ 150,
2636
+ 148,
2637
+ 147,
2638
+ 157,
2639
+ 142,
2640
+ 146,
2641
+ 144,
2642
+ 153,
2643
+ 143,
2644
+ 156
2645
+ ],
2646
+ "15_28": [
2647
+ 154,
2648
+ 139,
2649
+ 141,
2650
+ 151,
2651
+ 147,
2652
+ 149,
2653
+ 155,
2654
+ 150,
2655
+ 157,
2656
+ 146,
2657
+ 142,
2658
+ 144,
2659
+ 153,
2660
+ 143,
2661
+ 156,
2662
+ 145,
2663
+ 140,
2664
+ 148,
2665
+ 152
2666
+ ],
2667
+ "15_29": [
2668
+ 149,
2669
+ 154,
2670
+ 141,
2671
+ 139,
2672
+ 155,
2673
+ 145,
2674
+ 140,
2675
+ 152,
2676
+ 151,
2677
+ 148,
2678
+ 147,
2679
+ 150,
2680
+ 157,
2681
+ 146,
2682
+ 142,
2683
+ 144,
2684
+ 143,
2685
+ 156,
2686
+ 153
2687
+ ],
2688
+ "15_30": [
2689
+ 154,
2690
+ 149,
2691
+ 139,
2692
+ 155,
2693
+ 145,
2694
+ 150,
2695
+ 140,
2696
+ 141,
2697
+ 152,
2698
+ 151,
2699
+ 148,
2700
+ 157,
2701
+ 146,
2702
+ 142,
2703
+ 144,
2704
+ 153,
2705
+ 143,
2706
+ 156,
2707
+ 147
2708
+ ],
2709
+ "15_33": [
2710
+ 149,
2711
+ 145,
2712
+ 154,
2713
+ 140,
2714
+ 155,
2715
+ 150,
2716
+ 139,
2717
+ 147,
2718
+ 157,
2719
+ 142,
2720
+ 144,
2721
+ 143,
2722
+ 156,
2723
+ 152,
2724
+ 141,
2725
+ 151,
2726
+ 148,
2727
+ 153,
2728
+ 146
2729
+ ],
2730
+ "15_37": [
2731
+ 145,
2732
+ 154,
2733
+ 141,
2734
+ 140,
2735
+ 139,
2736
+ 152,
2737
+ 151,
2738
+ 149,
2739
+ 148,
2740
+ 157,
2741
+ 150,
2742
+ 146,
2743
+ 142,
2744
+ 144,
2745
+ 153,
2746
+ 143,
2747
+ 156,
2748
+ 147,
2749
+ 155
2750
+ ],
2751
+ "15_39": [
2752
+ 149,
2753
+ 145,
2754
+ 140,
2755
+ 155,
2756
+ 154,
2757
+ 139,
2758
+ 141,
2759
+ 150,
2760
+ 152,
2761
+ 151,
2762
+ 148,
2763
+ 147,
2764
+ 146,
2765
+ 157,
2766
+ 142,
2767
+ 144,
2768
+ 143,
2769
+ 156,
2770
+ 153
2771
+ ],
2772
+ "15_41": [
2773
+ 145,
2774
+ 154,
2775
+ 139,
2776
+ 140,
2777
+ 141,
2778
+ 152,
2779
+ 149,
2780
+ 151,
2781
+ 155,
2782
+ 150,
2783
+ 157,
2784
+ 146,
2785
+ 147,
2786
+ 142,
2787
+ 144,
2788
+ 153,
2789
+ 143,
2790
+ 156,
2791
+ 148
2792
+ ],
2793
+ "15_46": [
2794
+ 145,
2795
+ 154,
2796
+ 139,
2797
+ 140,
2798
+ 149,
2799
+ 141,
2800
+ 152,
2801
+ 148,
2802
+ 151,
2803
+ 155,
2804
+ 143,
2805
+ 150,
2806
+ 157,
2807
+ 146,
2808
+ 142,
2809
+ 153,
2810
+ 144,
2811
+ 156,
2812
+ 147
2813
+ ],
2814
+ "16_1": [
2815
+ 163,
2816
+ 158,
2817
+ 169,
2818
+ 161,
2819
+ 176,
2820
+ 180,
2821
+ 167,
2822
+ 177,
2823
+ 164,
2824
+ 159,
2825
+ 173,
2826
+ 178,
2827
+ 179,
2828
+ 166,
2829
+ 160,
2830
+ 162,
2831
+ 165,
2832
+ 168,
2833
+ 175,
2834
+ 170,
2835
+ 172,
2836
+ 171,
2837
+ 174
2838
+ ],
2839
+ "16_2": [
2840
+ 163,
2841
+ 169,
2842
+ 167,
2843
+ 177,
2844
+ 161,
2845
+ 158,
2846
+ 176,
2847
+ 180,
2848
+ 164,
2849
+ 159,
2850
+ 173,
2851
+ 178,
2852
+ 179,
2853
+ 166,
2854
+ 160,
2855
+ 162,
2856
+ 165,
2857
+ 168,
2858
+ 175,
2859
+ 170,
2860
+ 172,
2861
+ 171,
2862
+ 174
2863
+ ],
2864
+ "16_3": [
2865
+ 161,
2866
+ 158,
2867
+ 176,
2868
+ 163,
2869
+ 169,
2870
+ 167,
2871
+ 177,
2872
+ 180,
2873
+ 164,
2874
+ 159,
2875
+ 173,
2876
+ 178,
2877
+ 179,
2878
+ 166,
2879
+ 162,
2880
+ 160,
2881
+ 165,
2882
+ 168,
2883
+ 175,
2884
+ 170,
2885
+ 172,
2886
+ 171,
2887
+ 174
2888
+ ],
2889
+ "16_10": [
2890
+ 161,
2891
+ 164,
2892
+ 176,
2893
+ 163,
2894
+ 180,
2895
+ 169,
2896
+ 167,
2897
+ 177,
2898
+ 159,
2899
+ 158,
2900
+ 173,
2901
+ 179,
2902
+ 178,
2903
+ 166,
2904
+ 162,
2905
+ 160,
2906
+ 165,
2907
+ 175,
2908
+ 168,
2909
+ 170,
2910
+ 172,
2911
+ 171,
2912
+ 174
2913
+ ],
2914
+ "16_17": [
2915
+ 167,
2916
+ 177,
2917
+ 164,
2918
+ 169,
2919
+ 158,
2920
+ 163,
2921
+ 176,
2922
+ 161,
2923
+ 180,
2924
+ 159,
2925
+ 173,
2926
+ 178,
2927
+ 179,
2928
+ 166,
2929
+ 162,
2930
+ 160,
2931
+ 165,
2932
+ 168,
2933
+ 175,
2934
+ 170,
2935
+ 172,
2936
+ 171,
2937
+ 174
2938
+ ],
2939
+ "16_18": [
2940
+ 176,
2941
+ 161,
2942
+ 163,
2943
+ 164,
2944
+ 167,
2945
+ 177,
2946
+ 159,
2947
+ 180,
2948
+ 169,
2949
+ 158,
2950
+ 173,
2951
+ 179,
2952
+ 178,
2953
+ 166,
2954
+ 162,
2955
+ 160,
2956
+ 165,
2957
+ 175,
2958
+ 168,
2959
+ 170,
2960
+ 172,
2961
+ 171,
2962
+ 174
2963
+ ],
2964
+ "16_20": [
2965
+ 167,
2966
+ 169,
2967
+ 177,
2968
+ 176,
2969
+ 161,
2970
+ 164,
2971
+ 180,
2972
+ 159,
2973
+ 158,
2974
+ 163,
2975
+ 173,
2976
+ 178,
2977
+ 179,
2978
+ 166,
2979
+ 162,
2980
+ 160,
2981
+ 165,
2982
+ 175,
2983
+ 168,
2984
+ 170,
2985
+ 172,
2986
+ 171,
2987
+ 174
2988
+ ],
2989
+ "16_23": [
2990
+ 161,
2991
+ 164,
2992
+ 167,
2993
+ 177,
2994
+ 159,
2995
+ 169,
2996
+ 158,
2997
+ 163,
2998
+ 176,
2999
+ 180,
3000
+ 173,
3001
+ 178,
3002
+ 179,
3003
+ 166,
3004
+ 160,
3005
+ 162,
3006
+ 165,
3007
+ 175,
3008
+ 168,
3009
+ 170,
3010
+ 172,
3011
+ 171,
3012
+ 174
3013
+ ],
3014
+ "16_26": [
3015
+ 163,
3016
+ 169,
3017
+ 173,
3018
+ 168,
3019
+ 158,
3020
+ 178,
3021
+ 161,
3022
+ 164,
3023
+ 175,
3024
+ 176,
3025
+ 167,
3026
+ 180,
3027
+ 179,
3028
+ 166,
3029
+ 162,
3030
+ 165,
3031
+ 170,
3032
+ 177,
3033
+ 159,
3034
+ 172,
3035
+ 171,
3036
+ 160,
3037
+ 174
3038
+ ],
3039
+ "16_27": [
3040
+ 163,
3041
+ 168,
3042
+ 158,
3043
+ 173,
3044
+ 178,
3045
+ 177,
3046
+ 161,
3047
+ 176,
3048
+ 164,
3049
+ 180,
3050
+ 179,
3051
+ 167,
3052
+ 166,
3053
+ 162,
3054
+ 160,
3055
+ 159,
3056
+ 165,
3057
+ 172,
3058
+ 171,
3059
+ 174,
3060
+ 169,
3061
+ 175,
3062
+ 170
3063
+ ],
3064
+ "16_28": [
3065
+ 163,
3066
+ 169,
3067
+ 173,
3068
+ 179,
3069
+ 178,
3070
+ 158,
3071
+ 175,
3072
+ 161,
3073
+ 168,
3074
+ 167,
3075
+ 164,
3076
+ 177,
3077
+ 166,
3078
+ 176,
3079
+ 162,
3080
+ 180,
3081
+ 160,
3082
+ 165,
3083
+ 170,
3084
+ 159,
3085
+ 172,
3086
+ 171,
3087
+ 174
3088
+ ],
3089
+ "16_35": [
3090
+ 173,
3091
+ 176,
3092
+ 167,
3093
+ 163,
3094
+ 179,
3095
+ 169,
3096
+ 161,
3097
+ 178,
3098
+ 175,
3099
+ 166,
3100
+ 160,
3101
+ 162,
3102
+ 165,
3103
+ 158,
3104
+ 168,
3105
+ 164,
3106
+ 159,
3107
+ 172,
3108
+ 171,
3109
+ 174,
3110
+ 180,
3111
+ 177,
3112
+ 170
3113
+ ],
3114
+ "16_39": [
3115
+ 173,
3116
+ 168,
3117
+ 161,
3118
+ 177,
3119
+ 178,
3120
+ 167,
3121
+ 169,
3122
+ 176,
3123
+ 162,
3124
+ 175,
3125
+ 160,
3126
+ 165,
3127
+ 164,
3128
+ 180,
3129
+ 160,
3130
+ 158,
3131
+ 159,
3132
+ 172,
3133
+ 171,
3134
+ 174,
3135
+ 163,
3136
+ 170,
3137
+ 179,
3138
+ 166
3139
+ ],
3140
+ "16_40": [
3141
+ 173,
3142
+ 163,
3143
+ 161,
3144
+ 158,
3145
+ 167,
3146
+ 169,
3147
+ 159,
3148
+ 175,
3149
+ 179,
3150
+ 176,
3151
+ 164,
3152
+ 180,
3153
+ 166,
3154
+ 162,
3155
+ 177,
3156
+ 165,
3157
+ 170,
3158
+ 172,
3159
+ 171,
3160
+ 174,
3161
+ 168,
3162
+ 160,
3163
+ 178
3164
+ ],
3165
+ "16_42": [
3166
+ 163,
3167
+ 169,
3168
+ 176,
3169
+ 180,
3170
+ 173,
3171
+ 161,
3172
+ 179,
3173
+ 158,
3174
+ 166,
3175
+ 160,
3176
+ 162,
3177
+ 165,
3178
+ 175,
3179
+ 168,
3180
+ 170,
3181
+ 167,
3182
+ 177,
3183
+ 164,
3184
+ 159,
3185
+ 172,
3186
+ 171,
3187
+ 174,
3188
+ 178
3189
+ ],
3190
+ "16_44": [
3191
+ 173,
3192
+ 176,
3193
+ 169,
3194
+ 178,
3195
+ 158,
3196
+ 180,
3197
+ 168,
3198
+ 167,
3199
+ 177,
3200
+ 161,
3201
+ 160,
3202
+ 163,
3203
+ 162,
3204
+ 165,
3205
+ 159,
3206
+ 179,
3207
+ 166,
3208
+ 172,
3209
+ 171,
3210
+ 174,
3211
+ 164,
3212
+ 175,
3213
+ 170
3214
+ ],
3215
+ "17_3": [
3216
+ 183,
3217
+ 181,
3218
+ 189,
3219
+ 191,
3220
+ 182,
3221
+ 188,
3222
+ 185,
3223
+ 187,
3224
+ 184,
3225
+ 190,
3226
+ 186
3227
+ ],
3228
+ "17_5": [
3229
+ 183,
3230
+ 181,
3231
+ 187,
3232
+ 188,
3233
+ 189,
3234
+ 184,
3235
+ 182,
3236
+ 191,
3237
+ 185,
3238
+ 190,
3239
+ 186
3240
+ ],
3241
+ "17_8": [
3242
+ 183,
3243
+ 191,
3244
+ 189,
3245
+ 182,
3246
+ 188,
3247
+ 185,
3248
+ 187,
3249
+ 181,
3250
+ 184,
3251
+ 190,
3252
+ 186
3253
+ ],
3254
+ "17_10": [
3255
+ 183,
3256
+ 188,
3257
+ 187,
3258
+ 189,
3259
+ 191,
3260
+ 184,
3261
+ 182,
3262
+ 181,
3263
+ 185,
3264
+ 190,
3265
+ 186
3266
+ ],
3267
+ "17_11": [
3268
+ 183,
3269
+ 187,
3270
+ 184,
3271
+ 188,
3272
+ 191,
3273
+ 189,
3274
+ 181,
3275
+ 182,
3276
+ 185,
3277
+ 190,
3278
+ 186
3279
+ ],
3280
+ "17_14": [
3281
+ 183,
3282
+ 181,
3283
+ 187,
3284
+ 188,
3285
+ 189,
3286
+ 182,
3287
+ 185,
3288
+ 190,
3289
+ 184,
3290
+ 191,
3291
+ 186
3292
+ ],
3293
+ "17_15": [
3294
+ 189,
3295
+ 183,
3296
+ 187,
3297
+ 184,
3298
+ 182,
3299
+ 181,
3300
+ 188,
3301
+ 185,
3302
+ 191,
3303
+ 190,
3304
+ 186
3305
+ ],
3306
+ "17_16": [
3307
+ 183,
3308
+ 189,
3309
+ 181,
3310
+ 188,
3311
+ 182,
3312
+ 187,
3313
+ 185,
3314
+ 184,
3315
+ 191,
3316
+ 190,
3317
+ 186
3318
+ ],
3319
+ "17_19": [
3320
+ 183,
3321
+ 191,
3322
+ 181,
3323
+ 189,
3324
+ 187,
3325
+ 182,
3326
+ 185,
3327
+ 184,
3328
+ 190,
3329
+ 188,
3330
+ 186
3331
+ ],
3332
+ "17_20": [
3333
+ 183,
3334
+ 187,
3335
+ 184,
3336
+ 188,
3337
+ 191,
3338
+ 189,
3339
+ 181,
3340
+ 182,
3341
+ 185,
3342
+ 190,
3343
+ 186
3344
+ ],
3345
+ "17_21": [
3346
+ 189,
3347
+ 183,
3348
+ 181,
3349
+ 182,
3350
+ 185,
3351
+ 190,
3352
+ 188,
3353
+ 184,
3354
+ 191,
3355
+ 187,
3356
+ 186
3357
+ ],
3358
+ "17_23": [
3359
+ 183,
3360
+ 187,
3361
+ 189,
3362
+ 191,
3363
+ 188,
3364
+ 181,
3365
+ 182,
3366
+ 185,
3367
+ 190,
3368
+ 184,
3369
+ 186
3370
+ ],
3371
+ "17_28": [
3372
+ 183,
3373
+ 189,
3374
+ 182,
3375
+ 191,
3376
+ 181,
3377
+ 184,
3378
+ 187,
3379
+ 185,
3380
+ 190,
3381
+ 186,
3382
+ 188
3383
+ ],
3384
+ "17_29": [
3385
+ 189,
3386
+ 183,
3387
+ 187,
3388
+ 182,
3389
+ 188,
3390
+ 181,
3391
+ 185,
3392
+ 191,
3393
+ 190,
3394
+ 186,
3395
+ 184
3396
+ ],
3397
+ "17_36": [
3398
+ 187,
3399
+ 191,
3400
+ 183,
3401
+ 182,
3402
+ 181,
3403
+ 188,
3404
+ 185,
3405
+ 190,
3406
+ 184,
3407
+ 189,
3408
+ 186
3409
+ ],
3410
+ "17_37": [
3411
+ 188,
3412
+ 187,
3413
+ 189,
3414
+ 183,
3415
+ 182,
3416
+ 184,
3417
+ 181,
3418
+ 191,
3419
+ 186,
3420
+ 185,
3421
+ 190,
3422
+ 186
3423
+ ],
3424
+ "17_40": [
3425
+ 188,
3426
+ 187,
3427
+ 189,
3428
+ 181,
3429
+ 183,
3430
+ 185,
3431
+ 184,
3432
+ 191,
3433
+ 190,
3434
+ 186,
3435
+ 182
3436
+ ],
3437
+ "17_43": [
3438
+ 189,
3439
+ 185,
3440
+ 184,
3441
+ 188,
3442
+ 187,
3443
+ 183,
3444
+ 191,
3445
+ 190,
3446
+ 181,
3447
+ 186,
3448
+ 182
3449
+ ],
3450
+ "17_45": [
3451
+ 189,
3452
+ 188,
3453
+ 181,
3454
+ 182,
3455
+ 187,
3456
+ 191,
3457
+ 185,
3458
+ 190,
3459
+ 184,
3460
+ 183,
3461
+ 186
3462
+ ],
3463
+ "17_49": [
3464
+ 181,
3465
+ 189,
3466
+ 188,
3467
+ 182,
3468
+ 191,
3469
+ 184,
3470
+ 183,
3471
+ 186,
3472
+ 187,
3473
+ 185,
3474
+ 190
3475
+ ],
3476
+ "18_2": [
3477
+ 203,
3478
+ 200,
3479
+ 196,
3480
+ 204,
3481
+ 199,
3482
+ 202,
3483
+ 201,
3484
+ 193,
3485
+ 198,
3486
+ 194,
3487
+ 192,
3488
+ 197,
3489
+ 195
3490
+ ],
3491
+ "18_3": [
3492
+ 203,
3493
+ 196,
3494
+ 204,
3495
+ 200,
3496
+ 199,
3497
+ 202,
3498
+ 201,
3499
+ 198,
3500
+ 194,
3501
+ 193,
3502
+ 192,
3503
+ 197,
3504
+ 195
3505
+ ],
3506
+ "18_8": [
3507
+ 203,
3508
+ 200,
3509
+ 196,
3510
+ 204,
3511
+ 199,
3512
+ 202,
3513
+ 201,
3514
+ 193,
3515
+ 198,
3516
+ 194,
3517
+ 192,
3518
+ 197,
3519
+ 195
3520
+ ],
3521
+ "18_11": [
3522
+ 200,
3523
+ 203,
3524
+ 196,
3525
+ 204,
3526
+ 199,
3527
+ 202,
3528
+ 201,
3529
+ 198,
3530
+ 194,
3531
+ 193,
3532
+ 192,
3533
+ 197,
3534
+ 195
3535
+ ],
3536
+ "18_12": [
3537
+ 200,
3538
+ 203,
3539
+ 196,
3540
+ 204,
3541
+ 199,
3542
+ 202,
3543
+ 201,
3544
+ 193,
3545
+ 194,
3546
+ 198,
3547
+ 192,
3548
+ 197,
3549
+ 195
3550
+ ],
3551
+ "18_19": [
3552
+ 203,
3553
+ 200,
3554
+ 196,
3555
+ 204,
3556
+ 199,
3557
+ 202,
3558
+ 201,
3559
+ 194,
3560
+ 198,
3561
+ 193,
3562
+ 192,
3563
+ 197,
3564
+ 195
3565
+ ],
3566
+ "18_24": [
3567
+ 200,
3568
+ 203,
3569
+ 196,
3570
+ 204,
3571
+ 199,
3572
+ 202,
3573
+ 201,
3574
+ 193,
3575
+ 194,
3576
+ 198,
3577
+ 192,
3578
+ 197,
3579
+ 195
3580
+ ],
3581
+ "18_27": [
3582
+ 200,
3583
+ 196,
3584
+ 204,
3585
+ 199,
3586
+ 203,
3587
+ 202,
3588
+ 194,
3589
+ 193,
3590
+ 201,
3591
+ 192,
3592
+ 198,
3593
+ 197,
3594
+ 195
3595
+ ],
3596
+ "18_28": [
3597
+ 200,
3598
+ 196,
3599
+ 203,
3600
+ 204,
3601
+ 199,
3602
+ 202,
3603
+ 201,
3604
+ 193,
3605
+ 192,
3606
+ 194,
3607
+ 198,
3608
+ 197,
3609
+ 195
3610
+ ],
3611
+ "18_31": [
3612
+ 196,
3613
+ 204,
3614
+ 200,
3615
+ 199,
3616
+ 202,
3617
+ 194,
3618
+ 193,
3619
+ 197,
3620
+ 195,
3621
+ 203,
3622
+ 198,
3623
+ 201,
3624
+ 192
3625
+ ],
3626
+ "18_33": [
3627
+ 196,
3628
+ 203,
3629
+ 200,
3630
+ 204,
3631
+ 199,
3632
+ 202,
3633
+ 194,
3634
+ 201,
3635
+ 198,
3636
+ 192,
3637
+ 193,
3638
+ 197,
3639
+ 195
3640
+ ],
3641
+ "18_41": [
3642
+ 196,
3643
+ 200,
3644
+ 203,
3645
+ 204,
3646
+ 199,
3647
+ 194,
3648
+ 193,
3649
+ 201,
3650
+ 198,
3651
+ 192,
3652
+ 195,
3653
+ 197,
3654
+ 202
3655
+ ],
3656
+ "18_45": [
3657
+ 196,
3658
+ 200,
3659
+ 202,
3660
+ 204,
3661
+ 198,
3662
+ 203,
3663
+ 194,
3664
+ 199,
3665
+ 201,
3666
+ 193,
3667
+ 192,
3668
+ 197,
3669
+ 195
3670
+ ],
3671
+ "18_49": [
3672
+ 200,
3673
+ 196,
3674
+ 199,
3675
+ 202,
3676
+ 194,
3677
+ 198,
3678
+ 203,
3679
+ 201,
3680
+ 204,
3681
+ 192,
3682
+ 193,
3683
+ 197,
3684
+ 195
3685
+ ],
3686
+ "18_101": [
3687
+ 200,
3688
+ 196,
3689
+ 204,
3690
+ 199,
3691
+ 202,
3692
+ 203,
3693
+ 201,
3694
+ 198,
3695
+ 194,
3696
+ 193,
3697
+ 192,
3698
+ 197,
3699
+ 195
3700
+ ],
3701
+ "20_9": [
3702
+ 206,
3703
+ 176,
3704
+ 212,
3705
+ 205,
3706
+ 214,
3707
+ 210,
3708
+ 211,
3709
+ 215,
3710
+ 208,
3711
+ 213,
3712
+ 209,
3713
+ 207,
3714
+ 218,
3715
+ 217,
3716
+ 207,
3717
+ 219,
3718
+ 220,
3719
+ 216
3720
+ ],
3721
+ "20_14": [
3722
+ 176,
3723
+ 211,
3724
+ 206,
3725
+ 205,
3726
+ 214,
3727
+ 210,
3728
+ 212,
3729
+ 215,
3730
+ 208,
3731
+ 213,
3732
+ 209,
3733
+ 207,
3734
+ 218,
3735
+ 217,
3736
+ 207,
3737
+ 219,
3738
+ 220,
3739
+ 216
3740
+ ],
3741
+ "20_16": [
3742
+ 212,
3743
+ 206,
3744
+ 205,
3745
+ 176,
3746
+ 214,
3747
+ 211,
3748
+ 210,
3749
+ 215,
3750
+ 208,
3751
+ 213,
3752
+ 209,
3753
+ 207,
3754
+ 217,
3755
+ 218,
3756
+ 207,
3757
+ 219,
3758
+ 220,
3759
+ 216
3760
+ ],
3761
+ "20_17": [
3762
+ 206,
3763
+ 205,
3764
+ 214,
3765
+ 210,
3766
+ 176,
3767
+ 212,
3768
+ 211,
3769
+ 215,
3770
+ 208,
3771
+ 213,
3772
+ 209,
3773
+ 207,
3774
+ 217,
3775
+ 218,
3776
+ 207,
3777
+ 219,
3778
+ 220,
3779
+ 216
3780
+ ],
3781
+ "20_19": [
3782
+ 206,
3783
+ 205,
3784
+ 214,
3785
+ 210,
3786
+ 176,
3787
+ 212,
3788
+ 211,
3789
+ 215,
3790
+ 208,
3791
+ 213,
3792
+ 209,
3793
+ 207,
3794
+ 217,
3795
+ 218,
3796
+ 207,
3797
+ 219,
3798
+ 220,
3799
+ 216
3800
+ ],
3801
+ "20_22": [
3802
+ 176,
3803
+ 206,
3804
+ 205,
3805
+ 214,
3806
+ 210,
3807
+ 211,
3808
+ 212,
3809
+ 215,
3810
+ 208,
3811
+ 213,
3812
+ 209,
3813
+ 207,
3814
+ 218,
3815
+ 217,
3816
+ 207,
3817
+ 219,
3818
+ 220,
3819
+ 216
3820
+ ],
3821
+ "20_25": [
3822
+ 176,
3823
+ 206,
3824
+ 212,
3825
+ 211,
3826
+ 205,
3827
+ 214,
3828
+ 210,
3829
+ 215,
3830
+ 208,
3831
+ 213,
3832
+ 209,
3833
+ 207,
3834
+ 218,
3835
+ 217,
3836
+ 207,
3837
+ 219,
3838
+ 220,
3839
+ 216
3840
+ ],
3841
+ "20_26": [
3842
+ 215,
3843
+ 206,
3844
+ 176,
3845
+ 205,
3846
+ 214,
3847
+ 212,
3848
+ 210,
3849
+ 208,
3850
+ 213,
3851
+ 211,
3852
+ 207,
3853
+ 218,
3854
+ 209,
3855
+ 207,
3856
+ 219,
3857
+ 220,
3858
+ 216,
3859
+ 217
3860
+ ],
3861
+ "20_29": [
3862
+ 206,
3863
+ 176,
3864
+ 205,
3865
+ 215,
3866
+ 212,
3867
+ 210,
3868
+ 211,
3869
+ 208,
3870
+ 213,
3871
+ 207,
3872
+ 217,
3873
+ 218,
3874
+ 207,
3875
+ 220,
3876
+ 219,
3877
+ 216,
3878
+ 209,
3879
+ 214
3880
+ ],
3881
+ "20_32": [
3882
+ 206,
3883
+ 205,
3884
+ 214,
3885
+ 210,
3886
+ 215,
3887
+ 212,
3888
+ 208,
3889
+ 213,
3890
+ 209,
3891
+ 176,
3892
+ 207,
3893
+ 211,
3894
+ 218,
3895
+ 217,
3896
+ 207,
3897
+ 219,
3898
+ 216,
3899
+ 220
3900
+ ],
3901
+ "20_39": [
3902
+ 176,
3903
+ 214,
3904
+ 210,
3905
+ 212,
3906
+ 215,
3907
+ 208,
3908
+ 213,
3909
+ 209,
3910
+ 207,
3911
+ 211,
3912
+ 218,
3913
+ 217,
3914
+ 207,
3915
+ 219,
3916
+ 216,
3917
+ 206,
3918
+ 220,
3919
+ 205
3920
+ ],
3921
+ "20_44": [
3922
+ 176,
3923
+ 215,
3924
+ 211,
3925
+ 206,
3926
+ 217,
3927
+ 205,
3928
+ 214,
3929
+ 212,
3930
+ 218,
3931
+ 208,
3932
+ 213,
3933
+ 209,
3934
+ 207,
3935
+ 219,
3936
+ 207,
3937
+ 220,
3938
+ 216,
3939
+ 210
3940
+ ],
3941
+ "20_47": [
3942
+ 212,
3943
+ 215,
3944
+ 206,
3945
+ 205,
3946
+ 176,
3947
+ 214,
3948
+ 210,
3949
+ 208,
3950
+ 213,
3951
+ 220,
3952
+ 207,
3953
+ 211,
3954
+ 218,
3955
+ 207,
3956
+ 209,
3957
+ 219,
3958
+ 216,
3959
+ 217
3960
+ ],
3961
+ "20_48": [
3962
+ 206,
3963
+ 215,
3964
+ 205,
3965
+ 214,
3966
+ 176,
3967
+ 210,
3968
+ 207,
3969
+ 217,
3970
+ 211,
3971
+ 218,
3972
+ 207,
3973
+ 219,
3974
+ 220,
3975
+ 208,
3976
+ 209,
3977
+ 213,
3978
+ 216,
3979
+ 212
3980
+ ],
3981
+ "21_3": [
3982
+ 225,
3983
+ 229,
3984
+ 221,
3985
+ 232,
3986
+ 227,
3987
+ 223,
3988
+ 231,
3989
+ 226,
3990
+ 233,
3991
+ 228,
3992
+ 230,
3993
+ 234,
3994
+ 222,
3995
+ 224
3996
+ ],
3997
+ "21_8": [
3998
+ 229,
3999
+ 225,
4000
+ 232,
4001
+ 221,
4002
+ 227,
4003
+ 223,
4004
+ 231,
4005
+ 226,
4006
+ 228,
4007
+ 233,
4008
+ 230,
4009
+ 234,
4010
+ 222,
4011
+ 224
4012
+ ],
4013
+ "21_11": [
4014
+ 221,
4015
+ 229,
4016
+ 225,
4017
+ 232,
4018
+ 227,
4019
+ 233,
4020
+ 223,
4021
+ 231,
4022
+ 226,
4023
+ 228,
4024
+ 230,
4025
+ 234,
4026
+ 222,
4027
+ 224
4028
+ ],
4029
+ "21_14": [
4030
+ 232,
4031
+ 225,
4032
+ 233,
4033
+ 229,
4034
+ 221,
4035
+ 227,
4036
+ 223,
4037
+ 231,
4038
+ 226,
4039
+ 228,
4040
+ 230,
4041
+ 234,
4042
+ 222,
4043
+ 224
4044
+ ],
4045
+ "21_15": [
4046
+ 232,
4047
+ 229,
4048
+ 225,
4049
+ 221,
4050
+ 233,
4051
+ 227,
4052
+ 223,
4053
+ 231,
4054
+ 226,
4055
+ 228,
4056
+ 230,
4057
+ 234,
4058
+ 222,
4059
+ 224
4060
+ ],
4061
+ "21_17": [
4062
+ 225,
4063
+ 229,
4064
+ 221,
4065
+ 232,
4066
+ 227,
4067
+ 233,
4068
+ 223,
4069
+ 231,
4070
+ 226,
4071
+ 228,
4072
+ 230,
4073
+ 234,
4074
+ 222,
4075
+ 224
4076
+ ],
4077
+ "21_19": [
4078
+ 232,
4079
+ 221,
4080
+ 233,
4081
+ 225,
4082
+ 229,
4083
+ 227,
4084
+ 223,
4085
+ 231,
4086
+ 226,
4087
+ 228,
4088
+ 230,
4089
+ 234,
4090
+ 222,
4091
+ 224
4092
+ ],
4093
+ "21_24": [
4094
+ 232,
4095
+ 225,
4096
+ 221,
4097
+ 229,
4098
+ 233,
4099
+ 227,
4100
+ 223,
4101
+ 231,
4102
+ 226,
4103
+ 228,
4104
+ 230,
4105
+ 234,
4106
+ 222,
4107
+ 224
4108
+ ],
4109
+ "21_25": [
4110
+ 232,
4111
+ 225,
4112
+ 221,
4113
+ 233,
4114
+ 229,
4115
+ 227,
4116
+ 223,
4117
+ 231,
4118
+ 226,
4119
+ 228,
4120
+ 230,
4121
+ 234,
4122
+ 222,
4123
+ 224
4124
+ ],
4125
+ "21_28": [
4126
+ 229,
4127
+ 232,
4128
+ 225,
4129
+ 227,
4130
+ 223,
4131
+ 231,
4132
+ 226,
4133
+ 228,
4134
+ 230,
4135
+ 233,
4136
+ 234,
4137
+ 222,
4138
+ 224,
4139
+ 221
4140
+ ],
4141
+ "21_29": [
4142
+ 232,
4143
+ 229,
4144
+ 221,
4145
+ 227,
4146
+ 223,
4147
+ 231,
4148
+ 226,
4149
+ 233,
4150
+ 228,
4151
+ 230,
4152
+ 234,
4153
+ 222,
4154
+ 224,
4155
+ 225
4156
+ ],
4157
+ "21_32": [
4158
+ 232,
4159
+ 225,
4160
+ 221,
4161
+ 233,
4162
+ 229,
4163
+ 227,
4164
+ 231,
4165
+ 226,
4166
+ 228,
4167
+ 230,
4168
+ 234,
4169
+ 222,
4170
+ 224,
4171
+ 223
4172
+ ],
4173
+ "21_37": [
4174
+ 229,
4175
+ 225,
4176
+ 232,
4177
+ 221,
4178
+ 227,
4179
+ 223,
4180
+ 231,
4181
+ 226,
4182
+ 228,
4183
+ 230,
4184
+ 234,
4185
+ 224,
4186
+ 233,
4187
+ 222
4188
+ ],
4189
+ "21_43": [
4190
+ 221,
4191
+ 225,
4192
+ 229,
4193
+ 232,
4194
+ 227,
4195
+ 223,
4196
+ 231,
4197
+ 226,
4198
+ 228,
4199
+ 230,
4200
+ 224,
4201
+ 234,
4202
+ 233,
4203
+ 222
4204
+ ],
4205
+ "21_44": [
4206
+ 221,
4207
+ 232,
4208
+ 233,
4209
+ 224,
4210
+ 225,
4211
+ 227,
4212
+ 223,
4213
+ 231,
4214
+ 226,
4215
+ 228,
4216
+ 230,
4217
+ 234,
4218
+ 222,
4219
+ 229
4220
+ ],
4221
+ "21_46": [
4222
+ 225,
4223
+ 221,
4224
+ 229,
4225
+ 232,
4226
+ 233,
4227
+ 227,
4228
+ 223,
4229
+ 224,
4230
+ 231,
4231
+ 226,
4232
+ 228,
4233
+ 230,
4234
+ 234,
4235
+ 222
4236
+ ],
4237
+ "21_47": [
4238
+ 225,
4239
+ 221,
4240
+ 229,
4241
+ 227,
4242
+ 232,
4243
+ 227,
4244
+ 223,
4245
+ 231,
4246
+ 226,
4247
+ 228,
4248
+ 230,
4249
+ 234,
4250
+ 233,
4251
+ 222,
4252
+ 224
4253
+ ],
4254
+ "21_50": [
4255
+ 232,
4256
+ 221,
4257
+ 225,
4258
+ 227,
4259
+ 229,
4260
+ 231,
4261
+ 226,
4262
+ 228,
4263
+ 223,
4264
+ 230,
4265
+ 233,
4266
+ 234,
4267
+ 222,
4268
+ 224
4269
+ ],
4270
+ "21_103": [
4271
+ 225,
4272
+ 229,
4273
+ 221,
4274
+ 232,
4275
+ 227,
4276
+ 223,
4277
+ 231,
4278
+ 226,
4279
+ 233,
4280
+ 228,
4281
+ 230,
4282
+ 234,
4283
+ 222,
4284
+ 224
4285
+ ],
4286
+ "22_2": [
4287
+ 247,
4288
+ 237,
4289
+ 246,
4290
+ 239,
4291
+ 242,
4292
+ 249,
4293
+ 248,
4294
+ 235,
4295
+ 240,
4296
+ 244,
4297
+ 236,
4298
+ 241,
4299
+ 238,
4300
+ 245,
4301
+ 243
4302
+ ],
4303
+ "22_4": [
4304
+ 239,
4305
+ 237,
4306
+ 247,
4307
+ 246,
4308
+ 242,
4309
+ 249,
4310
+ 248,
4311
+ 235,
4312
+ 240,
4313
+ 244,
4314
+ 236,
4315
+ 241,
4316
+ 238,
4317
+ 245,
4318
+ 243
4319
+ ],
4320
+ "22_6": [
4321
+ 247,
4322
+ 237,
4323
+ 246,
4324
+ 242,
4325
+ 249,
4326
+ 239,
4327
+ 248,
4328
+ 235,
4329
+ 240,
4330
+ 244,
4331
+ 236,
4332
+ 241,
4333
+ 238,
4334
+ 245,
4335
+ 243
4336
+ ],
4337
+ "22_8": [
4338
+ 237,
4339
+ 249,
4340
+ 247,
4341
+ 242,
4342
+ 239,
4343
+ 246,
4344
+ 248,
4345
+ 235,
4346
+ 240,
4347
+ 244,
4348
+ 236,
4349
+ 241,
4350
+ 238,
4351
+ 245,
4352
+ 243
4353
+ ],
4354
+ "22_10": [
4355
+ 239,
4356
+ 237,
4357
+ 242,
4358
+ 247,
4359
+ 246,
4360
+ 235,
4361
+ 240,
4362
+ 244,
4363
+ 249,
4364
+ 248,
4365
+ 236,
4366
+ 241,
4367
+ 238,
4368
+ 245,
4369
+ 243
4370
+ ],
4371
+ "22_13": [
4372
+ 247,
4373
+ 246,
4374
+ 237,
4375
+ 242,
4376
+ 239,
4377
+ 249,
4378
+ 248,
4379
+ 235,
4380
+ 240,
4381
+ 244,
4382
+ 236,
4383
+ 241,
4384
+ 238,
4385
+ 245,
4386
+ 243
4387
+ ],
4388
+ "22_21": [
4389
+ 247,
4390
+ 237,
4391
+ 239,
4392
+ 246,
4393
+ 242,
4394
+ 249,
4395
+ 248,
4396
+ 235,
4397
+ 240,
4398
+ 244,
4399
+ 236,
4400
+ 241,
4401
+ 238,
4402
+ 245,
4403
+ 243
4404
+ ],
4405
+ "22_24": [
4406
+ 237,
4407
+ 247,
4408
+ 242,
4409
+ 239,
4410
+ 246,
4411
+ 249,
4412
+ 248,
4413
+ 235,
4414
+ 240,
4415
+ 244,
4416
+ 236,
4417
+ 241,
4418
+ 238,
4419
+ 245,
4420
+ 243
4421
+ ],
4422
+ "22_26": [
4423
+ 237,
4424
+ 247,
4425
+ 246,
4426
+ 242,
4427
+ 239,
4428
+ 249,
4429
+ 248,
4430
+ 235,
4431
+ 240,
4432
+ 244,
4433
+ 236,
4434
+ 241,
4435
+ 238,
4436
+ 245,
4437
+ 243
4438
+ ],
4439
+ "22_30": [
4440
+ 247,
4441
+ 246,
4442
+ 235,
4443
+ 237,
4444
+ 249,
4445
+ 240,
4446
+ 244,
4447
+ 239,
4448
+ 242,
4449
+ 236,
4450
+ 248,
4451
+ 241,
4452
+ 238,
4453
+ 245,
4454
+ 243
4455
+ ],
4456
+ "22_31": [
4457
+ 237,
4458
+ 247,
4459
+ 246,
4460
+ 239,
4461
+ 235,
4462
+ 240,
4463
+ 244,
4464
+ 242,
4465
+ 244,
4466
+ 249,
4467
+ 236,
4468
+ 241,
4469
+ 238,
4470
+ 245,
4471
+ 243,
4472
+ 248
4473
+ ],
4474
+ "22_32": [
4475
+ 239,
4476
+ 249,
4477
+ 237,
4478
+ 235,
4479
+ 247,
4480
+ 246,
4481
+ 248,
4482
+ 240,
4483
+ 241,
4484
+ 238,
4485
+ 245,
4486
+ 243,
4487
+ 236,
4488
+ 244,
4489
+ 242
4490
+ ],
4491
+ "22_37": [
4492
+ 237,
4493
+ 249,
4494
+ 235,
4495
+ 247,
4496
+ 246,
4497
+ 240,
4498
+ 239,
4499
+ 248,
4500
+ 244,
4501
+ 236,
4502
+ 242,
4503
+ 241,
4504
+ 238,
4505
+ 245,
4506
+ 243
4507
+ ],
4508
+ "22_38": [
4509
+ 247,
4510
+ 239,
4511
+ 235,
4512
+ 246,
4513
+ 249,
4514
+ 248,
4515
+ 241,
4516
+ 240,
4517
+ 244,
4518
+ 236,
4519
+ 237,
4520
+ 242,
4521
+ 238,
4522
+ 245,
4523
+ 243
4524
+ ],
4525
+ "22_40": [
4526
+ 247,
4527
+ 237,
4528
+ 246,
4529
+ 239,
4530
+ 249,
4531
+ 235,
4532
+ 242,
4533
+ 248,
4534
+ 240,
4535
+ 241,
4536
+ 244,
4537
+ 236,
4538
+ 238,
4539
+ 245,
4540
+ 243
4541
+ ],
4542
+ "22_41": [
4543
+ 247,
4544
+ 237,
4545
+ 246,
4546
+ 235,
4547
+ 240,
4548
+ 242,
4549
+ 248,
4550
+ 244,
4551
+ 236,
4552
+ 239,
4553
+ 249,
4554
+ 241,
4555
+ 238,
4556
+ 245,
4557
+ 243
4558
+ ],
4559
+ "22_137": [
4560
+ 237,
4561
+ 249,
4562
+ 235,
4563
+ 247,
4564
+ 246,
4565
+ 240,
4566
+ 239,
4567
+ 248,
4568
+ 244,
4569
+ 236,
4570
+ 242,
4571
+ 241,
4572
+ 238,
4573
+ 245,
4574
+ 243
4575
+ ],
4576
+ "23_1": [
4577
+ 273,
4578
+ 268,
4579
+ 250,
4580
+ 270,
4581
+ 269,
4582
+ 254,
4583
+ 257,
4584
+ 267,
4585
+ 262,
4586
+ 271,
4587
+ 255,
4588
+ 259,
4589
+ 252,
4590
+ 260,
4591
+ 251,
4592
+ 263,
4593
+ 266,
4594
+ 258,
4595
+ 265,
4596
+ 253,
4597
+ 261,
4598
+ 274,
4599
+ 272,
4600
+ 256,
4601
+ 264
4602
+ ],
4603
+ "23_5": [
4604
+ 273,
4605
+ 269,
4606
+ 257,
4607
+ 270,
4608
+ 259,
4609
+ 267,
4610
+ 250,
4611
+ 268,
4612
+ 254,
4613
+ 262,
4614
+ 255,
4615
+ 252,
4616
+ 260,
4617
+ 251,
4618
+ 271,
4619
+ 263,
4620
+ 266,
4621
+ 258,
4622
+ 265,
4623
+ 253,
4624
+ 261,
4625
+ 274,
4626
+ 272,
4627
+ 256,
4628
+ 264
4629
+ ],
4630
+ "23_6": [
4631
+ 273,
4632
+ 269,
4633
+ 268,
4634
+ 252,
4635
+ 254,
4636
+ 267,
4637
+ 257,
4638
+ 270,
4639
+ 259,
4640
+ 271,
4641
+ 250,
4642
+ 262,
4643
+ 263,
4644
+ 255,
4645
+ 260,
4646
+ 251,
4647
+ 266,
4648
+ 258,
4649
+ 265,
4650
+ 253,
4651
+ 261,
4652
+ 274,
4653
+ 272,
4654
+ 256,
4655
+ 264
4656
+ ],
4657
+ "23_9": [
4658
+ 252,
4659
+ 271,
4660
+ 270,
4661
+ 250,
4662
+ 257,
4663
+ 273,
4664
+ 268,
4665
+ 254,
4666
+ 269,
4667
+ 262,
4668
+ 263,
4669
+ 267,
4670
+ 255,
4671
+ 260,
4672
+ 251,
4673
+ 259,
4674
+ 266,
4675
+ 265,
4676
+ 258,
4677
+ 253,
4678
+ 261,
4679
+ 274,
4680
+ 272,
4681
+ 256,
4682
+ 264
4683
+ ],
4684
+ "23_12": [
4685
+ 273,
4686
+ 268,
4687
+ 250,
4688
+ 269,
4689
+ 257,
4690
+ 252,
4691
+ 262,
4692
+ 270,
4693
+ 267,
4694
+ 254,
4695
+ 259,
4696
+ 255,
4697
+ 260,
4698
+ 271,
4699
+ 251,
4700
+ 263,
4701
+ 266,
4702
+ 265,
4703
+ 258,
4704
+ 253,
4705
+ 261,
4706
+ 274,
4707
+ 272,
4708
+ 256,
4709
+ 264
4710
+ ],
4711
+ "23_16": [
4712
+ 252,
4713
+ 271,
4714
+ 270,
4715
+ 250,
4716
+ 254,
4717
+ 268,
4718
+ 267,
4719
+ 273,
4720
+ 269,
4721
+ 259,
4722
+ 257,
4723
+ 262,
4724
+ 255,
4725
+ 260,
4726
+ 251,
4727
+ 263,
4728
+ 266,
4729
+ 258,
4730
+ 265,
4731
+ 253,
4732
+ 261,
4733
+ 274,
4734
+ 272,
4735
+ 256,
4736
+ 264
4737
+ ],
4738
+ "23_17": [
4739
+ 252,
4740
+ 254,
4741
+ 268,
4742
+ 257,
4743
+ 262,
4744
+ 250,
4745
+ 270,
4746
+ 267,
4747
+ 269,
4748
+ 273,
4749
+ 255,
4750
+ 271,
4751
+ 263,
4752
+ 260,
4753
+ 251,
4754
+ 259,
4755
+ 266,
4756
+ 265,
4757
+ 258,
4758
+ 253,
4759
+ 261,
4760
+ 274,
4761
+ 272,
4762
+ 256,
4763
+ 264
4764
+ ],
4765
+ "23_18": [
4766
+ 273,
4767
+ 269,
4768
+ 257,
4769
+ 267,
4770
+ 250,
4771
+ 254,
4772
+ 262,
4773
+ 252,
4774
+ 268,
4775
+ 255,
4776
+ 260,
4777
+ 270,
4778
+ 251,
4779
+ 271,
4780
+ 263,
4781
+ 259,
4782
+ 266,
4783
+ 265,
4784
+ 258,
4785
+ 253,
4786
+ 261,
4787
+ 274,
4788
+ 272,
4789
+ 256,
4790
+ 264
4791
+ ],
4792
+ "23_19": [
4793
+ 273,
4794
+ 269,
4795
+ 257,
4796
+ 267,
4797
+ 271,
4798
+ 252,
4799
+ 268,
4800
+ 254,
4801
+ 262,
4802
+ 250,
4803
+ 270,
4804
+ 263,
4805
+ 255,
4806
+ 260,
4807
+ 251,
4808
+ 259,
4809
+ 266,
4810
+ 265,
4811
+ 258,
4812
+ 253,
4813
+ 261,
4814
+ 274,
4815
+ 272,
4816
+ 256,
4817
+ 264
4818
+ ],
4819
+ "23_23": [
4820
+ 273,
4821
+ 269,
4822
+ 257,
4823
+ 270,
4824
+ 259,
4825
+ 267,
4826
+ 250,
4827
+ 252,
4828
+ 268,
4829
+ 254,
4830
+ 262,
4831
+ 255,
4832
+ 271,
4833
+ 260,
4834
+ 251,
4835
+ 263,
4836
+ 266,
4837
+ 265,
4838
+ 258,
4839
+ 253,
4840
+ 261,
4841
+ 274,
4842
+ 272,
4843
+ 256,
4844
+ 264
4845
+ ],
4846
+ "23_24": [
4847
+ 252,
4848
+ 254,
4849
+ 250,
4850
+ 257,
4851
+ 269,
4852
+ 271,
4853
+ 270,
4854
+ 262,
4855
+ 273,
4856
+ 255,
4857
+ 267,
4858
+ 268,
4859
+ 259,
4860
+ 263,
4861
+ 260,
4862
+ 251,
4863
+ 266,
4864
+ 265,
4865
+ 258,
4866
+ 253,
4867
+ 261,
4868
+ 274,
4869
+ 272,
4870
+ 256,
4871
+ 264
4872
+ ],
4873
+ "23_26": [
4874
+ 252,
4875
+ 254,
4876
+ 268,
4877
+ 257,
4878
+ 262,
4879
+ 250,
4880
+ 270,
4881
+ 255,
4882
+ 271,
4883
+ 269,
4884
+ 259,
4885
+ 263,
4886
+ 260,
4887
+ 273,
4888
+ 251,
4889
+ 266,
4890
+ 258,
4891
+ 253,
4892
+ 261,
4893
+ 274,
4894
+ 272,
4895
+ 256,
4896
+ 264,
4897
+ 267,
4898
+ 265
4899
+ ],
4900
+ "23_32": [
4901
+ 257,
4902
+ 269,
4903
+ 250,
4904
+ 252,
4905
+ 271,
4906
+ 255,
4907
+ 268,
4908
+ 254,
4909
+ 260,
4910
+ 251,
4911
+ 273,
4912
+ 263,
4913
+ 270,
4914
+ 259,
4915
+ 266,
4916
+ 265,
4917
+ 258,
4918
+ 253,
4919
+ 261,
4920
+ 274,
4921
+ 272,
4922
+ 256,
4923
+ 264,
4924
+ 267,
4925
+ 262
4926
+ ],
4927
+ "23_38": [
4928
+ 273,
4929
+ 269,
4930
+ 271,
4931
+ 263,
4932
+ 270,
4933
+ 271,
4934
+ 261,
4935
+ 257,
4936
+ 262,
4937
+ 255,
4938
+ 250,
4939
+ 251,
4940
+ 256,
4941
+ 266,
4942
+ 259,
4943
+ 258,
4944
+ 265,
4945
+ 268,
4946
+ 274,
4947
+ 267,
4948
+ 272,
4949
+ 264,
4950
+ 253,
4951
+ 260,
4952
+ 254,
4953
+ 252
4954
+ ],
4955
+ "23_39": [
4956
+ 257,
4957
+ 262,
4958
+ 255,
4959
+ 268,
4960
+ 269,
4961
+ 260,
4962
+ 251,
4963
+ 270,
4964
+ 271,
4965
+ 250,
4966
+ 273,
4967
+ 267,
4968
+ 256,
4969
+ 259,
4970
+ 263,
4971
+ 265,
4972
+ 258,
4973
+ 253,
4974
+ 261,
4975
+ 254,
4976
+ 272,
4977
+ 252,
4978
+ 264,
4979
+ 274,
4980
+ 266
4981
+ ],
4982
+ "23_41": [
4983
+ 273,
4984
+ 257,
4985
+ 262,
4986
+ 255,
4987
+ 267,
4988
+ 271,
4989
+ 250,
4990
+ 268,
4991
+ 270,
4992
+ 263,
4993
+ 266,
4994
+ 260,
4995
+ 259,
4996
+ 251,
4997
+ 252,
4998
+ 265,
4999
+ 258,
5000
+ 253,
5001
+ 261,
5002
+ 274,
5003
+ 272,
5004
+ 256,
5005
+ 264,
5006
+ 254,
5007
+ 269
5008
+ ],
5009
+ "25_1": [
5010
+ 275,
5011
+ 293,
5012
+ 291,
5013
+ 279,
5014
+ 286,
5015
+ 276,
5016
+ 292,
5017
+ 280,
5018
+ 285,
5019
+ 287,
5020
+ 290,
5021
+ 282,
5022
+ 277,
5023
+ 278,
5024
+ 284,
5025
+ 289,
5026
+ 281,
5027
+ 288,
5028
+ 283
5029
+ ],
5030
+ "25_2": [
5031
+ 275,
5032
+ 293,
5033
+ 291,
5034
+ 279,
5035
+ 286,
5036
+ 276,
5037
+ 292,
5038
+ 280,
5039
+ 285,
5040
+ 287,
5041
+ 290,
5042
+ 282,
5043
+ 277,
5044
+ 278,
5045
+ 284,
5046
+ 289,
5047
+ 281,
5048
+ 288,
5049
+ 283
5050
+ ],
5051
+ "25_3": [
5052
+ 275,
5053
+ 293,
5054
+ 276,
5055
+ 286,
5056
+ 291,
5057
+ 279,
5058
+ 292,
5059
+ 280,
5060
+ 285,
5061
+ 287,
5062
+ 290,
5063
+ 282,
5064
+ 278,
5065
+ 277,
5066
+ 284,
5067
+ 289,
5068
+ 281,
5069
+ 288,
5070
+ 283
5071
+ ],
5072
+ "25_4": [
5073
+ 275,
5074
+ 293,
5075
+ 291,
5076
+ 279,
5077
+ 286,
5078
+ 276,
5079
+ 292,
5080
+ 280,
5081
+ 285,
5082
+ 287,
5083
+ 290,
5084
+ 282,
5085
+ 277,
5086
+ 278,
5087
+ 284,
5088
+ 289,
5089
+ 281,
5090
+ 288,
5091
+ 283
5092
+ ],
5093
+ "25_5": [
5094
+ 275,
5095
+ 293,
5096
+ 291,
5097
+ 279,
5098
+ 286,
5099
+ 276,
5100
+ 292,
5101
+ 280,
5102
+ 285,
5103
+ 287,
5104
+ 290,
5105
+ 282,
5106
+ 277,
5107
+ 278,
5108
+ 284,
5109
+ 289,
5110
+ 281,
5111
+ 288,
5112
+ 283
5113
+ ],
5114
+ "25_6": [
5115
+ 275,
5116
+ 293,
5117
+ 291,
5118
+ 279,
5119
+ 286,
5120
+ 276,
5121
+ 292,
5122
+ 280,
5123
+ 285,
5124
+ 287,
5125
+ 290,
5126
+ 282,
5127
+ 277,
5128
+ 278,
5129
+ 284,
5130
+ 289,
5131
+ 281,
5132
+ 288,
5133
+ 283
5134
+ ],
5135
+ "25_9": [
5136
+ 275,
5137
+ 293,
5138
+ 291,
5139
+ 279,
5140
+ 286,
5141
+ 276,
5142
+ 292,
5143
+ 280,
5144
+ 285,
5145
+ 287,
5146
+ 290,
5147
+ 282,
5148
+ 277,
5149
+ 278,
5150
+ 284,
5151
+ 289,
5152
+ 281,
5153
+ 288,
5154
+ 283
5155
+ ],
5156
+ "25_11": [
5157
+ 275,
5158
+ 293,
5159
+ 291,
5160
+ 279,
5161
+ 286,
5162
+ 276,
5163
+ 292,
5164
+ 280,
5165
+ 285,
5166
+ 287,
5167
+ 290,
5168
+ 282,
5169
+ 278,
5170
+ 277,
5171
+ 284,
5172
+ 289,
5173
+ 281,
5174
+ 288,
5175
+ 283
5176
+ ],
5177
+ "25_13": [
5178
+ 291,
5179
+ 286,
5180
+ 276,
5181
+ 275,
5182
+ 293,
5183
+ 279,
5184
+ 292,
5185
+ 280,
5186
+ 285,
5187
+ 287,
5188
+ 290,
5189
+ 282,
5190
+ 278,
5191
+ 277,
5192
+ 284,
5193
+ 289,
5194
+ 281,
5195
+ 288,
5196
+ 283
5197
+ ],
5198
+ "25_22": [
5199
+ 275,
5200
+ 293,
5201
+ 291,
5202
+ 279,
5203
+ 286,
5204
+ 276,
5205
+ 292,
5206
+ 280,
5207
+ 285,
5208
+ 287,
5209
+ 290,
5210
+ 282,
5211
+ 278,
5212
+ 277,
5213
+ 284,
5214
+ 289,
5215
+ 281,
5216
+ 288,
5217
+ 283
5218
+ ],
5219
+ "25_40": [
5220
+ 275,
5221
+ 286,
5222
+ 291,
5223
+ 293,
5224
+ 279,
5225
+ 276,
5226
+ 292,
5227
+ 280,
5228
+ 285,
5229
+ 287,
5230
+ 290,
5231
+ 282,
5232
+ 278,
5233
+ 277,
5234
+ 284,
5235
+ 289,
5236
+ 281,
5237
+ 288,
5238
+ 283
5239
+ ],
5240
+ "25_41": [
5241
+ 275,
5242
+ 293,
5243
+ 291,
5244
+ 279,
5245
+ 276,
5246
+ 292,
5247
+ 285,
5248
+ 287,
5249
+ 290,
5250
+ 282,
5251
+ 277,
5252
+ 278,
5253
+ 284,
5254
+ 289,
5255
+ 286,
5256
+ 281,
5257
+ 288,
5258
+ 283,
5259
+ 280
5260
+ ],
5261
+ "25_42": [
5262
+ 275,
5263
+ 293,
5264
+ 279,
5265
+ 286,
5266
+ 291,
5267
+ 276,
5268
+ 292,
5269
+ 282,
5270
+ 289,
5271
+ 280,
5272
+ 285,
5273
+ 287,
5274
+ 290,
5275
+ 278,
5276
+ 281,
5277
+ 284,
5278
+ 288,
5279
+ 283,
5280
+ 277
5281
+ ],
5282
+ "25_48": [
5283
+ 275,
5284
+ 286,
5285
+ 291,
5286
+ 279,
5287
+ 292,
5288
+ 285,
5289
+ 287,
5290
+ 278,
5291
+ 289,
5292
+ 282,
5293
+ 277,
5294
+ 284,
5295
+ 288,
5296
+ 283,
5297
+ 280,
5298
+ 276,
5299
+ 293,
5300
+ 290,
5301
+ 281
5302
+ ],
5303
+ "25_109": [
5304
+ 275,
5305
+ 293,
5306
+ 291,
5307
+ 279,
5308
+ 286,
5309
+ 276,
5310
+ 292,
5311
+ 280,
5312
+ 285,
5313
+ 287,
5314
+ 290,
5315
+ 282,
5316
+ 277,
5317
+ 278,
5318
+ 284,
5319
+ 289,
5320
+ 281,
5321
+ 288,
5322
+ 283
5323
+ ],
5324
+ "26_4": [
5325
+ 304,
5326
+ 303,
5327
+ 310,
5328
+ 297,
5329
+ 301,
5330
+ 299,
5331
+ 308,
5332
+ 296,
5333
+ 313,
5334
+ 300,
5335
+ 294,
5336
+ 307,
5337
+ 312,
5338
+ 309,
5339
+ 305,
5340
+ 295,
5341
+ 298,
5342
+ 311,
5343
+ 306,
5344
+ 302
5345
+ ],
5346
+ "26_6": [
5347
+ 304,
5348
+ 310,
5349
+ 299,
5350
+ 297,
5351
+ 308,
5352
+ 313,
5353
+ 300,
5354
+ 303,
5355
+ 301,
5356
+ 296,
5357
+ 294,
5358
+ 307,
5359
+ 312,
5360
+ 309,
5361
+ 305,
5362
+ 295,
5363
+ 298,
5364
+ 311,
5365
+ 306,
5366
+ 302
5367
+ ],
5368
+ "26_7": [
5369
+ 303,
5370
+ 299,
5371
+ 304,
5372
+ 301,
5373
+ 297,
5374
+ 310,
5375
+ 308,
5376
+ 313,
5377
+ 300,
5378
+ 296,
5379
+ 294,
5380
+ 307,
5381
+ 312,
5382
+ 309,
5383
+ 305,
5384
+ 295,
5385
+ 298,
5386
+ 311,
5387
+ 306,
5388
+ 302
5389
+ ],
5390
+ "26_17": [
5391
+ 299,
5392
+ 310,
5393
+ 303,
5394
+ 304,
5395
+ 297,
5396
+ 301,
5397
+ 308,
5398
+ 300,
5399
+ 296,
5400
+ 313,
5401
+ 294,
5402
+ 307,
5403
+ 312,
5404
+ 309,
5405
+ 305,
5406
+ 295,
5407
+ 298,
5408
+ 311,
5409
+ 306,
5410
+ 302
5411
+ ],
5412
+ "26_18": [
5413
+ 297,
5414
+ 303,
5415
+ 299,
5416
+ 304,
5417
+ 310,
5418
+ 308,
5419
+ 313,
5420
+ 300,
5421
+ 296,
5422
+ 301,
5423
+ 294,
5424
+ 307,
5425
+ 312,
5426
+ 309,
5427
+ 305,
5428
+ 295,
5429
+ 298,
5430
+ 311,
5431
+ 306,
5432
+ 302
5433
+ ],
5434
+ "26_19": [
5435
+ 299,
5436
+ 303,
5437
+ 304,
5438
+ 297,
5439
+ 310,
5440
+ 308,
5441
+ 300,
5442
+ 313,
5443
+ 296,
5444
+ 294,
5445
+ 301,
5446
+ 307,
5447
+ 312,
5448
+ 309,
5449
+ 305,
5450
+ 295,
5451
+ 298,
5452
+ 311,
5453
+ 306,
5454
+ 302
5455
+ ],
5456
+ "26_20": [
5457
+ 303,
5458
+ 310,
5459
+ 297,
5460
+ 304,
5461
+ 299,
5462
+ 308,
5463
+ 313,
5464
+ 300,
5465
+ 296,
5466
+ 301,
5467
+ 294,
5468
+ 307,
5469
+ 312,
5470
+ 309,
5471
+ 305,
5472
+ 295,
5473
+ 298,
5474
+ 311,
5475
+ 306,
5476
+ 302
5477
+ ],
5478
+ "26_22": [
5479
+ 310,
5480
+ 304,
5481
+ 303,
5482
+ 299,
5483
+ 297,
5484
+ 308,
5485
+ 313,
5486
+ 296,
5487
+ 301,
5488
+ 300,
5489
+ 294,
5490
+ 307,
5491
+ 312,
5492
+ 309,
5493
+ 305,
5494
+ 295,
5495
+ 298,
5496
+ 311,
5497
+ 306,
5498
+ 302
5499
+ ],
5500
+ "26_24": [
5501
+ 304,
5502
+ 299,
5503
+ 297,
5504
+ 303,
5505
+ 310,
5506
+ 308,
5507
+ 300,
5508
+ 313,
5509
+ 296,
5510
+ 301,
5511
+ 294,
5512
+ 307,
5513
+ 312,
5514
+ 309,
5515
+ 305,
5516
+ 295,
5517
+ 298,
5518
+ 311,
5519
+ 306,
5520
+ 302
5521
+ ],
5522
+ "26_29": [
5523
+ 310,
5524
+ 304,
5525
+ 297,
5526
+ 299,
5527
+ 308,
5528
+ 296,
5529
+ 300,
5530
+ 313,
5531
+ 303,
5532
+ 294,
5533
+ 301,
5534
+ 307,
5535
+ 312,
5536
+ 309,
5537
+ 305,
5538
+ 295,
5539
+ 298,
5540
+ 311,
5541
+ 306,
5542
+ 302
5543
+ ],
5544
+ "26_30": [
5545
+ 299,
5546
+ 297,
5547
+ 310,
5548
+ 308,
5549
+ 313,
5550
+ 296,
5551
+ 303,
5552
+ 301,
5553
+ 300,
5554
+ 294,
5555
+ 307,
5556
+ 309,
5557
+ 305,
5558
+ 295,
5559
+ 298,
5560
+ 306,
5561
+ 302,
5562
+ 304,
5563
+ 312,
5564
+ 311
5565
+ ],
5566
+ "26_34": [
5567
+ 297,
5568
+ 304,
5569
+ 310,
5570
+ 308,
5571
+ 313,
5572
+ 300,
5573
+ 296,
5574
+ 294,
5575
+ 307,
5576
+ 312,
5577
+ 309,
5578
+ 305,
5579
+ 298,
5580
+ 306,
5581
+ 302,
5582
+ 299,
5583
+ 303,
5584
+ 301,
5585
+ 311,
5586
+ 295
5587
+ ],
5588
+ "26_36": [
5589
+ 304,
5590
+ 310,
5591
+ 299,
5592
+ 297,
5593
+ 308,
5594
+ 300,
5595
+ 303,
5596
+ 301,
5597
+ 296,
5598
+ 313,
5599
+ 294,
5600
+ 307,
5601
+ 312,
5602
+ 309,
5603
+ 305,
5604
+ 295,
5605
+ 298,
5606
+ 311,
5607
+ 306,
5608
+ 302
5609
+ ],
5610
+ "26_39": [
5611
+ 304,
5612
+ 297,
5613
+ 299,
5614
+ 303,
5615
+ 310,
5616
+ 308,
5617
+ 301,
5618
+ 300,
5619
+ 313,
5620
+ 294,
5621
+ 307,
5622
+ 312,
5623
+ 309,
5624
+ 305,
5625
+ 295,
5626
+ 298,
5627
+ 306,
5628
+ 302,
5629
+ 296,
5630
+ 311
5631
+ ],
5632
+ "26_42": [
5633
+ 310,
5634
+ 299,
5635
+ 303,
5636
+ 301,
5637
+ 304,
5638
+ 296,
5639
+ 308,
5640
+ 307,
5641
+ 312,
5642
+ 305,
5643
+ 309,
5644
+ 295,
5645
+ 298,
5646
+ 311,
5647
+ 306,
5648
+ 302,
5649
+ 300,
5650
+ 294,
5651
+ 297,
5652
+ 313
5653
+ ],
5654
+ "26_46": [
5655
+ 297,
5656
+ 299,
5657
+ 304,
5658
+ 303,
5659
+ 310,
5660
+ 308,
5661
+ 301,
5662
+ 296,
5663
+ 313,
5664
+ 294,
5665
+ 300,
5666
+ 307,
5667
+ 312,
5668
+ 309,
5669
+ 298,
5670
+ 306,
5671
+ 302,
5672
+ 295,
5673
+ 305,
5674
+ 311
5675
+ ],
5676
+ "26_136": [
5677
+ 304,
5678
+ 310,
5679
+ 299,
5680
+ 297,
5681
+ 308,
5682
+ 300,
5683
+ 303,
5684
+ 296,
5685
+ 313,
5686
+ 301,
5687
+ 294,
5688
+ 307,
5689
+ 312,
5690
+ 309,
5691
+ 305,
5692
+ 295,
5693
+ 298,
5694
+ 311,
5695
+ 306,
5696
+ 302
5697
+ ],
5698
+ "27_3": [
5699
+ 321,
5700
+ 322,
5701
+ 316,
5702
+ 320,
5703
+ 323,
5704
+ 318,
5705
+ 317,
5706
+ 315,
5707
+ 319,
5708
+ 314,
5709
+ 324
5710
+ ],
5711
+ "27_4": [
5712
+ 320,
5713
+ 316,
5714
+ 321,
5715
+ 323,
5716
+ 322,
5717
+ 318,
5718
+ 317,
5719
+ 315,
5720
+ 314,
5721
+ 319,
5722
+ 324
5723
+ ],
5724
+ "27_9": [
5725
+ 316,
5726
+ 321,
5727
+ 320,
5728
+ 323,
5729
+ 322,
5730
+ 318,
5731
+ 317,
5732
+ 315,
5733
+ 319,
5734
+ 314,
5735
+ 324
5736
+ ],
5737
+ "27_13": [
5738
+ 321,
5739
+ 316,
5740
+ 322,
5741
+ 320,
5742
+ 323,
5743
+ 318,
5744
+ 317,
5745
+ 319,
5746
+ 315,
5747
+ 314,
5748
+ 324
5749
+ ],
5750
+ "27_15": [
5751
+ 320,
5752
+ 316,
5753
+ 321,
5754
+ 323,
5755
+ 322,
5756
+ 318,
5757
+ 317,
5758
+ 315,
5759
+ 319,
5760
+ 314,
5761
+ 324
5762
+ ],
5763
+ "27_17": [
5764
+ 316,
5765
+ 321,
5766
+ 320,
5767
+ 323,
5768
+ 322,
5769
+ 318,
5770
+ 317,
5771
+ 315,
5772
+ 314,
5773
+ 319,
5774
+ 324
5775
+ ],
5776
+ "27_18": [
5777
+ 321,
5778
+ 322,
5779
+ 320,
5780
+ 318,
5781
+ 316,
5782
+ 323,
5783
+ 317,
5784
+ 315,
5785
+ 314,
5786
+ 319,
5787
+ 324
5788
+ ],
5789
+ "27_26": [
5790
+ 316,
5791
+ 321,
5792
+ 322,
5793
+ 320,
5794
+ 323,
5795
+ 317,
5796
+ 314,
5797
+ 319,
5798
+ 315,
5799
+ 324,
5800
+ 318
5801
+ ],
5802
+ "27_29": [
5803
+ 321,
5804
+ 316,
5805
+ 323,
5806
+ 322,
5807
+ 318,
5808
+ 317,
5809
+ 319,
5810
+ 314,
5811
+ 315,
5812
+ 324,
5813
+ 320
5814
+ ],
5815
+ "27_31": [
5816
+ 316,
5817
+ 320,
5818
+ 321,
5819
+ 323,
5820
+ 322,
5821
+ 318,
5822
+ 317,
5823
+ 315,
5824
+ 314,
5825
+ 324,
5826
+ 319
5827
+ ],
5828
+ "27_34": [
5829
+ 320,
5830
+ 321,
5831
+ 322,
5832
+ 316,
5833
+ 323,
5834
+ 318,
5835
+ 317,
5836
+ 319,
5837
+ 314,
5838
+ 324,
5839
+ 315
5840
+ ],
5841
+ "27_37": [
5842
+ 320,
5843
+ 319,
5844
+ 321,
5845
+ 318,
5846
+ 322,
5847
+ 316,
5848
+ 323,
5849
+ 317,
5850
+ 315,
5851
+ 314,
5852
+ 324
5853
+ ],
5854
+ "27_38": [
5855
+ 316,
5856
+ 321,
5857
+ 322,
5858
+ 318,
5859
+ 320,
5860
+ 317,
5861
+ 314,
5862
+ 319,
5863
+ 324,
5864
+ 323,
5865
+ 315
5866
+ ],
5867
+ "27_45": [
5868
+ 316,
5869
+ 321,
5870
+ 322,
5871
+ 323,
5872
+ 318,
5873
+ 317,
5874
+ 319,
5875
+ 320,
5876
+ 314,
5877
+ 315,
5878
+ 324
5879
+ ],
5880
+ "27_49": [
5881
+ 320,
5882
+ 316,
5883
+ 323,
5884
+ 321,
5885
+ 322,
5886
+ 317,
5887
+ 318,
5888
+ 319,
5889
+ 315,
5890
+ 314,
5891
+ 324
5892
+ ],
5893
+ "28_2": [
5894
+ 335,
5895
+ 336,
5896
+ 328,
5897
+ 329,
5898
+ 341,
5899
+ 327,
5900
+ 340,
5901
+ 325,
5902
+ 339,
5903
+ 333,
5904
+ 334,
5905
+ 331,
5906
+ 338,
5907
+ 326,
5908
+ 332,
5909
+ 330,
5910
+ 337
5911
+ ],
5912
+ "28_3": [
5913
+ 336,
5914
+ 327,
5915
+ 339,
5916
+ 328,
5917
+ 334,
5918
+ 340,
5919
+ 329,
5920
+ 335,
5921
+ 341,
5922
+ 325,
5923
+ 333,
5924
+ 331,
5925
+ 338,
5926
+ 326,
5927
+ 332,
5928
+ 330,
5929
+ 337
5930
+ ],
5931
+ "28_7": [
5932
+ 336,
5933
+ 335,
5934
+ 340,
5935
+ 333,
5936
+ 341,
5937
+ 328,
5938
+ 329,
5939
+ 327,
5940
+ 339,
5941
+ 334,
5942
+ 331,
5943
+ 326,
5944
+ 325,
5945
+ 338,
5946
+ 332,
5947
+ 330,
5948
+ 337
5949
+ ],
5950
+ "28_10": [
5951
+ 340,
5952
+ 339,
5953
+ 327,
5954
+ 336,
5955
+ 328,
5956
+ 333,
5957
+ 334,
5958
+ 335,
5959
+ 331,
5960
+ 326,
5961
+ 329,
5962
+ 338,
5963
+ 341,
5964
+ 325,
5965
+ 332,
5966
+ 330,
5967
+ 337
5968
+ ],
5969
+ "28_14": [
5970
+ 339,
5971
+ 336,
5972
+ 328,
5973
+ 340,
5974
+ 333,
5975
+ 327,
5976
+ 334,
5977
+ 331,
5978
+ 335,
5979
+ 341,
5980
+ 329,
5981
+ 325,
5982
+ 338,
5983
+ 326,
5984
+ 332,
5985
+ 330,
5986
+ 337
5987
+ ],
5988
+ "28_16": [
5989
+ 339,
5990
+ 329,
5991
+ 336,
5992
+ 328,
5993
+ 327,
5994
+ 334,
5995
+ 335,
5996
+ 340,
5997
+ 333,
5998
+ 341,
5999
+ 325,
6000
+ 331,
6001
+ 326,
6002
+ 338,
6003
+ 332,
6004
+ 330,
6005
+ 337
6006
+ ],
6007
+ "28_21": [
6008
+ 336,
6009
+ 327,
6010
+ 329,
6011
+ 339,
6012
+ 340,
6013
+ 333,
6014
+ 328,
6015
+ 334,
6016
+ 335,
6017
+ 331,
6018
+ 326,
6019
+ 338,
6020
+ 341,
6021
+ 325,
6022
+ 332,
6023
+ 330,
6024
+ 337
6025
+ ],
6026
+ "28_24": [
6027
+ 340,
6028
+ 329,
6029
+ 335,
6030
+ 336,
6031
+ 327,
6032
+ 341,
6033
+ 339,
6034
+ 328,
6035
+ 333,
6036
+ 334,
6037
+ 331,
6038
+ 326,
6039
+ 338,
6040
+ 325,
6041
+ 332,
6042
+ 330,
6043
+ 337
6044
+ ],
6045
+ "28_25": [
6046
+ 327,
6047
+ 335,
6048
+ 336,
6049
+ 329,
6050
+ 340,
6051
+ 341,
6052
+ 325,
6053
+ 328,
6054
+ 334,
6055
+ 339,
6056
+ 333,
6057
+ 331,
6058
+ 326,
6059
+ 338,
6060
+ 332,
6061
+ 330,
6062
+ 337
6063
+ ],
6064
+ "28_26": [
6065
+ 336,
6066
+ 328,
6067
+ 327,
6068
+ 340,
6069
+ 339,
6070
+ 334,
6071
+ 335,
6072
+ 333,
6073
+ 329,
6074
+ 331,
6075
+ 326,
6076
+ 338,
6077
+ 330,
6078
+ 337,
6079
+ 341,
6080
+ 332,
6081
+ 325
6082
+ ],
6083
+ "28_28": [
6084
+ 335,
6085
+ 341,
6086
+ 336,
6087
+ 340,
6088
+ 329,
6089
+ 328,
6090
+ 327,
6091
+ 339,
6092
+ 334,
6093
+ 325,
6094
+ 326,
6095
+ 332,
6096
+ 330,
6097
+ 337,
6098
+ 333,
6099
+ 331,
6100
+ 338
6101
+ ],
6102
+ "28_29": [
6103
+ 340,
6104
+ 329,
6105
+ 339,
6106
+ 335,
6107
+ 336,
6108
+ 328,
6109
+ 333,
6110
+ 341,
6111
+ 325,
6112
+ 327,
6113
+ 331,
6114
+ 338,
6115
+ 326,
6116
+ 334,
6117
+ 332,
6118
+ 330,
6119
+ 337
6120
+ ],
6121
+ "28_38": [
6122
+ 336,
6123
+ 339,
6124
+ 340,
6125
+ 335,
6126
+ 333,
6127
+ 329,
6128
+ 341,
6129
+ 328,
6130
+ 332,
6131
+ 325,
6132
+ 338,
6133
+ 327,
6134
+ 330,
6135
+ 334,
6136
+ 331,
6137
+ 337,
6138
+ 326
6139
+ ],
6140
+ "28_42": [
6141
+ 336,
6142
+ 340,
6143
+ 328,
6144
+ 335,
6145
+ 341,
6146
+ 333,
6147
+ 327,
6148
+ 339,
6149
+ 329,
6150
+ 334,
6151
+ 331,
6152
+ 325,
6153
+ 338,
6154
+ 326,
6155
+ 332,
6156
+ 330,
6157
+ 337
6158
+ ],
6159
+ "28_44": [
6160
+ 340,
6161
+ 335,
6162
+ 336,
6163
+ 327,
6164
+ 333,
6165
+ 328,
6166
+ 341,
6167
+ 339,
6168
+ 325,
6169
+ 329,
6170
+ 334,
6171
+ 331,
6172
+ 338,
6173
+ 332,
6174
+ 330,
6175
+ 326,
6176
+ 337
6177
+ ],
6178
+ "28_45": [
6179
+ 336,
6180
+ 335,
6181
+ 340,
6182
+ 328,
6183
+ 339,
6184
+ 341,
6185
+ 334,
6186
+ 327,
6187
+ 333,
6188
+ 331,
6189
+ 338,
6190
+ 329,
6191
+ 332,
6192
+ 325,
6193
+ 326,
6194
+ 330,
6195
+ 337
6196
+ ],
6197
+ "28_49": [
6198
+ 336,
6199
+ 327,
6200
+ 335,
6201
+ 329,
6202
+ 340,
6203
+ 333,
6204
+ 339,
6205
+ 334,
6206
+ 331,
6207
+ 341,
6208
+ 340,
6209
+ 325,
6210
+ 326,
6211
+ 332,
6212
+ 330,
6213
+ 337,
6214
+ 338,
6215
+ 328
6216
+ ],
6217
+ "28_50": [
6218
+ 336,
6219
+ 339,
6220
+ 328,
6221
+ 335,
6222
+ 341,
6223
+ 334,
6224
+ 331,
6225
+ 329,
6226
+ 332,
6227
+ 338,
6228
+ 326,
6229
+ 340,
6230
+ 325,
6231
+ 330,
6232
+ 337,
6233
+ 327,
6234
+ 333
6235
+ ],
6236
+ "29_5": [
6237
+ 342,
6238
+ 343,
6239
+ 346,
6240
+ 344,
6241
+ 349,
6242
+ 352,
6243
+ 350,
6244
+ 347,
6245
+ 351,
6246
+ 348,
6247
+ 345
6248
+ ],
6249
+ "29_6": [
6250
+ 343,
6251
+ 344,
6252
+ 347,
6253
+ 342,
6254
+ 349,
6255
+ 346,
6256
+ 350,
6257
+ 351,
6258
+ 352,
6259
+ 348,
6260
+ 345
6261
+ ],
6262
+ "29_7": [
6263
+ 347,
6264
+ 342,
6265
+ 344,
6266
+ 343,
6267
+ 349,
6268
+ 346,
6269
+ 350,
6270
+ 352,
6271
+ 351,
6272
+ 348,
6273
+ 345
6274
+ ],
6275
+ "29_15": [
6276
+ 344,
6277
+ 342,
6278
+ 347,
6279
+ 343,
6280
+ 350,
6281
+ 351,
6282
+ 349,
6283
+ 346,
6284
+ 352,
6285
+ 348,
6286
+ 345
6287
+ ],
6288
+ "29_17": [
6289
+ 344,
6290
+ 349,
6291
+ 350,
6292
+ 347,
6293
+ 351,
6294
+ 342,
6295
+ 343,
6296
+ 346,
6297
+ 348,
6298
+ 352,
6299
+ 345
6300
+ ],
6301
+ "29_18": [
6302
+ 343,
6303
+ 342,
6304
+ 344,
6305
+ 349,
6306
+ 347,
6307
+ 350,
6308
+ 352,
6309
+ 346,
6310
+ 351,
6311
+ 348,
6312
+ 345
6313
+ ],
6314
+ "29_19": [
6315
+ 344,
6316
+ 342,
6317
+ 349,
6318
+ 350,
6319
+ 351,
6320
+ 346,
6321
+ 343,
6322
+ 347,
6323
+ 352,
6324
+ 348,
6325
+ 345
6326
+ ],
6327
+ "29_22": [
6328
+ 347,
6329
+ 346,
6330
+ 344,
6331
+ 342,
6332
+ 349,
6333
+ 343,
6334
+ 350,
6335
+ 352,
6336
+ 351,
6337
+ 348,
6338
+ 345
6339
+ ],
6340
+ "29_28": [
6341
+ 343,
6342
+ 350,
6343
+ 342,
6344
+ 344,
6345
+ 349,
6346
+ 347,
6347
+ 346,
6348
+ 351,
6349
+ 348,
6350
+ 345,
6351
+ 352
6352
+ ],
6353
+ "29_29": [
6354
+ 343,
6355
+ 344,
6356
+ 347,
6357
+ 346,
6358
+ 342,
6359
+ 350,
6360
+ 349,
6361
+ 348,
6362
+ 352,
6363
+ 345,
6364
+ 351
6365
+ ],
6366
+ "29_32": [
6367
+ 346,
6368
+ 350,
6369
+ 344,
6370
+ 347,
6371
+ 342,
6372
+ 349,
6373
+ 352,
6374
+ 351,
6375
+ 348,
6376
+ 345,
6377
+ 343
6378
+ ],
6379
+ "29_34": [
6380
+ 344,
6381
+ 347,
6382
+ 352,
6383
+ 343,
6384
+ 350,
6385
+ 346,
6386
+ 342,
6387
+ 348,
6388
+ 345,
6389
+ 349,
6390
+ 351
6391
+ ],
6392
+ "29_35": [
6393
+ 347,
6394
+ 344,
6395
+ 343,
6396
+ 342,
6397
+ 346,
6398
+ 348,
6399
+ 349,
6400
+ 345,
6401
+ 350,
6402
+ 352,
6403
+ 351
6404
+ ],
6405
+ "29_37": [
6406
+ 344,
6407
+ 343,
6408
+ 352,
6409
+ 342,
6410
+ 349,
6411
+ 347,
6412
+ 350,
6413
+ 351,
6414
+ 348,
6415
+ 346,
6416
+ 345
6417
+ ],
6418
+ "29_45": [
6419
+ 343,
6420
+ 350,
6421
+ 344,
6422
+ 347,
6423
+ 346,
6424
+ 351,
6425
+ 349,
6426
+ 348,
6427
+ 342,
6428
+ 352,
6429
+ 345
6430
+ ],
6431
+ "29_48": [
6432
+ 350,
6433
+ 344,
6434
+ 347,
6435
+ 352,
6436
+ 342,
6437
+ 343,
6438
+ 351,
6439
+ 349,
6440
+ 346,
6441
+ 348,
6442
+ 345
6443
+ ],
6444
+ "29_49": [
6445
+ 346,
6446
+ 344,
6447
+ 342,
6448
+ 350,
6449
+ 351,
6450
+ 347,
6451
+ 349,
6452
+ 352,
6453
+ 345,
6454
+ 343,
6455
+ 348
6456
+ ],
6457
+ "29_129": [
6458
+ 343,
6459
+ 344,
6460
+ 347,
6461
+ 346,
6462
+ 342,
6463
+ 350,
6464
+ 349,
6465
+ 348,
6466
+ 352,
6467
+ 345,
6468
+ 351
6469
+ ]
6470
+ }
annotations/annotation_json/step_annotations.json ADDED
The diff for this file is too large to render. See raw diff
 
annotations/annotation_json/step_idx_description.json ADDED
@@ -0,0 +1,352 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "3": "Coat -Coat a 6-oz. ramekin cup with cooking spray",
3
+ "1": "Pour-Pour 1 egg into the ramekin cup",
4
+ "4": "Microwave-Microwave the ramekin cup uncovered on high for 30 seconds",
5
+ "12": "Cut -Cut the English muffin into two pieces with a knife",
6
+ "11": "stir-stir the ramekin cup",
7
+ "8": "Microwave -Continue to Microwave for 15-30 more seconds or until the egg is almost set",
8
+ "6": "Top -Top cup with 1 tablespoon of salsa",
9
+ "5": "sprinkle -sprinkle 1 tablespoon of cheese on cup",
10
+ "10": "Microwave -Microwave just until cheese melts, about 10 seconds",
11
+ "9": "Line -Line the bottom piece of the English muffin with lettuce",
12
+ "2": "Place -Place the egg from the cup over the lettuce",
13
+ "7": "replace -replace the top of the English muffin",
14
+ "21": "Place-Place 5 meatballs in a Microwave-safe plate",
15
+ "14": "Peel-Peel 1 garlic clove",
16
+ "23": "Mix-Mix 1/4 cup sweet-and-sour sauce and 1/2 teaspoon soy sauce in a small bowl",
17
+ "17": "Peel-Peel one medium onion",
18
+ "16": "Cut-Cut 1/8 garlic clove",
19
+ "26": "Mince-Mince 1/8 garlic clove",
20
+ "27": "cut-Cut onion into two pieces",
21
+ "22": "Cut-Cut 1/4 medium carrot into short, thin strips",
22
+ "19": "Slice-Slice 1/8 medium onion",
23
+ "24": "Top-Top the plate with the carrots, onion, garlic and 1/4 tsp pepper powder",
24
+ "15": "Pour-Pour the sauces over the meatballs",
25
+ "20": "Microwave-Microwave the plate, covered, on high for 1.5 minutes",
26
+ "18": "Stir-Stir the contents in the microwave with a spoon",
27
+ "25": "Microwave-Microwave for 1 more minute",
28
+ "36": "Take-Take a microwavable mug",
29
+ "35": "add-Measure 1/16 teaspoon of baking soda and add it to the mug",
30
+ "28": "add-Measure 1/8 teaspoon of salt and add it to the mug",
31
+ "40": "add-Measure 1/8 teaspoon of baking powder and add it to the mug",
32
+ "33": "add-Measure 4 tablespoons of flour and add it to the mug",
33
+ "38": "Stir-Stir the contents in the mug well",
34
+ "41": "Add-Add in 3 tablespoons of milk to the mug",
35
+ "34": "Add-1 tablespoon of olive oil to the mug",
36
+ "37": "Mix-Mix the contents of the mug thoroughly. (There might be some lumps, but that is ok.)",
37
+ "30": "Take-Take 1 tablespoon of marinara sauce",
38
+ "31": "spread-spread marinara sauce around the surface of the batter",
39
+ "39": "Sprinkle-Sprinkle 1 generous tablespoon of mozzarella cheese on top of the sauce",
40
+ "29": "Sprinkle-Sprinkle dried Italian herbs inside the mug",
41
+ "32": "Microwave-Microwave for 1 minute 20 seconds, or until it rises and the toppings are bubbling",
42
+ "51": "Chop-Chop 1 garlic clove on a cutting board",
43
+ "44": "Remove-Remove the noodles from the package(Break Noodles / Keep them as a block)",
44
+ "47": "Peel-Peel 1 medium onion",
45
+ "46": "slice-slice 1/4 medium onion into pieces",
46
+ "54": "Put-Put all the Vegetables in a microwave-safe bowl",
47
+ "52": "Add-Add the noodles to the bowl",
48
+ "55": "cover-cover the noodles with water",
49
+ "49": "Cover-Cover with a lid (or paper towel) to prevent splattering",
50
+ "45": "Microwave-Microwave the ramen for 4 minutes",
51
+ "50": "Add-Add basil to the bowl",
52
+ "48": "Let-Let the noodles sit for about 1 minute after the microwave stops",
53
+ "53": "Add-Add chopped cilantro to the bowl",
54
+ "42": "Mix-Mix in the flavour packet to the bowl",
55
+ "43": "Stir-Stir noodles with a spoon or fork until the flavouring dissolves",
56
+ "68": "Measure-Measure 12 ounces of cold water",
57
+ "69": "Place-Place the dripper on top of a coffee mug",
58
+ "65": "Weigh-Weigh the coffee beans (0.8oz-0.12 oz)",
59
+ "67": "Grind-Grind the coffee beans until the coffee grounds are the consistency of coarse sand, about 20 seconds",
60
+ "62": "Prepare-Prepare the filter insert by folding the paper filter in half to create a semi-circle, and in half again to create a quarter-circle",
61
+ "70": "transfer-transfer water to a kettle",
62
+ "60": "Place-Place the paper filter in the dripper",
63
+ "64": "Boil-Boil the water. (While the water is boiling, assemble the filter cone)",
64
+ "59": "spread-spread open filter in dripper to create a cone",
65
+ "71": "check-Once the water has boiled, check the temperature of the water. (The water should be between 195-205 degrees Fahrenheit or between 91-96 degrees Celsius. If the water is too hot, let it cool briefly.)",
66
+ "58": "Transfer-Transfer the grounds to the filter cone",
67
+ "57": "Pour-Pour a small amount of water into the filter to wet the grounds",
68
+ "56": "Wait-Wait about 30 seconds for the coffee to bloom. (You will see small bubbles or foam on the coffee grounds during this step.)",
69
+ "61": "pour-Slowly pour the rest of the water over the grounds in a circular motion. Do not overfill beyond the top of the paper filter",
70
+ "66": "drain-Let the coffee drain completely into the mug before removing the dripper",
71
+ "63": "Discard-Discard the paper filter and coffee grounds",
72
+ "77": "add-Extract and add contents of an egg to a microwave-safe bowl",
73
+ "72": "Whisk-Whisk the egg",
74
+ "81": "Place-Place 8 inch tortilla on a cutting board",
75
+ "73": "Microwave-Microwave for 3 minutes, stirring in between",
76
+ "74": "Add-Add 1/2 tbsp sweet and sour sauce to the bowl",
77
+ "82": "Sprinkle-Sprinkle oregano in the bowl",
78
+ "80": "Add-Add 1 tbsp salsa to the bowl",
79
+ "76": "Mix-Mix the contents of the bowl well",
80
+ "79": "Pour-Pour egg mixture on top of the tortilla",
81
+ "75": "Sprinkle-Sprinkle 1 tbsp shredded cheddar cheese on top of the egg",
82
+ "78": "Roll-Roll the tortilla from one end to another into a log shape, about 1.5 inches thick. Roll it tight enough to prevent gaps but not so tight that the filling leaks",
83
+ "88": "Fill-Fill a microwave-safe mug with skimmed milk",
84
+ "89": "Microwave-Microwave the contents of the mug for 1 minute",
85
+ "90": "Add-Add 2 pieces of chocolate to the mug",
86
+ "84": "Add-Add 1/5 teaspoon cinnamon to the mug",
87
+ "87": "Add-Add 1 teaspoon of white sugar to the mug",
88
+ "85": "Mix-Mix the contents of the mug",
89
+ "83": "Heat-Heat the contents of the mug for 1 minute and serve",
90
+ "99": "Cut or tear-Cut or tear 1 slices of bread into bite-size pieces",
91
+ "94": "melt-In a large mug, melt 1 tablespoon of softened butter in the microwave for about 30 seconds",
92
+ "98": "Roll-Roll the butter around in the mug to coat it",
93
+ "101": "whisk-In the mug, whisk one egg with a fork until well blended",
94
+ "95": "Sprinkle-Sprinkle 1/4 teaspoon cinnamon over the egg",
95
+ "100": "Add-Add 1/4 teaspoon vanilla extract to the mug",
96
+ "93": "stir-stir the mug",
97
+ "92": "add-add bread pieces to the egg mixture in the mug, pressing the bread down into the egg",
98
+ "91": "Microwave-Microwave on high for 90 seconds until the egg is cooked through",
99
+ "97": "Put-Put the mug's contents on a plate",
100
+ "96": "cut-cut the contents on plate, and serve",
101
+ "115": "Place-Place 8-inch flour tortilla on cutting board",
102
+ "113": "scoop-Use a butter knife to scoop nut butter from the jar",
103
+ "112": "Spread-Spread nut butter onto the tortilla, leaving 1/2-inch uncovered at the edges",
104
+ "118": "Clean-Clean the knife by wiping it with a paper towel",
105
+ "111": "scoop-Use the knife to scoop jelly from the jar",
106
+ "107": "Spread-Spread jelly over the nut butter",
107
+ "104": "Clean-Clean the knife by wiping with a paper towel",
108
+ "116": "Roll-Roll the tortilla from one end to the other into a log shape, about 1.5 inches thick. Roll it tight enough to prevent gaps, but not so tight that the filling leaks",
109
+ "110": "Secure-Secure the rolled tortilla by inserting 5 toothpicks about 1 inch apart",
110
+ "114": "Trim-Trim the ends of the tortilla roll with the butter knife, leaving 1/2 inch margin between the last toothpick and the end of the roll",
111
+ "103": "Discard-Discard ends of the tortilla",
112
+ "106": "Slide-Slide floss under the tortilla, perpendicular to the length of the roll",
113
+ "117": "Place-Place the floss halfway between toothpicks",
114
+ "105": "Cross-Cross the floss's two ends over the tortilla roll's top",
115
+ "108": "pull-pull the floss ends in opposite directions to slice",
116
+ "102": "slicing-Continue slicing with floss to create 1 more pinwheel",
117
+ "109": "Place-Place the pinwheels on a plate",
118
+ "125": "Rinse-Rinse a tomato",
119
+ "122": "dry-gently dry it with a paper/tea towel",
120
+ "119": "Slice-Slice one tomato into about 1/2 inch thick slices",
121
+ "120": "Place-Place the thick slices of tomatoes on a platter, ensuring they only make a single layer",
122
+ "124": "Sprinkle-Sprinkle mozzarella cheese on top of the tomato throughout the platter",
123
+ "123": "Season-Season the tomato slices with salt",
124
+ "126": "Season-Season platter with 1/4 teaspoon black pepper",
125
+ "127": "Garnish-Garnish platter with italian seasoning",
126
+ "121": "Add-Add a drizzle of extra-virgin olive oil, about 1 tablespoon, over the entire platter",
127
+ "129": "Measure-Measure 2 cups of frozen corn",
128
+ "137": "Thaw-Thaw the frozen corn by putting it in a sieve and running it under cold water",
129
+ "132": "Add-Add the corn into a microwave-safe bowl",
130
+ "133": "Microwave-Microwave the corn for 2 minutes",
131
+ "138": "Add-Add 1 teaspoon of softened butter",
132
+ "130": "Add-1 teaspoon of pepper powder to the bowl",
133
+ "135": "stir-then stir the bowl",
134
+ "134": "Microwave-Microwave the corn for 3 more minutes",
135
+ "131": "Extract-Extract lime juice from 1/3 lime",
136
+ "136": "Add-Add 1 teaspoon salt to the bowl",
137
+ "128": "add-add lime juice to the bowl",
138
+ "145": "Peel-Peel 4 large garlic cloves",
139
+ "140": "mince-mince the garlic",
140
+ "149": "Take-Take 1 tomato",
141
+ "155": "Chop-Chop tomato roughly (anysize chunks are fine)",
142
+ "150": "puree-puree tomatoes without any water in a blender/mixer",
143
+ "154": "Heat-Heat 3 tbsp oil in a pan over medium heat",
144
+ "141": "Add-1/2 tsp cumin seeds to the pan",
145
+ "139": "Add-Add 1/4 tsp mustard to the pan",
146
+ "152": "add-When mustard and cumin seeds begin to sizzle, add minced garlic",
147
+ "151": "Lower-Lower the heat",
148
+ "148": "Saute-Saute the garlic for 2-3 minutes",
149
+ "147": "Add-Add 2 tbsp red chili powder to the pan",
150
+ "157": "mix-mix well contents of the pan",
151
+ "142": "Add-Add tomato puree to the pan",
152
+ "146": "Add-1/2 tsp salt to the pan",
153
+ "144": "Mix-Mix well tomato puree with contents in the pan",
154
+ "153": "simmer-Allow the mixture to simmer over low heat for 5 minutes or until the mixture becomes thick",
155
+ "143": "Take-Take the pan off the heat",
156
+ "156": "Transfer-Transfer it to a serving bowl",
157
+ "163": "Chop-Chop 1/4 medium onion",
158
+ "158": "Chop-Chop 1 tsp cilantro",
159
+ "169": "Chop-Chop 1/4 tomato",
160
+ "161": "Chop-Chop 1 green chilli",
161
+ "176": "Peel-Peel 2 garlic cloves",
162
+ "180": "Mince-Mince peeled garlic cloves",
163
+ "167": "Crack-Crack one egg in the bowl",
164
+ "177": "add-add 1 tbsp milk to the bowl",
165
+ "164": "add-add 1/3 tsp salt to the bowl",
166
+ "159": "Whisk-Whisk the egg mixture in the bowl",
167
+ "173": "Heat-Heat 2 tbsp oil in a heavy-bottomed or nonstick pan on medium heat",
168
+ "178": "add-add 1/3 tsp salt to the pan",
169
+ "179": "add-add chopped onions to the pan",
170
+ "166": "Saute-Saute the onions on medium heat until they are soft and translucent",
171
+ "160": "Add-Add garlic to the pan",
172
+ "162": "Add-Add chilli to the pan",
173
+ "165": "Cook-Cook for 1 minute, mixing everything",
174
+ "168": "Add-Add 1/8 tsp of turmeric to the pan",
175
+ "175": "Add-Add tomatoes to the pan",
176
+ "170": "Cook-Cook covered for 1 minute or until the tomatoes soften",
177
+ "172": "pour-Slowly pour the whisked eggs into the pan",
178
+ "171": "mixing-Keep mixing with a spatula for 3 minutes or until the eggs are almost cooked",
179
+ "174": "Garnish-Garnish with 1 tbsp chopped cilantro and serve",
180
+ "183": "whisk-In a mixing bowl, whisk 1 cup of chilled curd until smooth. Use fresh homemade or packaged curd",
181
+ "181": "Add-1/4 teaspoon of red chilli powder to the bowl",
182
+ "189": "Rinse-Rinse 1 medium sized cucumber",
183
+ "191": "Add-1/2 teaspoon of chaat masala powder to the bowl",
184
+ "182": "peel-peel the cucumber",
185
+ "188": "Add-Add 1 teaspoon of cumin powder to the bowl",
186
+ "185": "chop or grate-chop or grate the cucumber",
187
+ "187": "add-add 1 tablespoon of chopped cilantro leaves to the bowl",
188
+ "184": "Add-1/4 teaspoon salt to the bowl",
189
+ "190": "Add-Add the chopped or grated cucumber to the whisked curd",
190
+ "186": "Combine-Combine all the ingredients in the bowl",
191
+ "203": "Spiralize-Spiralize 1 medium zucchini into thin noodles using a spiralizer",
192
+ "200": "Peel-Peel 1 garlic cloves",
193
+ "196": "Heat-Heat a large pan on medium heat",
194
+ "204": "Melt-Melt 1 tablespoons of softened butter",
195
+ "199": "Add-Add 1 large minced garlic cloves to the pan",
196
+ "202": "Cook-Cook garlic until fragrant (about 1 minutes). Be careful not to burn garlic",
197
+ "201": "Add-Add the zucchini noodles",
198
+ "193": "Add-1/6 cup grated parmesan cheese",
199
+ "198": "season-season with salt",
200
+ "194": "season-pepper to taste",
201
+ "192": "Cook-Cook for 2 minutes or until the zoodles are done",
202
+ "197": "Remove-Remove from heat",
203
+ "195": "Top-Top with more parmesan if desired",
204
+ "206": "Rinse-Rinse 3 mushrooms under cold water",
205
+ "212": "Chop-Chop 1 shallot",
206
+ "205": "pat-pat rinsed mushrooms dry with a paper towel",
207
+ "214": "Pull-Pull out mushroom stems",
208
+ "210": "Slice-Slice the mushrooms",
209
+ "211": "mince-mince garlic cloves",
210
+ "215": "Heat-Heat 1 tbsp olive oil in a large skillet over medium-high heat",
211
+ "208": "add-Once the pan is hot, add the mushrooms",
212
+ "213": "cook-cook for 3-5 minutes, stirring often, until mushrooms start to soften and brown",
213
+ "209": "Add-Add chopped shallot to the pan",
214
+ "207": "cook-cook the pan, often stirring, for 1 minute",
215
+ "218": "Add-Add 2 cloves of minced garlic to the pan",
216
+ "217": "Add-1/4 tbsp balsamic vinegar to the pan",
217
+ "219": "Season-pepper on pan to taste",
218
+ "220": "Season-Season pan with salt",
219
+ "216": "Transfer-Transfer the contents of the pan to a serving dish",
220
+ "225": "Add-Add 1 banana to a blender",
221
+ "229": "Add-1 egg to a blender",
222
+ "221": "Add-1/2 tsp baking powder to a blender",
223
+ "232": "Add-1 heaped tbsp flour to a blender",
224
+ "227": "blitz-blitz the blender for 20 seconds",
225
+ "223": "Melt-Melt a small knob of butter in a non-stick frying pan over low-medium heat",
226
+ "231": "Pour-Pour three little puddles straight from the blender into the frying pan",
227
+ "226": "Cook-Cook for 1 min or until the tops start to bubble",
228
+ "233": "Chop-Chop 1 strawberry",
229
+ "228": "Flip-Flip the pancakes with a fork or a fish slice spatula",
230
+ "230": "cook-cook for 20-30 seconds more",
231
+ "234": "Transfer-Transfer to a plate",
232
+ "222": "Serve-Serve the pancakes with chopped strawberries",
233
+ "224": "splash-splash maple syrup on plate",
234
+ "247": "Take-Take a tomato",
235
+ "237": "Chop-Chop 2 tbsp cilantro",
236
+ "246": "Cut-Cut tomato into two pieces",
237
+ "239": "crack-crack one egg in a bowl",
238
+ "242": "add-add the chopped cilantro to the bowl",
239
+ "249": "add-1/2 tsp ground black pepper to the bowl",
240
+ "248": "Beat-Beat the contents of the bowl",
241
+ "235": "Heat-Heat 1 tbsp oil in a non-stick frying pan",
242
+ "240": "cook-cook the tomatoes cut-side down until they start to soften and colour",
243
+ "244": "Scoop-Scoop the tomatoes from the pan",
244
+ "236": "put-put tomatoes on a serving plate",
245
+ "241": "Pour-Pour the egg mixture into the pan",
246
+ "238": "stir-stir gently with a wooden spoon so the egg that sets on the base of the pan moves to enable the uncooked egg to flow into the space",
247
+ "245": "Stop-Stop stirring when it's nearly cooked to allow it to set into an omelette",
248
+ "243": "Transfer-Transfer omelette to the plate and serve with the tomatoes",
249
+ "273": "Take-Take 5 in number broccoli florets",
250
+ "268": "Add-Add 1/8 teaspoon black pepper to the bowl",
251
+ "250": "Add-Add 1/8 cup soy sauce to the bowl",
252
+ "270": "Take-Take 2 cremini mushrooms",
253
+ "269": "Add-Add 1/6 cup water the bowl",
254
+ "254": "Add-Add 1 teaspoon cornstarch to the bowl",
255
+ "257": "Peel-Peel 2 cloves of garlic",
256
+ "267": "Add-Add 1/2 tablespoon minced ginger to the bowl",
257
+ "262": "mince-mince garlic",
258
+ "271": "Take-Take 1 bell pepper",
259
+ "255": "Add-Add 2 cloves minced garlic to the bowl",
260
+ "259": "slice-slice mushrooms",
261
+ "252": "Add-Add 1 tablespoon honey to the bowl",
262
+ "260": "Whisk-Whisk the contents of bowl",
263
+ "251": "Set-Set aside the sauce mixture",
264
+ "263": "slice-slice 1/3 of the bell pepper",
265
+ "266": "Heat-Heat 2 tablespoons olive oil in a skillet over medium-high heat",
266
+ "258": "Add-add sliced mushrooms to the skillet",
267
+ "265": "Add-Add broccoli to the skillet",
268
+ "253": "cook-cook, stirring often, for 4 minutes. If the pan gets too hot on medium-high, turn the heat down to medium",
269
+ "261": "Add-Add bell pepper to the skillet",
270
+ "274": "continue cooking-continue cooking, stirring often, for 2-3 minutes, until vegetables are crisp-tender",
271
+ "272": "Whisk-Whisk the sauce again to recombine the ingredients",
272
+ "256": "Pour-Pour the sauce into the skillet",
273
+ "264": "cook-cook, stirring, for 1 minute until the sauce thickens",
274
+ "275": "Cut-Cut 1/4 block or 3 ounces of fresh tofu into large cubes (about 1 in x 1 in)",
275
+ "293": "pat-pat tofu dry with a towel",
276
+ "291": "Add-Add 1 tablespoon of olive oil to a non-stick pan",
277
+ "279": "add-add the tofu cubes to the pan",
278
+ "286": "add-add 1/4 tsp salt to the pan",
279
+ "276": "Turn-Turn on the heat to medium",
280
+ "292": "Cook-Cook 5 to 6 minutes until tofu cubes are lightly browned on the bottom",
281
+ "280": "remove-Briefly remove the pan from the heat to reduce spitting",
282
+ "285": "Flip-Flip the tofu with tongs",
283
+ "287": "Return-Return the heat to medium",
284
+ "290": "cook-cook until tofu turns brown",
285
+ "282": "remove-Briefly remove from the heat again",
286
+ "277": "drizzle-drizzle 1 tablespoon soy sauce (watch for spitting) on the pan",
287
+ "278": "drizzle-drizzle with the 1 tablespoons sesame oil on the pan",
288
+ "284": "Return-Return to low heat",
289
+ "289": "cook-cook pan for 2 minutes",
290
+ "281": "flip-flip tofu on the pan",
291
+ "288": "cook-cook pan for 2 minutes until the colour is darkened",
292
+ "283": "Transfer-Transfer to a serving dish",
293
+ "304": "Measure and add-1/4 tsp baking powder to the bowl",
294
+ "303": "Place-Place the paper cupcake liner inside the mug",
295
+ "310": "Measure and add-a pinch of salt to the mixing bowl",
296
+ "297": "Measure and add-1.5 tbsp sugar to the mixing bowl",
297
+ "301": "Set-Set aside the lined mug",
298
+ "299": "Measure and add-Measure and add 2 tbsp flour to the mixing bowl",
299
+ "308": "Whisk-Whisk to combine mixture of flour, sugar and baking powder in the bowl",
300
+ "296": "Measure and add-2 tbsp water to the bowl",
301
+ "313": "Measure and add-1/4 tsp vanilla extract to the bowl",
302
+ "300": "Measure and add-Measure and add 2 tsp vegetable oil to the bowl",
303
+ "294": "Whisk-Whisk batter until no lumps remain",
304
+ "307": "Pour-Pour batter into prepared mug",
305
+ "312": "Microwave-Microwave the mug and batter on high power for 60 seconds. Check if the cake is done by inserting and toothpick into the center of the cake and then removing it. If wet batter clings to the toothpick, microwave for an additional 5 seconds. If the toothpick comes out clean, continue",
306
+ "309": "Invert-Invert the mug to release the cake onto a plate",
307
+ "305": "Allow-Allow to cool until it is no longer hot to the touch",
308
+ "295": "remove-then carefully remove the paper liner",
309
+ "298": "Scoop-While the cake is cooling, prepare to pipe the frosting. Scoop 4 spoonfuls of chocolate frosting into a zip-top bag",
310
+ "311": "seal-seal zip top bag, removing as much air as possible",
311
+ "306": "cut-Use scissors to cut one corner from the bag to create a small opening 1/4 inch in diameter",
312
+ "302": "Squeeze-Squeeze the frosting through the opening to apply small dollops of frosting to the plate in a circle around the base of the cake",
313
+ "321": "Chop-Chop 1/4 red bell pepper into tiny bits",
314
+ "322": "Place-Place the chopped pepper in the microwave-safe bowl",
315
+ "316": "Add-Add 1/3 cup cheddar cheese to a microwave-safe cup",
316
+ "320": "Add-Add 1 tablespoons of water to the bowl",
317
+ "323": "Melt-Melt the cheese by microwaving cup for 30 sec. (Check after 30 seconds and microwave for 10 seconds more if needed)",
318
+ "318": "Microwave-Microwave the bowl, covered, for 2 minutes",
319
+ "317": "Mix-Mix the cheese and red bell pepper in the bowl",
320
+ "315": "Add-Add 1/4 teaspoon salt to the bowl",
321
+ "319": "Add-Add 1/4 teaspoon pepper to the bowl",
322
+ "314": "add-add 1/2 tbsp softened butter to the bowl",
323
+ "324": "Mix-Mix all the ingredients of the bowl well",
324
+ "335": "Take-Take 1 ripe avocado",
325
+ "336": "Open-Open a can of tuna",
326
+ "328": "drain-drain excess water from can",
327
+ "329": "Lay-Lay out 2 large lettuce leaves",
328
+ "341": "cut-cut avocado into thin slices",
329
+ "327": "Add-1/4 cup mayonnaise to the bowl",
330
+ "340": "Chop-Chop 1 scallion",
331
+ "325": "place-place avocado slices on each leaf",
332
+ "339": "Add-1 tsp Sriracha sauce to the bowl",
333
+ "333": "Add-add chopped scallion to the bowl",
334
+ "334": "Add-Add 1 can drained tuna to the bowl",
335
+ "331": "Mix-Mix the contents of the bowl",
336
+ "338": "Season-Season bowl with 1/4 tsp salt",
337
+ "326": "Season-season 1/4 tsp pepper on the bowl",
338
+ "332": "top-top lettuce leaves with the tuna mixture",
339
+ "330": "Roll-Roll up the lettuce wraps",
340
+ "337": "secure-secure the wrap with a toothpick",
341
+ "342": "add-1/8 cup shredded mozzarella to a bowl",
342
+ "343": "add-1/4 tsp salt to a bowl",
343
+ "346": "add-1/4 tsp pepper to a bowl",
344
+ "344": "Slice-Slice two 1/2 inch thick rounds from a baguette (slice slanted)",
345
+ "349": "Brush-Brush 2 slices of baguette with olive oil on both sides",
346
+ "352": "Toast-Toast both sides of the slices on the pan for 2 to 3 minutes until lightly charred and crispy and transfer the slices to a plate",
347
+ "350": "Cut-Cut 1/4 cup of cherry tomatoes into halves",
348
+ "347": "add-1/16 cup basil to a bowl",
349
+ "351": "add-In a bowl, add the cut cherry tomatoes",
350
+ "348": "Combine-Combine the contents of the bowl",
351
+ "345": "Spoon-Spoon the mixture from the bowl onto the bread"
352
+ }
annotations/data_splits/environment_data_split_combined.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"train": ["1_20", "1_14", "1_36", "1_37", "1_136", "1_10", "1_42", "1_43", "1_143", "1_28", "1_30", "10_16", "10_18", "10_42", "10_46", "10_48", "10_50", "10_31", "12_2", "12_5", "12_9", "12_10", "12_12", "12_13", "12_15", "12_38", "12_6", "12_43", "12_48", "12_26", "13_5", "13_9", "13_14", "13_18", "13_20", "13_12", "13_45", "13_38", "13_31", "15_8", "15_4", "15_5", "15_33", "15_37", "15_41", "15_17", "15_19", "15_28", "15_29", "16_1", "16_23", "16_2", "16_35", "16_40", "16_42", "16_44", "16_18", "16_28", "17_3", "17_5", "17_8", "17_11", "17_19", "17_20", "17_21", "17_49", "17_45", "17_37", "18_24", "18_19", "18_2", "18_3", "18_11", "18_49", "18_27", "18_28", "18_31", "2_19", "2_13", "2_22", "2_3", "2_4", "2_38", "2_41", "2_42", "2_26", "2_28", "20_9", "20_14", "20_16", "20_19", "20_22", "20_32", "20_47", "20_48", "20_26", "20_29", "21_8", "21_25", "21_11", "21_15", "21_3", "21_37", "21_103", "21_44", "21_46", "21_14", "21_47", "21_50", "22_24", "22_21", "22_13", "22_2", "22_38", "22_40", "22_10", "22_26", "23_1", "23_19", "23_17", "23_23", "23_24", "23_32", "23_39", "25_2", "25_3", "25_6", "25_40", "25_11", "25_13", "25_48", "25_22", "26_17", "26_29", "26_30", "27_9", "27_17", "27_15", "27_34", "27_3", "27_37", "27_45", "27_29", "28_10", "28_7", "28_42", "28_44", "28_45", "28_14", "28_49", "28_50", "28_25", "28_26", "28_28", "28_29", "29_18", "29_6", "29_7", "29_32", "29_5", "29_45", "29_48", "29_49", "3_2", "3_11", "3_5", "3_36", "3_46", "3_14", "3_49", "3_22", "4_2", "4_7", "4_9", "4_17", "4_22", "4_24", "4_35", "4_36", "4_40", "4_44", "4_30", "5_24", "5_3", "5_35", "5_42", "5_27", "5_37", "7_1", "7_5", "7_32", "7_35", "7_38", "7_135", "7_44", "7_48", "7_50", "7_24", "8_19", "8_3", "8_20", "8_15", "8_35", "8_40", "8_44", "8_45", "8_26", "8_30", "9_2", "9_4", "9_12", "9_13", "9_19", "9_25", "9_108", "9_36"], "val": ["1_25", "1_19", "1_33", "1_49", "10_6", "10_26", "10_47", "10_7", "12_16", "12_17", "12_19", "12_41", "12_51", "13_24", "13_41", "13_32", "13_44", "15_2", "15_18", "15_46", "15_30", "16_26", "16_39", "17_10", "17_23", "17_14", "17_15", "17_40", "17_29", "18_33", "18_101", "18_41", "2_8", "2_5", "2_46", "20_17", "20_25", "20_44", "20_39", "21_19", "21_32", "21_43", "21_28", "21_29", "22_4", "22_6", "22_32", "22_37", "22_41", "22_137", "22_31", "23_5", "23_6", "23_12", "23_16", "23_18", "23_26", "25_1", "25_109", "25_5", "25_9", "25_41", "25_42", "25_4", "26_19", "26_4", "26_34", "26_36", "26_39", "26_136", "26_42", "26_46", "26_18", "26_24", "27_18", "27_4", "27_13", "27_49", "27_26", "27_38", "27_31", "28_24", "28_3", "28_38", "29_129", "29_34", "29_35", "29_37", "29_28", "29_29", "3_18", "3_13", "3_34", "3_12", "3_50", "4_122", "4_3", "4_32", "4_43", "5_19", "5_11", "5_4", "5_22", "5_44", "5_15", "7_18", "7_19", "8_16", "8_50", "8_11", "8_31", "9_24", "9_22", "9_15", "9_47"], "test": ["1_7", "1_32", "1_34", "10_24", "12_119", "13_36", "15_39", "16_17", "16_10", "16_3", "16_20", "16_27", "17_16", "17_43", "17_28", "17_36", "18_8", "18_12", "18_45", "2_17", "2_30", "2_47", "21_24", "21_17", "22_8", "22_30", "23_9", "23_41", "23_38", "26_20", "26_22", "26_6", "26_7", "28_16", "28_2", "28_21", "29_19", "29_22", "29_15", "29_17", "4_20", "4_5", "5_2", "5_18", "5_28", "7_2", "7_3", "7_26", "7_30", "8_25", "8_33", "9_8", "9_45"]}
annotations/data_splits/environment_data_split_normal.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"train": ["1_20", "1_14", "10_16", "10_18", "12_2", "12_5", "12_9", "12_10", "12_12", "12_13", "12_15", "13_5", "13_9", "13_14", "13_18", "13_20", "15_8", "15_4", "15_5", "16_1", "16_23", "17_3", "17_5", "17_8", "17_11", "17_19", "17_20", "17_21", "18_24", "18_19", "2_19", "2_13", "2_22", "20_9", "20_14", "20_16", "20_19", "20_22", "21_8", "21_25", "21_11", "21_15", "22_24", "22_21", "22_13", "23_1", "23_19", "23_17", "23_23", "25_2", "25_3", "25_6", "26_17", "27_9", "27_17", "27_15", "28_10", "28_7", "29_18", "29_6", "29_7", "3_2", "3_11", "3_5", "4_2", "4_7", "4_9", "4_17", "4_22", "4_24", "5_24", "5_3", "7_1", "7_5", "8_19", "8_3", "8_20", "8_15", "9_2", "9_4", "9_12", "9_13", "9_19", "9_25"], "val": ["1_25", "1_19", "10_6", "12_16", "12_17", "12_19", "15_2", "15_18", "17_10", "17_23", "17_14", "17_15", "2_8", "2_5", "20_17", "21_19", "22_4", "22_6", "23_5", "23_6", "23_12", "23_16", "23_18", "25_1", "25_109", "25_5", "25_9", "26_19", "26_4", "27_18", "27_4", "27_13", "28_24", "28_3", "3_18", "3_13", "4_122", "4_3", "5_19", "5_11", "5_4", "5_22", "7_18", "7_19", "8_16", "9_24", "9_22", "9_15"], "test": ["1_7", "10_24", "12_119", "16_17", "16_10", "16_3", "16_20", "17_16", "18_8", "18_12", "2_17", "21_24", "21_17", "22_8", "23_9", "26_20", "26_22", "26_6", "26_7", "28_16", "28_2", "28_21", "29_19", "29_22", "29_15", "4_20", "4_5", "5_2", "5_18", "7_2", "7_3", "8_25"]}
annotations/data_splits/person_data_split_combined.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"train": ["1_25", "1_7", "1_34", "1_36", "1_37", "1_10", "1_30", "10_16", "10_24", "10_48", "10_46", "10_47", "12_2", "12_9", "12_10", "12_12", "12_13", "12_16", "12_19", "12_119", "12_38", "12_41", "12_6", "13_18", "13_20", "13_5", "13_41", "13_36", "13_45", "13_44", "15_8", "15_18", "15_5", "15_33", "15_37", "15_39", "15_41", "15_17", "15_19", "15_28", "15_30", "16_17", "16_10", "16_3", "16_40", "16_44", "17_8", "17_10", "17_11", "17_16", "17_20", "17_36", "17_37", "17_40", "17_43", "17_45", "17_49", "17_28", "17_29", "18_24", "18_19", "18_12", "18_33", "18_41", "18_11", "18_45", "18_49", "18_28", "18_31", "2_17", "2_13", "2_22", "2_38", "2_42", "2_46", "2_26", "2_28", "2_30", "20_16", "20_9", "20_14", "20_17", "20_47", "20_29", "20_39", "21_8", "21_17", "21_32", "21_37", "21_44", "21_46", "21_50", "21_28", "22_21", "22_13", "22_2", "22_37", "22_41", "22_137", "22_26", "22_30", "22_31", "23_1", "23_5", "23_6", "23_9", "23_16", "23_24", "23_41", "23_38", "23_39", "25_1", "25_109", "25_5", "25_11", "25_22", "26_4", "26_6", "26_17", "26_19", "26_20", "26_22", "26_18", "26_34", "26_30", "26_36", "27_9", "27_18", "27_13", "27_17", "27_45", "27_29", "27_38", "27_31", "28_2", "28_3", "28_7", "28_10", "28_16", "28_38", "28_45", "28_14", "28_49", "28_50", "29_19", "29_15", "29_6", "29_7", "29_32", "29_34", "29_35", "29_37", "29_45", "29_17", "29_49", "3_18", "3_34", "3_36", "3_46", "3_49", "3_22", "4_2", "4_7", "4_20", "4_22", "4_122", "4_35", "4_36", "4_44", "5_2", "5_4", "5_18", "5_19", "5_22", "5_35", "5_42", "5_44", "5_15", "5_27", "7_2", "7_38", "7_44", "7_48", "7_50", "7_24", "7_30", "8_3", "8_15", "8_16", "8_19", "8_20", "8_25", "8_33", "8_35", "8_11", "8_44", "8_30", "8_31", "9_2", "9_12", "9_13", "9_24", "9_25", "9_45"], "val": ["1_32", "1_43", "10_6", "10_42", "10_31", "10_7", "12_48", "12_51", "12_43", "13_14", "13_32", "13_38", "13_31", "15_2", "15_4", "16_1", "16_23", "16_26", "16_27", "16_28", "17_5", "17_14", "17_23", "18_2", "18_101", "2_19", "2_5", "2_3", "2_4", "2_47", "20_19", "20_32", "20_25", "21_24", "21_25", "21_15", "21_29", "21_14", "22_8", "22_6", "22_40", "22_38", "23_19", "23_23", "23_26", "25_3", "25_4", "27_49", "27_26", "27_3", "28_24", "28_21", "28_28", "28_29", "28_44", "29_48", "29_29", "29_5", "3_13", "3_11", "3_5", "3_12", "4_9", "4_3", "4_5", "4_17", "4_40", "5_11", "5_24", "5_3", "5_28", "5_37", "7_1", "7_18", "7_5", "7_32", "7_26", "8_26", "8_50", "8_45", "9_8", "9_108", "9_36", "9_47"], "test": ["1_19", "1_20", "1_14", "1_33", "1_136", "1_42", "1_143", "1_49", "1_28", "10_18", "10_26", "10_50", "12_17", "12_5", "12_15", "12_26", "13_9", "13_24", "13_12", "15_29", "15_46", "16_20", "16_2", "16_35", "16_39", "16_42", "16_18", "17_19", "17_3", "17_21", "17_15", "18_8", "18_27", "18_3", "2_8", "2_41", "20_22", "20_48", "20_26", "20_44", "21_19", "21_11", "21_43", "21_3", "21_103", "21_47", "22_24", "22_4", "22_32", "22_10", "23_17", "23_18", "23_12", "23_32", "25_9", "25_2", "25_6", "25_40", "25_41", "25_42", "25_13", "25_48", "26_7", "26_39", "26_136", "26_42", "26_46", "26_24", "26_29", "27_4", "27_15", "27_34", "27_37", "28_25", "28_26", "28_42", "29_18", "29_22", "29_129", "29_28", "3_2", "3_50", "3_14", "4_24", "4_32", "4_43", "4_30", "7_19", "7_3", "7_35", "7_135", "8_40", "9_19", "9_4", "9_22", "9_15"]}
annotations/data_splits/person_data_split_normal.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"train": ["1_25", "1_7", "10_16", "10_24", "12_2", "12_9", "12_10", "12_12", "12_13", "12_16", "12_19", "12_119", "13_18", "13_20", "13_5", "15_8", "15_18", "15_5", "16_17", "16_10", "16_3", "17_8", "17_10", "17_11", "17_16", "17_20", "18_24", "18_19", "18_12", "2_17", "2_13", "2_22", "20_16", "20_9", "20_14", "20_17", "21_8", "21_17", "22_21", "22_13", "23_1", "23_5", "23_6", "23_9", "23_16", "25_1", "25_109", "25_5", "26_4", "26_6", "26_17", "26_19", "26_20", "26_22", "27_9", "27_18", "27_13", "27_17", "28_2", "28_3", "28_7", "28_10", "28_16", "29_19", "29_15", "29_6", "29_7", "3_18", "4_2", "4_7", "4_20", "4_22", "4_122", "5_2", "5_4", "5_18", "5_19", "5_22", "7_2", "8_3", "8_15", "8_16", "8_19", "8_20", "8_25", "9_2", "9_12", "9_13", "9_24", "9_25"], "val": ["10_6", "13_14", "15_2", "15_4", "16_1", "16_23", "17_5", "17_14", "17_23", "2_19", "2_5", "20_19", "21_24", "21_25", "21_15", "22_8", "22_6", "23_19", "23_23", "25_3", "28_24", "28_21", "3_13", "3_11", "3_5", "4_9", "4_3", "4_5", "4_17", "5_11", "5_24", "5_3", "7_1", "7_18", "7_5"], "test": ["1_19", "1_20", "1_14", "10_18", "12_17", "12_5", "12_15", "13_9", "16_20", "17_19", "17_3", "17_21", "17_15", "18_8", "2_8", "20_22", "21_19", "21_11", "22_24", "22_4", "23_17", "23_18", "23_12", "25_9", "25_2", "25_6", "26_7", "27_4", "27_15", "29_18", "29_22", "3_2", "4_24", "7_19", "7_3", "9_19", "9_4", "9_22", "9_15"]}
annotations/data_splits/recipes_data_split_combined.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"train": [], "val": [], "test": []}
annotations/data_splits/recipes_data_split_normal.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"train": [], "val": [], "test": []}
annotations/data_splits/recordings_data_split_combined.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"train": ["1_19", "1_14", "1_7", "1_32", "1_33", "1_34", "1_36", "1_10", "1_28", "1_30", "10_16", "10_6", "10_26", "10_31", "10_42", "10_7", "12_2", "12_5", "12_9", "12_10", "12_12", "12_13", "12_38", "12_41", "12_26", "12_6", "13_9", "13_5", "13_14", "13_32", "13_36", "13_12", "13_24", "13_31", "15_2", "15_4", "15_5", "15_33", "15_17", "15_19", "15_28", "15_29", "15_30", "16_1", "16_10", "16_3", "16_2", "16_35", "16_18", "16_26", "16_27", "16_28", "17_3", "17_5", "17_8", "17_10", "17_11", "17_14", "17_15", "17_37", "17_28", "17_29", "17_36", "18_8", "18_12", "18_2", "18_3", "18_11", "18_27", "18_28", "18_31", "2_8", "2_13", "2_5", "2_3", "2_4", "2_38", "2_26", "2_28", "2_30", "20_16", "20_9", "20_14", "20_32", "20_25", "20_26", "20_29", "21_8", "21_17", "21_11", "21_15", "21_32", "21_3", "21_37", "21_43", "21_14", "21_28", "21_29", "22_8", "22_4", "22_6", "22_32", "22_2", "22_10", "22_26", "22_30", "22_31", "23_1", "23_5", "23_6", "23_9", "23_12", "23_16", "23_24", "23_26", "23_32", "25_1", "25_2", "25_3", "25_5", "25_11", "25_4", "25_13", "25_22", "26_17", "26_4", "26_6", "26_7", "26_34", "26_36", "26_18", "26_24", "26_29", "26_30", "27_9", "27_4", "27_13", "27_34", "27_3", "27_26", "27_29", "27_31", "28_10", "28_2", "28_3", "28_7", "28_38", "28_14", "28_25", "28_26", "28_28", "28_29", "29_15", "29_6", "29_7", "29_32", "29_34", "29_35", "29_5", "29_17", "29_28", "29_29", "3_2", "3_11", "3_5", "3_34", "3_12", "3_14", "3_22", "4_2", "4_3", "4_5", "4_7", "4_9", "4_17", "4_32", "4_35", "4_36", "4_30", "5_11", "5_2", "5_3", "5_4", "5_35", "5_27", "5_28", "5_15", "7_1", "7_2", "7_3", "7_32", "7_35", "7_38", "7_24", "7_26", "7_30", "8_16", "8_3", "8_15", "8_33", "8_35", "8_11", "8_26", "8_30", "8_31", "9_2", "9_4", "9_12", "9_13", "9_15", "9_8", "9_36", "9_45"], "val": ["1_20", "1_42", "1_37", "10_46", "12_16", "12_15", "12_43", "13_18", "13_38", "15_8", "15_37", "15_39", "16_17", "16_40", "16_39", "17_16", "17_19", "17_40", "18_33", "18_41", "2_17", "2_41", "2_42", "20_17", "20_39", "21_19", "21_44", "21_46", "22_13", "22_37", "22_38", "23_17", "23_18", "23_38", "25_6", "25_40", "26_19", "26_42", "26_39", "27_15", "27_37", "28_16", "28_42", "28_44", "29_18", "29_45", "29_37", "3_13", "3_36", "4_20", "4_22", "4_40", "5_18", "5_37", "7_5", "7_48", "7_44", "8_19", "8_40", "8_44", "9_19", "9_47"], "test": ["1_25", "1_136", "1_49", "1_43", "1_143", "10_24", "10_18", "10_48", "10_50", "10_47", "12_17", "12_19", "12_119", "12_48", "12_51", "13_20", "13_41", "13_44", "13_45", "15_18", "15_41", "15_46", "16_20", "16_23", "16_42", "16_44", "17_20", "17_21", "17_23", "17_49", "17_43", "17_45", "18_24", "18_19", "18_49", "18_101", "18_45", "2_19", "2_22", "2_46", "2_47", "20_19", "20_22", "20_48", "20_44", "20_47", "21_24", "21_25", "21_50", "21_103", "21_47", "22_24", "22_21", "22_40", "22_41", "22_137", "23_19", "23_23", "23_41", "23_39", "25_9", "25_109", "25_48", "25_41", "25_42", "26_20", "26_22", "26_136", "26_46", "27_17", "27_18", "27_49", "27_45", "27_38", "28_24", "28_21", "28_49", "28_50", "28_45", "29_19", "29_22", "29_48", "29_49", "29_129", "3_18", "3_49", "3_50", "3_46", "4_24", "4_122", "4_43", "4_44", "5_24", "5_19", "5_22", "5_42", "5_44", "7_18", "7_19", "7_50", "7_135", "8_25", "8_20", "8_50", "8_45", "9_24", "9_25", "9_22", "9_108"]}
annotations/data_splits/recordings_data_split_normal.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"train": ["1_19", "1_14", "1_7", "10_16", "10_6", "12_2", "12_5", "12_9", "12_10", "12_12", "12_13", "13_9", "13_5", "13_14", "15_2", "15_4", "15_5", "16_1", "16_10", "16_3", "17_3", "17_5", "17_8", "17_10", "17_11", "17_14", "17_15", "18_8", "18_12", "2_8", "2_13", "2_5", "20_16", "20_9", "20_14", "21_8", "21_17", "21_11", "21_15", "22_8", "22_4", "22_6", "23_1", "23_5", "23_6", "23_9", "23_12", "23_16", "25_1", "25_2", "25_3", "25_5", "26_17", "26_4", "26_6", "26_7", "27_9", "27_4", "27_13", "28_10", "28_2", "28_3", "28_7", "29_15", "29_6", "29_7", "3_2", "3_11", "3_5", "4_2", "4_3", "4_5", "4_7", "4_9", "4_17", "5_11", "5_2", "5_3", "5_4", "7_1", "7_2", "7_3", "8_16", "8_3", "8_15", "9_2", "9_4", "9_12", "9_13", "9_15"], "val": ["1_20", "12_16", "12_15", "13_18", "15_8", "16_17", "17_16", "17_19", "2_17", "20_17", "21_19", "22_13", "23_17", "23_18", "25_6", "26_19", "27_15", "28_16", "29_18", "3_13", "4_20", "4_22", "5_18", "7_5", "8_19", "9_19"], "test": ["1_25", "10_24", "10_18", "12_17", "12_19", "12_119", "13_20", "15_18", "16_20", "16_23", "17_20", "17_21", "17_23", "18_24", "18_19", "2_19", "2_22", "20_19", "20_22", "21_24", "21_25", "22_24", "22_21", "23_19", "23_23", "25_9", "25_109", "26_20", "26_22", "27_17", "27_18", "28_24", "28_21", "29_19", "29_22", "3_18", "4_24", "4_122", "5_24", "5_19", "5_22", "7_18", "7_19", "8_25", "8_20", "9_24", "9_25", "9_22"]}
annotations/metadata/video_information.csv ADDED
@@ -0,0 +1,385 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ recording_id,environment_id,person_id,duration(min),duration(sec)
2
+ 10_16,2,5,16.23,973.64
3
+ 10_18,1,2,10.34,620.25
4
+ 10_24,11,5,11.49,689.19
5
+ 10_26,6,2,6.99,419.19
6
+ 10_31,2,8,6.74,404.47
7
+ 10_42,5,8,12.48,748.81
8
+ 10_46,5,4,11.82,709.24
9
+ 10_47,7,4,7.71,462.53
10
+ 10_48,1,5,10.83,649.75
11
+ 10_50,5,2,4.19,252.92
12
+ 10_6,7,8,5.47,328.36
13
+ 10_7,6,8,10.62,636.9
14
+ 12_10,2,3,6.56,393.56
15
+ 12_119,11,5,7.37,441.94
16
+ 12_12,1,5,8.91,534.43
17
+ 12_13,5,4,8.76,525.69
18
+ 12_15,2,2,7.71,462.73
19
+ 12_16,6,3,5.59,335.64
20
+ 12_17,6,2,4.12,247.15
21
+ 12_19,6,3,6.28,379.38
22
+ 12_2,1,4,7.14,428.66
23
+ 12_26,1,2,5.49,329.2
24
+ 12_38,5,5,5.97,358.09
25
+ 12_41,7,5,7.84,470.67
26
+ 12_43,5,8,3.34,200.37
27
+ 12_48,2,8,5.01,300.57
28
+ 12_5,5,2,7.95,477.14
29
+ 12_51,7,8,3.99,239.54
30
+ 12_6,2,3,6.42,385.43
31
+ 12_9,5,3,7.53,451.52
32
+ 13_12,2,2,8.69,521.59
33
+ 13_14,2,8,13.81,828.66
34
+ 13_18,1,5,23.0,1380.05
35
+ 13_20,1,3,16.31,978.81
36
+ 13_24,6,2,10.66,639.61
37
+ 13_31,1,8,7.85,471.0
38
+ 13_32,6,8,8.05,483.15
39
+ 13_36,11,5,11.98,718.85
40
+ 13_38,5,8,13.6,816.22
41
+ 13_41,7,4,15.24,914.61
42
+ 13_44,6,4,12.77,766.03
43
+ 13_45,1,2,12.14,728.19
44
+ 13_5,2,5,21.68,1300.87
45
+ 13_9,5,2,12.28,736.74
46
+ 15_17,1,4,18.25,1094.96
47
+ 15_18,7,4,28.76,1725.82
48
+ 15_19,1,3,27.15,1628.99
49
+ 15_2,6,8,25.64,1538.64
50
+ 15_28,2,5,14.86,891.76
51
+ 15_29,2,2,21.55,1292.82
52
+ 15_30,6,4,10.67,640.24
53
+ 15_33,1,8,10.79,647.31
54
+ 15_37,2,4,10.88,652.52
55
+ 15_39,11,5,13.91,834.63
56
+ 15_4,2,8,20.72,1243.34
57
+ 15_41,5,4,18.21,1092.76
58
+ 15_46,7,1,19.86,1191.29
59
+ 15_5,5,5,41.17,2470.33
60
+ 15_8,5,3,38.83,2330.63
61
+ 16_1,5,7,18.01,1080.38
62
+ 16_10,10,6,19.74,1184.22
63
+ 16_17,8,4,28.96,1737.44
64
+ 16_18,2,6,23.55,1413.28
65
+ 16_2,5,6,20.4,1223.92
66
+ 16_20,8,1,32.18,1930.9
67
+ 16_23,2,7,21.51,1290.49
68
+ 16_26,6,7,16.27,976.34
69
+ 16_27,9,7,13.76,825.36
70
+ 16_28,1,7,18.28,1096.7
71
+ 16_3,8,3,41.14,2468.4
72
+ 16_35,1,1,21.19,1271.4
73
+ 16_39,7,6,11.76,705.71
74
+ 16_40,1,3,27.88,1672.54
75
+ 16_42,2,1,15.84,950.65
76
+ 16_44,1,6,18.58,1114.81
77
+ 17_10,6,4,14.63,877.54
78
+ 17_11,2,3,12.73,764.06
79
+ 17_14,7,8,10.41,624.39
80
+ 17_15,6,2,15.7,942.04
81
+ 17_16,11,5,16.18,970.87
82
+ 17_19,2,2,16.43,985.95
83
+ 17_20,5,5,11.67,700.33
84
+ 17_21,5,2,13.29,799.3
85
+ 17_23,6,8,16.04,962.09
86
+ 17_28,8,3,6.78,406.57
87
+ 17_29,7,5,12.27,736.4
88
+ 17_3,1,2,14.26,855.55
89
+ 17_36,8,4,7.14,428.69
90
+ 17_37,1,5,12.14,728.69
91
+ 17_40,7,4,10.2,612.11
92
+ 17_43,3,1,8.85,530.96
93
+ 17_45,2,4,12.91,774.57
94
+ 17_49,1,4,11.4,683.75
95
+ 17_5,5,8,14.95,897.23
96
+ 17_8,2,5,19.49,1169.17
97
+ 18_101,6,8,13.82,829.46
98
+ 18_11,2,4,13.09,785.08
99
+ 18_12,3,3,17.29,1037.5
100
+ 18_19,2,4,14.73,883.75
101
+ 18_2,2,8,11.23,673.54
102
+ 18_24,2,3,17.89,1073.54
103
+ 18_27,5,1,10.94,656.26
104
+ 18_28,2,1,11.72,703.1
105
+ 18_3,1,1,11.97,718.35
106
+ 18_31,5,4,7.37,442.18
107
+ 18_33,6,4,11.08,665.03
108
+ 18_41,6,3,10.06,603.54
109
+ 18_45,11,5,16.84,1010.11
110
+ 18_49,2,5,25.37,1522.25
111
+ 18_8,3,1,18.45,1107.31
112
+ 1_10,1,6,7.88,473.04
113
+ 1_136,1,3,13.21,792.59
114
+ 1_14,5,1,11.82,709.01
115
+ 1_143,1,7,10.7,642.14
116
+ 1_19,7,1,11.57,694.39
117
+ 1_20,2,1,11.35,681.15
118
+ 1_25,7,6,10.16,609.91
119
+ 1_28,1,1,7.46,447.45
120
+ 1_30,5,6,7.82,469.1
121
+ 1_32,9,7,6.04,362.23
122
+ 1_33,6,1,10.61,636.6
123
+ 1_34,10,6,5.72,343.28
124
+ 1_36,1,3,8.4,503.8
125
+ 1_37,2,6,10.19,611.24
126
+ 1_42,5,7,6.4,383.92
127
+ 1_43,1,7,7.36,441.44
128
+ 1_49,6,7,6.39,383.35
129
+ 1_7,8,3,10.05,603.1
130
+ 20_14,5,5,33.71,2022.35
131
+ 20_16,2,4,27.08,1624.62
132
+ 20_17,7,5,31.62,1897.16
133
+ 20_19,2,8,22.31,1338.37
134
+ 20_22,1,2,17.75,1065.2
135
+ 20_25,7,8,19.56,1173.87
136
+ 20_26,1,4,18.2,1092.29
137
+ 20_29,5,4,20.46,1227.73
138
+ 20_32,5,8,19.76,1185.55
139
+ 20_39,6,3,10.33,619.82
140
+ 20_44,6,2,10.37,622.22
141
+ 20_47,2,3,19.45,1167.13
142
+ 20_48,2,2,14.25,855.25
143
+ 20_9,5,3,31.1,1866.1
144
+ 21_103,1,1,15.47,927.96
145
+ 21_11,5,1,18.54,1112.31
146
+ 21_14,2,7,9.27,555.89
147
+ 21_15,5,7,10.1,606.01
148
+ 21_17,10,6,15.95,957.02
149
+ 21_19,7,1,19.29,1157.22
150
+ 21_24,9,7,13.28,797.03
151
+ 21_25,1,7,14.13,847.98
152
+ 21_28,6,3,11.24,676.08
153
+ 21_29,6,7,9.58,574.77
154
+ 21_3,1,1,13.69,821.12
155
+ 21_32,6,3,9.65,579.15
156
+ 21_37,5,6,18.15,1089.19
157
+ 21_43,6,1,12.82,769.1
158
+ 21_44,5,3,15.88,952.65
159
+ 21_46,2,6,12.57,753.99
160
+ 21_47,2,1,12.52,751.15
161
+ 21_50,1,6,13.91,834.83
162
+ 21_8,1,3,15.78,946.58
163
+ 22_10,1,1,18.98,1287.15
164
+ 22_13,5,6,13.63,817.55
165
+ 22_137,6,3,11.7,701.83
166
+ 22_2,2,3,16.86,1011.31
167
+ 22_21,2,6,11.85,711.01
168
+ 22_24,5,1,32.87,1972.37
169
+ 22_26,1,6,9.57,574.34
170
+ 22_30,10,6,7.85,471.17
171
+ 22_31,6,3,11.95,718.65
172
+ 22_32,6,1,10.21,612.61
173
+ 22_37,6,3,9.34,560.29
174
+ 22_38,1,7,13.44,806.64
175
+ 22_4,7,1,22.15,1329.26
176
+ 22_40,5,7,7.56,453.55
177
+ 22_41,7,6,8.48,508.54
178
+ 22_6,6,7,13.46,807.81
179
+ 22_8,9,7,9.72,583.05
180
+ 23_1,5,4,39.26,2356.59
181
+ 23_12,7,1,31.96,1917.88
182
+ 23_16,7,6,21.93,1315.58
183
+ 23_17,5,2,27.66,1659.46
184
+ 23_18,6,1,32.67,1961.43
185
+ 23_19,5,8,30.05,1803.03
186
+ 23_23,1,8,27.77,1666.5
187
+ 23_24,2,3,29.92,1794.99
188
+ 23_26,6,8,22.93,1375.67
189
+ 23_32,2,1,20.14,1208.71
190
+ 23_38,3,1,17.77,1065.93
191
+ 23_39,1,3,26.05,1563.13
192
+ 23_41,8,4,13.99,839.64
193
+ 23_5,7,4,30.38,1822.99
194
+ 23_6,7,5,36.49,2189.35
195
+ 23_9,11,5,36.43,2185.75
196
+ 25_1,6,4,29.35,1761.19
197
+ 25_109,7,5,35.45,2126.96
198
+ 25_11,2,4,22.09,1326.26
199
+ 25_13,1,1,20.58,1234.57
200
+ 25_2,2,1,18.69,1121.62
201
+ 25_22,5,4,23.68,1420.52
202
+ 25_3,1,8,22.27,1335.97
203
+ 25_4,6,8,28.53,1711.81
204
+ 25_40,2,2,14.62,877.34
205
+ 25_41,7,1,16.93,1015.91
206
+ 25_42,6,1,19.8,1188.25
207
+ 25_48,5,2,12.79,767.63
208
+ 25_5,7,4,23.03,1381.88
209
+ 25_6,5,1,35.71,2142.57
210
+ 25_9,6,2,17.64,1058.52
211
+ 26_136,6,2,11.41,684.52
212
+ 26_17,5,5,26.81,1608.41
213
+ 26_18,7,4,15.24,914.65
214
+ 26_19,7,5,22.47,1348.05
215
+ 26_20,8,4,17.71,1062.56
216
+ 26_22,3,3,22.07,1324.22
217
+ 26_24,6,1,21.03,1263.5
218
+ 26_29,5,2,11.93,715.75
219
+ 26_30,2,5,14.58,874.74
220
+ 26_34,6,4,13.94,836.34
221
+ 26_36,7,6,11.38,748.75
222
+ 26_39,7,8,11.72,703.37
223
+ 26_4,7,4,16.18,970.9
224
+ 26_42,6,8,13.9,833.8
225
+ 26_46,7,1,13.04,782.11
226
+ 26_6,8,3,17.49,1049.58
227
+ 26_7,3,1,23.53,1411.94
228
+ 27_13,7,5,19.18,1150.92
229
+ 27_15,2,2,11.1,665.8
230
+ 27_17,1,4,15.39,923.56
231
+ 27_18,6,3,14.86,891.36
232
+ 27_26,6,8,12.21,732.57
233
+ 27_29,1,5,13.1,785.85
234
+ 27_3,5,8,11.74,704.6
235
+ 27_31,7,4,12.24,734.63
236
+ 27_34,1,2,10.5,629.9
237
+ 27_37,5,2,8.68,520.82
238
+ 27_38,6,4,9.73,583.55
239
+ 27_4,6,2,10.75,644.74
240
+ 27_45,2,5,16.97,1017.95
241
+ 27_49,7,8,8.88,532.83
242
+ 27_9,2,4,16.84,1010.51
243
+ 28_10,1,6,18.54,1112.28
244
+ 28_14,5,3,18.27,1096.2
245
+ 28_16,3,3,18.13,1087.82
246
+ 28_2,10,6,14.76,885.65
247
+ 28_21,9,7,15.83,949.78
248
+ 28_24,6,7,17.84,1070.6
249
+ 28_25,2,1,17.47,1048.05
250
+ 28_26,5,1,13.46,807.81
251
+ 28_28,1,7,13.03,781.51
252
+ 28_29,5,7,9.69,581.45
253
+ 28_3,7,6,16.93,1015.68
254
+ 28_38,6,3,11.32,679.48
255
+ 28_42,1,1,17.24,1034.13
256
+ 28_44,2,7,13.57,814.08
257
+ 28_45,2,6,13.98,838.54
258
+ 28_49,2,3,19.15,1148.81
259
+ 28_50,1,3,12.69,761.09
260
+ 28_7,5,6,18.23,1093.96
261
+ 29_129,7,1,15.42,925.06
262
+ 29_15,3,3,16.57,993.89
263
+ 29_17,8,4,18.25,1095.26
264
+ 29_18,1,2,14.3,857.82
265
+ 29_19,8,3,17.48,1048.61
266
+ 29_22,3,1,21.51,1290.79
267
+ 29_28,6,2,11.42,685.25
268
+ 29_29,7,8,10.85,650.68
269
+ 29_32,5,5,15.34,920.19
270
+ 29_34,6,4,11.11,666.47
271
+ 29_35,7,5,10.68,640.77
272
+ 29_37,7,6,12.15,728.89
273
+ 29_45,1,5,17.59,1055.69
274
+ 29_48,2,8,9.62,579.01
275
+ 29_49,2,4,12.94,776.11
276
+ 29_5,5,8,18.04,1082.11
277
+ 29_6,2,5,21.34,1280.71
278
+ 29_7,5,4,23.36,1401.33
279
+ 2_13,1,6,22.09,1325.42
280
+ 2_17,3,3,21.53,1291.96
281
+ 2_19,2,7,18.4,1103.97
282
+ 2_22,5,6,17.24,1096.83
283
+ 2_26,1,3,21.1,1266.23
284
+ 2_28,5,3,18.29,1097.1
285
+ 2_3,1,7,27.77,1666.3
286
+ 2_30,10,6,9.86,591.32
287
+ 2_38,2,3,22.1,1326.22
288
+ 2_4,5,7,16.27,976.01
289
+ 2_41,2,1,20.92,1255.29
290
+ 2_42,2,6,20.62,1237.3
291
+ 2_46,7,6,11.2,671.7
292
+ 2_47,9,7,17.75,1064.8
293
+ 2_5,6,7,16.56,993.86
294
+ 2_8,6,1,22.59,1356.79
295
+ 3_11,1,8,10.03,601.93
296
+ 3_12,7,8,11.0,659.99
297
+ 3_13,6,8,14.72,883.02
298
+ 3_14,2,2,10.07,604.24
299
+ 3_18,6,4,15.91,954.72
300
+ 3_2,5,2,10.96,657.82
301
+ 3_22,1,4,16.53,991.69
302
+ 3_34,7,4,9.7,581.98
303
+ 3_36,5,4,15.77,946.45
304
+ 3_46,2,4,11.57,694.36
305
+ 3_49,2,5,13.0,779.91
306
+ 3_5,2,8,9.71,582.42
307
+ 3_50,6,2,7.53,451.72
308
+ 4_122,6,3,18.34,1100.3
309
+ 4_17,5,7,12.69,761.36
310
+ 4_2,2,6,12.91,774.81
311
+ 4_20,10,6,12.16,729.7
312
+ 4_22,1,3,14.84,890.36
313
+ 4_24,2,1,20.08,1204.6
314
+ 4_3,6,7,13.4,804.1
315
+ 4_30,1,1,13.05,783.18
316
+ 4_32,6,1,12.66,759.46
317
+ 4_35,1,6,9.21,552.85
318
+ 4_36,2,3,17.41,1044.34
319
+ 4_40,2,7,10.87,652.08
320
+ 4_43,7,1,13.5,809.74
321
+ 4_44,5,6,10.14,608.41
322
+ 4_5,9,7,11.19,671.5
323
+ 4_7,2,6,14.85,890.96
324
+ 4_9,1,7,13.63,817.68
325
+ 5_11,7,8,14.64,878.71
326
+ 5_15,6,3,14.61,876.38
327
+ 5_18,11,5,23.21,1392.66
328
+ 5_19,7,4,13.74,824.56
329
+ 5_2,10,6,13.66,819.55
330
+ 5_22,7,6,15.64,938.27
331
+ 5_24,5,8,14.52,871.3
332
+ 5_27,5,5,19.16,1149.62
333
+ 5_28,9,7,6.0,360.29
334
+ 5_3,5,7,9.33,559.93
335
+ 5_35,5,6,13.96,837.37
336
+ 5_37,1,7,12.84,770.44
337
+ 5_4,6,4,13.8,797.7
338
+ 5_42,5,3,11.24,676.51
339
+ 5_44,7,5,17.01,1020.72
340
+ 7_1,2,7,9.02,540.91
341
+ 7_135,1,1,15.48,928.89
342
+ 7_18,6,7,10.1,606.11
343
+ 7_19,6,1,13.69,821.19
344
+ 7_2,8,4,16.68,1000.77
345
+ 7_24,5,3,12.83,769.97
346
+ 7_26,9,7,6.33,379.61
347
+ 7_3,8,1,12.96,777.78
348
+ 7_30,10,6,6.49,389.46
349
+ 7_32,5,7,5.86,351.78
350
+ 7_35,1,1,6.12,366.97
351
+ 7_38,1,6,7.7,461.96
352
+ 7_44,5,6,8.26,495.6
353
+ 7_48,2,6,10.05,602.97
354
+ 7_5,1,7,9.9,594.06
355
+ 7_50,2,3,11.46,687.55
356
+ 8_11,6,3,7.12,426.99
357
+ 8_15,2,4,8.58,514.75
358
+ 8_16,6,4,7.71,462.66
359
+ 8_19,5,4,9.03,541.71
360
+ 8_20,2,5,9.78,588.72
361
+ 8_25,3,3,7.38,442.91
362
+ 8_26,5,8,7.51,450.35
363
+ 8_3,2,4,7.03,421.99
364
+ 8_30,5,5,6.26,375.88
365
+ 8_31,7,5,4.45,267.17
366
+ 8_33,11,5,4.91,294.46
367
+ 8_35,5,3,7.18,430.56
368
+ 8_40,5,2,6.63,397.76
369
+ 8_44,1,4,5.79,347.41
370
+ 8_45,2,8,6.27,376.21
371
+ 8_50,7,8,4.39,263.46
372
+ 9_108,2,7,10.02,601.37
373
+ 9_12,2,6,11.08,664.76
374
+ 9_13,1,6,9.39,563.6
375
+ 9_15,6,1,14.19,851.58
376
+ 9_19,2,1,13.91,834.53
377
+ 9_2,5,6,12.64,758.66
378
+ 9_22,7,1,14.29,857.72
379
+ 9_24,7,6,12.19,731.3
380
+ 9_25,1,3,14.22,853.52
381
+ 9_36,5,7,6.62,397.3
382
+ 9_4,5,1,14.77,886.12
383
+ 9_45,10,6,5.26,315.78
384
+ 9_47,6,7,8.37,502.0
385
+ 9_8,9,7,9.28,557.06
annotations/task_graphs/breakfastburritos.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"steps": {"0": "START", "1": "Whisk-Whisk the egg", "2": "Microwave-Microwave for 3 minutes, stirring in between", "3": "Add-Add 1/2 tbsp sweet and sour sauce to the bowl", "4": "Sprinkle-Sprinkle 1 tbsp shredded cheddar cheese on top of the egg", "5": "Mix-Mix the contents of the bowl well", "6": "add-Extract and add contents of an egg to a microwave-safe bowl", "7": "Roll-Roll the tortilla from one end to another into a log shape, about 1.5 inches thick. Roll it tight enough to prevent gaps but not so tight that the filling leaks", "8": "Pour-Pour egg mixture on top of the tortilla", "9": "Add-Add 1 tbsp salsa to the bowl", "10": "Place-Place 8 inch tortilla on a cutting board", "11": "Sprinkle-Sprinkle oregano in the bowl", "12": "END"}, "edges": [[6, 1], [1, 2], [2, 3], [8, 4], [11, 5], [9, 5], [3, 5], [4, 7], [10, 8], [5, 8], [2, 9], [2, 11], [0, 6], [0, 10], [7, 12]]}
annotations/task_graphs/broccolistirfry.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"steps": {"0": "START", "1": "Add-Add 1/8 cup soy sauce to the bowl", "2": "Set-Set aside the sauce mixture", "3": "Add-Add 1 tablespoon honey to the bowl", "4": "cook-cook, stirring often, for 4 minutes. If the pan gets too hot on medium-high, turn the heat down to medium", "5": "Add-Add 1 teaspoon cornstarch to the bowl", "6": "Add-Add 2 cloves minced garlic to the bowl", "7": "Pour-Pour the sauce into the skillet", "8": "Peel-Peel 2 cloves of garlic", "9": "Add-add sliced mushrooms to the skillet", "10": "slice-slice mushrooms", "11": "Whisk-Whisk the contents of bowl", "12": "Add-Add bell pepper to the skillet", "13": "mince-mince garlic", "14": "slice-slice 1/3 of the bell pepper", "15": "cook-cook, stirring, for 1 minute until the sauce thickens", "16": "Add-Add broccoli to the skillet", "17": "Heat-Heat 2 tablespoons olive oil in a skillet over medium-high heat", "18": "Add-Add 1/2 tablespoon minced ginger to the bowl", "19": "Add-Add 1/8 teaspoon black pepper to the bowl", "20": "Add-Add 1/6 cup water the bowl", "21": "Take-Take 2 cremini mushrooms", "22": "Take-Take 1 bell pepper", "23": "Whisk-Whisk the sauce again to recombine the ingredients", "24": "Take-Take 5 in number broccoli florets", "25": "continue cooking-continue cooking, stirring often, for 2-3 minutes, until vegetables are crisp-tender", "26": "END"}, "edges": [[11, 2], [9, 4], [16, 4], [13, 6], [23, 7], [17, 9], [21, 10], [19, 11], [18, 11], [5, 11], [20, 11], [6, 11], [3, 11], [1, 11], [4, 12], [8, 13], [22, 14], [7, 15], [17, 16], [14, 17], [24, 17], [10, 17], [2, 17], [25, 23], [12, 25], [0, 1], [0, 3], [0, 5], [0, 8], [0, 18], [0, 19], [0, 20], [0, 21], [0, 22], [0, 24], [15, 26]]}
annotations/task_graphs/buttercorncup.json ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "steps":{
3
+ "0":"START",
4
+ "1":"add-add lime juice to the bowl",
5
+ "2":"Measure-Measure 2 cups of frozen corn",
6
+ "3":"Add-1 teaspoon of pepper powder to the bowl",
7
+ "4":"Extract-Extract lime juice from 1/3 lime",
8
+ "6":"Add-Add the corn into a microwave-safe bowl",
9
+ "7":"Mix-Mix the contents of the bowl well",
10
+ "8":"Microwave-Microwave the corn for 2 minutes",
11
+ "9":"Microwave-Microwave the corn for 3 more minutes",
12
+ "10":"stir-then stir the bowl",
13
+ "11":"Add-Add 1 teaspoon salt to the bowl",
14
+ "12":"Thaw-Thaw the frozen corn by putting it in a sieve and running it under cold water",
15
+ "13":"Add-Add 1 teaspoon of softened butter",
16
+ "14":"END"
17
+ },
18
+ "edges":[
19
+ [
20
+ 9,
21
+ 1
22
+ ],
23
+ [
24
+ 4,
25
+ 1
26
+ ],
27
+ [
28
+ 8,
29
+ 3
30
+ ],
31
+ [
32
+ 12,
33
+ 6
34
+ ],
35
+ [
36
+ 11,
37
+ 7
38
+ ],
39
+ [
40
+ 1,
41
+ 7
42
+ ],
43
+ [
44
+ 10,
45
+ 9
46
+ ],
47
+ [
48
+ 3,
49
+ 10
50
+ ],
51
+ [
52
+ 13,
53
+ 10
54
+ ],
55
+ [
56
+ 9,
57
+ 11
58
+ ],
59
+ [
60
+ 2,
61
+ 12
62
+ ],
63
+ [
64
+ 0,
65
+ 2
66
+ ],
67
+ [
68
+ 0,
69
+ 4
70
+ ],
71
+ [
72
+ 6,
73
+ 8
74
+ ],
75
+ [
76
+ 8,
77
+ 13
78
+ ],
79
+ [
80
+ 7,
81
+ 14
82
+ ]
83
+ ]
84
+ }
annotations/task_graphs/cheesepimiento.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"steps": {"0": "START", "1": "add-add 1/2 tbsp softened butter to the bowl", "2": "Add-Add 1/4 teaspoon salt to the bowl", "3": "Add-Add 1/3 cup cheddar cheese to a microwave-safe cup", "4": "Mix-Mix the cheese and red bell pepper in the bowl", "5": "Microwave-Microwave the bowl, covered, for 2 minutes", "6": "Add-Add 1/4 teaspoon pepper to the bowl", "7": "Add-Add 1 tablespoons of water to the bowl", "8": "Chop-Chop 1/4 red bell pepper into tiny bits", "9": "Place-Place the chopped pepper in the microwave-safe bowl", "10": "Melt-Melt the cheese by microwaving cup for 30 sec. (Check after 30 seconds and microwave for 10 seconds more if needed)", "11": "Mix-Mix all the ingredients of the bowl well", "12": "END"}, "edges": [[4, 1], [4, 2], [10, 4], [5, 4], [9, 5], [7, 5], [4, 6], [8, 9], [3, 10], [6, 11], [1, 11], [2, 11], [0, 3], [0, 7], [0, 8], [11, 12]]}
annotations/task_graphs/coffee.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"steps": {"0": "START", "1": "Wait-Wait about 30 seconds for the coffee to bloom. (You will see small bubbles or foam on the coffee grounds during this step.)", "2": "Pour-Pour a small amount of water into the filter to wet the grounds", "3": "Transfer-Transfer the grounds to the filter cone", "4": "spread-spread open filter in dripper to create a cone", "5": "Place-Place the paper filter in the dripper", "6": "pour-Slowly pour the rest of the water over the grounds in a circular motion. Do not overfill beyond the top of the paper filter", "7": "Prepare-Prepare the filter insert by folding the paper filter in half to create a semi-circle, and in half again to create a quarter-circle", "8": "Discard-Discard the paper filter and coffee grounds", "9": "Boil-Boil the water. (While the water is boiling, assemble the filter cone)", "10": "Weigh-Weigh the coffee beans (0.8oz-0.12 oz)", "11": "drain-Let the coffee drain completely into the mug before removing the dripper", "12": "Grind-Grind the coffee beans until the coffee grounds are the consistency of coarse sand, about 20 seconds", "13": "Measure-Measure 12 ounces of cold water", "14": "Place-Place the dripper on top of a coffee mug", "15": "transfer-transfer water to a kettle", "16": "check-Once the water has boiled, check the temperature of the water. (The water should be between 195-205 degrees Fahrenheit or between 91-96 degrees Celsius. If the water is too hot, let it cool briefly.)", "17": "END"}, "edges": [[2, 1], [16, 2], [3, 2], [4, 3], [12, 3], [5, 4], [7, 5], [14, 5], [1, 6], [11, 8], [15, 9], [6, 11], [10, 12], [13, 15], [9, 16], [0, 7], [0, 10], [0, 13], [0, 14], [8, 17]]}
annotations/task_graphs/cucumberraita.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"steps": {"0": "START", "1": "Add-1/4 teaspoon of red chilli powder to the bowl", "2": "peel-peel the cucumber", "3": "whisk-In a mixing bowl, whisk 1 cup of chilled curd until smooth. Use fresh homemade or packaged curd", "4": "Add-1/4 teaspoon salt to the bowl", "5": "chop or grate-chop or grate the cucumber", "6": "Combine-Combine all the ingredients in the bowl", "7": "add-add 1 tablespoon of chopped cilantro leaves to the bowl", "8": "Add-Add 1 teaspoon of cumin powder to the bowl", "9": "Rinse-Rinse 1 medium sized cucumber", "10": "Add-Add the chopped or grated cucumber to the whisked curd", "11": "Add-1/2 teaspoon of chaat masala powder to the bowl", "12": "END"}, "edges": [
2
+ [9, 2],
3
+ [2, 5],
4
+ [1, 6],
5
+ [10, 6],
6
+ [8, 6],
7
+ [11, 6],
8
+ [7, 6],
9
+ [4, 6],
10
+ [5, 10],
11
+ [3, 10],
12
+ [3, 1],
13
+ [0, 3],
14
+ [3, 4],
15
+ [3, 7],
16
+ [3, 8],
17
+ [0, 9],
18
+ [3, 11],
19
+ [6, 12]
20
+ ]}
annotations/task_graphs/dressedupmeatballs.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"steps": {"0": "START", "1": "Peel-Peel 1 garlic clove", "2": "Pour-Pour the sauces over the meatballs", "3": "Cut-Cut 1/8 garlic clove", "4": "Peel-Peel one medium onion", "5": "Stir-Stir the contents in the microwave with a spoon", "6": "Slice-Slice 1/8 medium onion", "7": "Stir-Stir the contents in the microwave with a spoon", "8": "Microwave-Microwave the plate, covered, on high for 1.5 minutes", "9": "Place-Place 5 meatballs in a Microwave-safe plate", "10": "Cut-Cut 1/4 medium carrot into short, thin strips", "11": "Mix-Mix 1/4 cup sweet-and-sour sauce and 1/2 teaspoon soy sauce in a small bowl", "12": "Top-Top the plate with the carrots, onion, garlic and 1/4 tsp pepper powder", "13": "Microwave-Microwave the plate, covered, on high for 1.5 minutes", "14": "Microwave-Microwave for 1 more minute", "15": "Mince-Mince 1/8 garlic clove", "16": "cut-Cut onion into two pieces", "17": "END"}, "edges": [[11, 2], [12, 2], [1, 3], [8, 5], [16, 6], [13, 7], [7, 8], [9, 12], [10, 12], [6, 12], [15, 12], [2, 13], [5, 14], [3, 15], [4, 16], [0, 1], [0, 4], [0, 9], [0, 10], [0, 11], [14, 17]]}
annotations/task_graphs/herbomeletwithfriedtomatoes.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"steps": {"0": "START", "1": "Heat-Heat 1 tbsp oil in a non-stick frying pan", "2": "put-put tomatoes on a serving plate", "3": "Chop-Chop 2 tbsp cilantro", "4": "stir-stir gently with a wooden spoon so the egg that sets on the base of the pan moves to enable the uncooked egg to flow into the space", "5": "crack-crack one egg in a bowl", "6": "cook-cook the tomatoes cut-side down until they start to soften and colour", "7": "Pour-Pour the egg mixture into the pan", "8": "add-add the chopped cilantro to the bowl", "9": "Transfer-Transfer omelette to the plate and serve with the tomatoes", "10": "Scoop-Scoop the tomatoes from the pan", "11": "Stop-Stop stirring when it's nearly cooked to allow it to set into an omelette", "12": "Cut-Cut tomato into two pieces", "13": "Take-Take a tomato", "14": "Beat-Beat the contents of the bowl", "15": "add-1/2 tsp ground black pepper to the bowl", "16": "END"}, "edges": [[14, 1], [12, 1], [10, 2], [7, 4], [1, 6], [2, 7], [3, 8], [11, 9], [6, 10], [4, 11], [13, 12], [8, 14], [5, 14], [15, 14], [0, 3], [0, 5], [0, 13], [0, 15], [9, 16]]}
annotations/task_graphs/microwaveeggsandwich.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"steps": {"0": "START", "1": "Pour-Pour 1 egg into the ramekin cup", "2": "Place -Place the egg from the cup over the lettuce", "3": "Coat -Coat a 6-oz. ramekin cup with cooking spray", "4": "Microwave-Microwave the ramekin cup uncovered on high for 30 seconds", "5": "sprinkle -sprinkle 1 tablespoon of cheese on cup", "6": "Top -Top cup with 1 tablespoon of salsa", "7": "replace -replace the top of the English muffin", "8": "Microwave -Continue to Microwave for 15-30 more seconds or until the egg is almost set", "9": "Line -Line the bottom piece of the English muffin with lettuce", "10": "Microwave -Microwave just until cheese melts, about 10 seconds", "11": "stir-stir the ramekin cup", "12": "Cut -Cut the English muffin into two pieces with a knife", "13": "END"}, "edges": [[3, 1], [10, 2], [9, 2], [1, 4], [6, 5], [8, 6], [2, 7], [11, 8], [12, 9], [5, 10], [4, 11], [0, 3], [0, 12], [7, 13]]}
annotations/task_graphs/mugcake.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"steps": {"0": "START", "1": "Whisk-Whisk batter until no lumps remain", "2": "remove-then carefully remove the paper liner", "3": "Measure and add-2 tbsp water to the bowl", "4": "Measure and add-1.5 tbsp sugar to the mixing bowl", "5": "Scoop-While the cake is cooling, prepare to pipe the frosting. Scoop 4 spoonfuls of chocolate frosting into a zip-top bag", "6": "Measure and add-Measure and add 2 tbsp flour to the mixing bowl", "7": "Measure and add-Measure and add 2 tsp vegetable oil to the bowl", "8": "Set-Set aside the lined mug", "9": "Squeeze-Squeeze the frosting through the opening to apply small dollops of frosting to the plate in a circle around the base of the cake", "10": "Place-Place the paper cupcake liner inside the mug", "11": "Measure and add-1/4 tsp baking powder to the bowl", "12": "Allow-Allow to cool until it is no longer hot to the touch", "13": "cut-Use scissors to cut one corner from the bag to create a small opening 1/4 inch in diameter", "14": "Pour-Pour batter into prepared mug", "15": "Whisk-Whisk to combine mixture of flour, sugar and baking powder in the bowl", "16": "Invert-Invert the mug to release the cake onto a plate", "17": "Measure and add-a pinch of salt to the mixing bowl", "18": "seal-seal zip top bag, removing as much air as possible", "19": "Microwave-Microwave the mug and batter on high power for 60 seconds. Check if the cake is done by inserting and toothpick into the center of the cake and then removing it. If wet batter clings to the toothpick, microwave for an additional 5 seconds. If the toothpick comes out clean, continue", "20": "Measure and add-1/4 tsp vanilla extract to the bowl", "21": "END"}, "edges": [[3, 1], [20, 1], [7, 1], [12, 2], [15, 3], [2, 5], [15, 7], [10, 8], [13, 9], [16, 12], [18, 13], [1, 14], [8, 14], [17, 15], [6, 15], [11, 15], [4, 15], [19, 16], [5, 18], [14, 19], [15, 20], [0, 4], [0, 6], [0, 10], [0, 11], [0, 17], [9, 21]]}
annotations/task_graphs/panfriedtofu.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"steps": {"0": "START", "1": "Cut-Cut 1/4 block or 3 ounces of fresh tofu into large cubes (about 1 in x 1 in)", "2": "Turn-Turn on the heat to medium", "3": "drizzle-drizzle 1 tablespoon soy sauce (watch for spitting) on the pan", "4": "drizzle-drizzle with the 1 tablespoons sesame oil on the pan", "5": "add-add the tofu cubes to the pan", "6": "remove-Briefly remove the pan from the heat to reduce spitting", "7": "flip-flip tofu on the pan", "8": "remove-Briefly remove from the heat again", "9": "Transfer-Transfer to a serving dish", "10": "Return-Return to low heat", "11": "Flip-Flip the tofu with tongs", "12": "add-add 1/4 tsp salt to the pan", "13": "Return-Return the heat to medium", "14": "cook-cook pan for 2 minutes until the colour is darkened", "15": "cook-cook pan for 2 minutes", "16": "cook-cook until tofu turns brown", "17": "Add-Add 1 tablespoon of olive oil to a non-stick pan", "18": "Cook-Cook 5 to 6 minutes until tofu cubes are lightly browned on the bottom", "19": "pat-pat tofu dry with a towel", "20": "END"}, "edges": [[17, 2], [12, 2], [5, 2], [8, 3], [8, 4], [19, 5], [18, 6], [15, 7], [16, 8], [14, 9], [4, 10], [3, 10], [6, 11], [11, 13], [7, 14], [10, 15], [13, 16], [2, 18], [1, 19], [0, 1], [0, 12], [0, 17], [9, 20]]}
annotations/task_graphs/pinwheels.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"steps": {"0": "START", "1": "slicing-Continue slicing with floss to create 1 more pinwheel", "2": "Discard-Discard ends of the tortilla", "3": "slicing-Continue slicing with floss to create 1 more pinwheel", "4": "Clean-Clean the knife by wiping with a paper towel", "5": "Cross-Cross the floss's two ends over the tortilla roll's top", "6": "Slide-Slide floss under the tortilla, perpendicular to the length of the roll", "7": "Spread-Spread jelly over the nut butter", "8": "pull-pull the floss ends in opposite directions to slice", "9": "Place-Place the pinwheels on a plate", "10": "Secure-Secure the rolled tortilla by inserting 5 toothpicks about 1 inch apart", "11": "scoop-Use the knife to scoop jelly from the jar", "12": "Spread-Spread nut butter onto the tortilla, leaving 1/2-inch uncovered at the edges", "13": "scoop-Use a butter knife to scoop nut butter from the jar", "14": "slicing-Continue slicing with floss to create 1 more pinwheel", "15": "Trim-Trim the ends of the tortilla roll with the butter knife, leaving 1/2 inch margin between the last toothpick and the end of the roll", "16": "Place-Place 8-inch flour tortilla on cutting board", "17": "Roll-Roll the tortilla from one end to the other into a log shape, about 1.5 inches thick. Roll it tight enough to prevent gaps, but not so tight that the filling leaks", "18": "Place-Place the floss halfway between toothpicks", "19": "Clean-Clean the knife by wiping it with a paper towel", "20": "END"}, "edges": [
2
+ [14, 1],
3
+ [15, 2],
4
+ [1, 3],
5
+ [7, 4],
6
+ [18, 5],
7
+ [2, 20],
8
+ [11, 7],
9
+ [5, 8],
10
+ [3, 9],
11
+ [17, 10],
12
+ [19, 11],
13
+ [13, 12],
14
+ [16, 13],
15
+ [8, 14],
16
+ [10, 15],
17
+ [4, 17],
18
+ [6, 18],
19
+ [12, 19],
20
+ [0, 16],
21
+ [9, 20],
22
+ [15, 6]
23
+ ]}
annotations/task_graphs/tomatomozzarellasalad.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"steps": {"0": "START", "1": "Slice-Slice one tomato into about 1/2 inch thick slices", "2": "Place-Place the thick slices of tomatoes on a platter, ensuring they only make a single layer", "3": "Add-Add a drizzle of extra-virgin olive oil, about 1 tablespoon, over the entire platter", "4": "dry-gently dry it with a paper/tea towel", "5": "Season-Season the tomato slices with salt", "6": "Sprinkle-Sprinkle mozzarella cheese on top of the tomato throughout the platter", "7": "Rinse-Rinse a tomato", "8": "Season-Season platter with 1/4 teaspoon black pepper", "9": "Garnish-Garnish platter with italian seasoning", "10": "END"}, "edges": [[4, 1], [1, 2], [6, 3], [5, 3], [9, 3], [8, 3], [7, 4], [2, 5], [2, 6], [2, 8], [2, 9], [0, 7], [3, 10]]}
annotations/task_graphs/zoodles.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"steps": {"0": "START", "1": "Cook-Cook for 2 minutes or until the zoodles are done", "2": "Add-1/6 cup grated parmesan cheese", "3": "season-pepper to taste", "4": "Top-Top with more parmesan if desired", "5": "Heat-Heat a large pan on medium heat", "6": "Remove-Remove from heat", "7": "season-season with salt", "8": "Add-Add 1 large minced garlic cloves to the pan", "9": "Peel-Peel 1 garlic cloves", "10": "Add-Add the zucchini noodles", "11": "Cook-Cook garlic until fragrant (about 1 minutes). Be careful not to burn garlic", "12": "Spiralize-Spiralize 1 medium zucchini into thin noodles using a spiralizer", "13": "Melt-Melt 1 tablespoons of softened butter", "14": "END"}, "edges": [[7, 1], [10, 1], [2, 1], [3, 1], [11, 2], [11, 3], [6, 4], [12, 5], [9, 5], [1, 6], [11, 7], [13, 8], [11, 10], [8, 11], [5, 13], [0, 9], [0, 12], [4, 14]]}
downloader/.gitignore ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ .idea/
6
+
7
+ # C extensions
8
+ *.so
9
+
10
+ # Distribution / packaging
11
+ .Python
12
+ build/
13
+ develop-eggs/
14
+ dist/
15
+ downloads/
16
+ eggs/
17
+ .eggs/
18
+ lib/
19
+ lib64/
20
+ parts/
21
+ sdist/
22
+ var/
23
+ wheels/
24
+ share/python-wheels/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+ MANIFEST
29
+
30
+ # PyInstaller
31
+ # Usually these files are written by a python script from a template
32
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
33
+ *.manifest
34
+ *.spec
35
+
36
+ # Installer logs
37
+ pip-log.txt
38
+ pip-delete-this-directory.txt
39
+
40
+ # Unit test / coverage reports
41
+ htmlcov/
42
+ .tox/
43
+ .nox/
44
+ .coverage
45
+ .coverage.*
46
+ .cache
47
+ nosetests.xml
48
+ coverage.xml
49
+ *.cover
50
+ *.py,cover
51
+ .hypothesis/
52
+ .pytest_cache/
53
+ cover/
54
+
55
+ # Translations
56
+ *.mo
57
+ *.pot
58
+
59
+ # Django stuff:
60
+ *.log
61
+ local_settings.py
62
+ db.sqlite3
63
+ db.sqlite3-journal
64
+
65
+ # Flask stuff:
66
+ instance/
67
+ .webassets-cache
68
+
69
+ # Scrapy stuff:
70
+ .scrapy
71
+
72
+ # Sphinx documentation
73
+ docs/_build/
74
+
75
+ # PyBuilder
76
+ .pybuilder/
77
+ target/
78
+
79
+ # Jupyter Notebook
80
+ .ipynb_checkpoints
81
+
82
+ # IPython
83
+ profile_default/
84
+ ipython_config.py
85
+
86
+ # pyenv
87
+ # For a library or package, you might want to ignore these files since the code is
88
+ # intended to run in multiple environments; otherwise, check them in:
89
+ # .python-version
90
+
91
+ # pipenv
92
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
93
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
94
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
95
+ # install all needed dependencies.
96
+ #Pipfile.lock
97
+
98
+ # poetry
99
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
100
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
101
+ # commonly ignored for libraries.
102
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
103
+ #poetry.lock
104
+
105
+ # pdm
106
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
107
+ #pdm.lock
108
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
109
+ # in version control.
110
+ # https://pdm.fming.dev/#use-with-ide
111
+ .pdm.toml
112
+
113
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
114
+ __pypackages__/
115
+
116
+ # Celery stuff
117
+ celerybeat-schedule
118
+ celerybeat.pid
119
+
120
+ # SageMath parsed files
121
+ *.sage.py
122
+
123
+ # Environments
124
+ .env
125
+ .venv
126
+ env/
127
+ venv/
128
+ ENV/
129
+ env.bak/
130
+ venv.bak/
131
+
132
+ # Spyder project settings
133
+ .spyderproject
134
+ .spyproject
135
+
136
+ # Rope project settings
137
+ .ropeproject
138
+
139
+ # mkdocs documentation
140
+ /site
141
+
142
+ # mypy
143
+ .mypy_cache/
144
+ .dmypy.json
145
+ dmypy.json
146
+
147
+ # Pyre type checker
148
+ .pyre/
149
+
150
+ # pytype static type analyzer
151
+ .pytype/
152
+
153
+ # Cython debug symbols
154
+ cython_debug/
155
+
156
+ # PyCharm
157
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
158
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
159
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
160
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
161
+ #.idea/
downloader/LICENSE ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
downloader/README.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # downloader
2
+
3
+ Please use this downloader to fetch 2D data from the box cloud.
4
+
5
+ To download GoPro data, run download_gopro_data.py with the appropriate arguments set.
6
+
7
+ To download Hololens data, run download_hololens_data.py with the appropriate arguments set.
8
+
9
+
10
+ ## Download Settings:
11
+
12
+ To download 2D data (only GoPro 360P data).
13
+
14
+ ``
15
+ python download_gopro_data.py --data2d
16
+ ``
17
+
18
+ To download 2D data (both GoPro 360P and GoPro 4K data).
19
+
20
+ ``
21
+ python download_gopro_data.py --data2d --resolution4K
22
+ ``
23
+
24
+ To download 2D data (only Hololens data).
25
+
26
+ ``
27
+ python download_hololens_data.py --data2d
28
+ ``
29
+
30
+
31
+ To download 3D data (only Hololens data).
32
+
33
+ **NOTE** We are currently processing Hololens 3D data. Please email rohith.peddi@utdallas.edu for priority access.
downloader/__pycache__/util.cpython-312.pyc ADDED
Binary file (12.8 kB). View file
 
downloader/download_gopro_data.py ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import argparse
2
+ import json
3
+ from pathlib import Path
4
+
5
+ from util import prepare_gopro_2d_output_directory, Constants, download_data
6
+
7
+
8
+ def process_download_gopro_data(download_args):
9
+ # ---- Parse Download Links Json ----
10
+ with open("metadata/download_links.json", "r") as f:
11
+ download_links = json.load(f)
12
+
13
+ output_dir = Path(download_args.output_dir)
14
+ data_directory = prepare_gopro_2d_output_directory(download_args, output_dir)
15
+
16
+ download_url_links = []
17
+ download_file_paths = []
18
+ for index, (recording_id, recording_download_link_dict) in enumerate(download_links.items()):
19
+ if download_args.data2d:
20
+ if (Constants.GOPRO_RESOLUTION_360P in recording_download_link_dict and
21
+ recording_download_link_dict[Constants.GOPRO_RESOLUTION_360P] is not None):
22
+ gopro_360_url = recording_download_link_dict[Constants.GOPRO_RESOLUTION_360P]
23
+ gopro_360p_path = data_directory / Constants.GOPRO / Constants.RESOLUTION_360P / f"{recording_id}_360p.mp4"
24
+ download_url_links.append(gopro_360_url)
25
+ download_file_paths.append(gopro_360p_path)
26
+ else:
27
+ if recording_download_link_dict[Constants.HOLOLENS_SYNC_PV_VIDEO] is not None:
28
+ hololens_pv_url = recording_download_link_dict[Constants.HOLOLENS_SYNC_PV_VIDEO]
29
+ hololens_pv_path = data_directory / Constants.GOPRO / Constants.RESOLUTION_360P / f"{recording_id}_360p.mp4"
30
+ download_url_links.append(hololens_pv_url)
31
+ download_file_paths.append(hololens_pv_path)
32
+ print(f"Hololens 360P data downloaded for {recording_id}")
33
+
34
+ if download_args.resolution4K:
35
+ if recording_download_link_dict[Constants.GOPRO_RESOLUTION_4K] is not None:
36
+ gopro_4k_url = recording_download_link_dict[Constants.GOPRO_RESOLUTION_4K]
37
+ gopro_4k_path = data_directory / Constants.GOPRO / Constants.RESOLUTION_4K / f"{recording_id}_4K.mp4"
38
+ download_url_links.append(gopro_4k_url)
39
+ download_file_paths.append(gopro_4k_path)
40
+
41
+ print("-------------------------------------------------")
42
+ print(f"Downloading {len(download_url_links)} files")
43
+ download_data(download_url_links, download_file_paths)
44
+
45
+
46
+ if __name__ == "__main__":
47
+ print("Starting the download process")
48
+
49
+ # Create the parser
50
+ parser = argparse.ArgumentParser(description='Download the data from BOX Cloud')
51
+
52
+ parser.add_argument('--data2d', action='store_true',
53
+ help='Use this to download 2D data from Box Cloud which includes GOPRO [360p] data')
54
+ parser.add_argument('--resolution4K', action='store_true',
55
+ help='Use this to default download 4K data from Box Cloud which includes GOPRO [4K] data')
56
+
57
+ parser.add_argument('--output_dir', type=str, default="data", help='Output directory to store the downloaded data')
58
+
59
+ # Parse the arguments
60
+ args = parser.parse_args()
61
+
62
+ process_download_gopro_data(args)
downloader/download_hololens_data.py ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import argparse
2
+ import json
3
+ from pathlib import Path
4
+
5
+ from util import prepare_hololens_2d_output_directory, Constants, download_data
6
+
7
+
8
+ # Please note that not all videos are recorded with hololens.
9
+ # Roughly, 60 videos are recorded only with GoPro, and they do not have hololens components.
10
+ # Due to device instability, roughly additional 40 videos don't have spatial data that includes Pose, 3D Hand Data
11
+
12
+ def process_download_hololens_data(download_args):
13
+ # ---- Parse Download Links Json ----
14
+ with open("metadata/download_links.json", "r") as f:
15
+ download_links = json.load(f)
16
+
17
+ output_dir = Path(download_args.output_dir)
18
+ data_directory = prepare_hololens_2d_output_directory(download_args, output_dir)
19
+
20
+ download_url_links = []
21
+ download_file_paths = []
22
+ for index, (recording_id, recording_download_link_dict) in enumerate(download_links.items()):
23
+ if download_args.data2d:
24
+ if Constants.HOLOLENS_SYNC_PV_VIDEO in recording_download_link_dict:
25
+ if recording_download_link_dict[Constants.HOLOLENS_SYNC_PV_VIDEO] is not None:
26
+ hololens_pv_url = recording_download_link_dict[Constants.HOLOLENS_SYNC_PV_VIDEO]
27
+ hololens_pv_path = data_directory / Constants.HOLOLENS / Constants.SYNC / Constants.PV / f"{recording_id}_360p.mp4"
28
+ download_url_links.append(hololens_pv_url)
29
+ download_file_paths.append(hololens_pv_path)
30
+ print(f"Hololens 360P data downloaded for {recording_id}")
31
+ else:
32
+ print(f"Hololens 360P data not available for {recording_id}")
33
+
34
+ print("-------------------------------------------------")
35
+ print(f"Downloading {len(download_url_links)} files")
36
+ download_data(download_url_links, download_file_paths)
37
+
38
+
39
+ if __name__ == "__main__":
40
+ print("Starting the download process")
41
+
42
+ # Create the parser
43
+ parser = argparse.ArgumentParser(description='Download the data from BOX Cloud')
44
+
45
+ parser.add_argument('--data2d', action='store_true',
46
+ help='Use this to download 2D data from Box Cloud which includes Hololens [360p] data')
47
+
48
+ parser.add_argument('--output_dir', type=str, default="data", help='Output directory to store the downloaded data')
49
+
50
+ # Parse the arguments
51
+ args = parser.parse_args()
52
+
53
+ process_download_hololens_data(args)
downloader/holoassist_output_.log ADDED
The diff for this file is too large to render. See raw diff
 
downloader/metadata/download_links.json ADDED
The diff for this file is too large to render. See raw diff
 
downloader/requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ requests
2
+ tqdm
downloader/util.py ADDED
@@ -0,0 +1,285 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ from asyncio import as_completed
3
+ from concurrent.futures import ThreadPoolExecutor
4
+ import time
5
+ from pathlib import Path
6
+
7
+ import requests
8
+ from tqdm.auto import tqdm
9
+
10
+
11
+ class Constants:
12
+ CAPTAIN_COOK_4D = "captain_cook_4d"
13
+
14
+ GOPRO = "gopro"
15
+ HOLOLENS = "hololens"
16
+ GOPRO_RESOLUTION_4K = "gopro_4k"
17
+ GOPRO_RESOLUTION_360P = "gopro_360p"
18
+
19
+ DATA_2D = "data_2d"
20
+ RESOLUTION_360P = "resolution_360p"
21
+ RESOLUTION_4K = "resolution_4k"
22
+
23
+ RAW = "raw"
24
+ SYNC = "sync"
25
+
26
+ SPATIAL = "spatial"
27
+
28
+ PV = "pv"
29
+ MC = "mc"
30
+
31
+ AB_ZIP = "ab.zip"
32
+ DEPTH_ZIP = "depth.zip"
33
+ FRAMES_ZIP = "frames.zip"
34
+
35
+ DEPTH_AHAT = "depth_ahat"
36
+ DEPTH = "depth"
37
+ AB = "ab"
38
+
39
+ DEPTH_POSE = "depth_pose"
40
+ PV_POSE = "pv_pose"
41
+ SPATIAL_POSE = "spatial_pose"
42
+
43
+ IMU = "imu"
44
+ DEPTH_POSE_PKL = "depth_pose_pkl"
45
+ PV_POSE_PKL = "pv_pose_pkl"
46
+ SPATIAL_POSE_PKL = "spatial_pkl"
47
+
48
+ IMU_MAGNETOMETER = "imu_magnetometer"
49
+ IMU_GYROSCOPE = "imu_gyroscope"
50
+ IMU_ACCELEROMETER = "imu_accelerometer"
51
+
52
+ IMU_ACCELEROMETER_PKL = "imu_accelerometer_pkl"
53
+ IMU_GYROSCOPE_PKL = "imu_gyroscope_pkl"
54
+ IMU_MAGNETOMETER_PKL = "imu_magnetometer_pkl"
55
+
56
+ IS_HOLOLENS_ENABLED = "is_hololens_enabled"
57
+ IS_SPATIAL_ENABLED = "is_spatial_enabled"
58
+
59
+ DATA_JSON = "data_json"
60
+
61
+ HOLOLENS_DEVICE_INFO = "hololens_device_info"
62
+
63
+ RECORDING_ID = "recording_id"
64
+ METADATA = "metadata"
65
+ DOWNLOAD_LINKS = "download_links"
66
+ FILE_SIZES = "file_sizes"
67
+ RECORDING = "recording"
68
+
69
+ HOLOLENS_RAW_PV_FRAMES_ZIP = "hololens_raw_pv_frames_zip"
70
+ HOLOLENS_RAW_DEPTH_AHAT_AB_ZIP = "hololens_raw_depth_ahat_ab_zip"
71
+ HOLOLENS_RAW_DEPTH_AHAT_DEPTH_ZIP = "hololens_raw_depth_ahat_depth_zip"
72
+ HOLOLENS_RAW_MC_PKL = "hololens_raw_mc_pkl"
73
+
74
+ HOLOLENS_SYNC_PV_FRAMES_ZIP = "hololens_sync_pv_frames_zip"
75
+ HOLOLENS_SYNC_DEPTH_AHAT_AB_ZIP = "hololens_sync_depth_ahat_ab_zip"
76
+ HOLOLENS_SYNC_DEPTH_AHAT_DEPTH_ZIP = "hololens_sync_depth_ahat_depth_zip"
77
+ HOLOLENS_SYNC_PV_VIDEO = "hololens_sync_pv_video"
78
+
79
+ HOLOLENS_RAW_SPATIAL_PKL = "hololens_raw_spatial_pkl"
80
+ HOLOLENS_RAW_IMU_MAGNETOMETER_PKL = "hololens_raw_imu_magnetometer_pkl"
81
+ HOLOLENS_RAW_IMU_GYROSCOPE_PKL = "hololens_raw_imu_gyroscope_pkl"
82
+ HOLOLENS_RAW_IMU_ACCELEROMETER_PKL = "hololens_raw_imu_accelerometer_pkl"
83
+
84
+ HOLOLENS_SYNC_SPATIAL_PKL = "hololens_sync_spatial_pkl"
85
+ HOLOLENS_SYNC_IMU_MAGNETOMETER_PKL = "hololens_sync_imu_magnetometer_pkl"
86
+ HOLOLENS_SYNC_IMU_GYROSCOPE_PKL = "hololens_sync_imu_gyroscope_pkl"
87
+ HOLOLENS_SYNC_IMU_ACCELEROMETER_PKL = "hololens_sync_imu_accelerometer_pkl"
88
+
89
+ HOLOLENS_RAW_PV_POSE_PKL = "hololens_raw_pv_pose_pkl"
90
+ HOLOLENS_SYNC_PV_POSE_PKL = "hololens_sync_pv_pose_pkl"
91
+
92
+ HOLOLENS_RAW_DEPTH_POSE_PKL = "hololens_raw_depth_pose_pkl"
93
+ HOLOLENS_SYNC_DEPTH_POSE_PKL = "hololens_sync_depth_pose_pkl"
94
+
95
+ DURATION = "duration"
96
+
97
+
98
+ def download_url(download_tuple):
99
+ url, target_path = download_tuple
100
+ max_retries = 5
101
+ retry_delay = 5
102
+
103
+ def fetch_response(url):
104
+ for attempt in range(max_retries):
105
+ try:
106
+ response = requests.get(url, stream=True)
107
+ response.raise_for_status()
108
+ return response
109
+ except requests.exceptions.RequestException as e:
110
+ print(f"Attempt {attempt + 1}/{max_retries} failed. Error: {str(e)}")
111
+ if attempt < max_retries - 1:
112
+ print(f"Retrying in {retry_delay} seconds...")
113
+ time.sleep(retry_delay)
114
+
115
+ response = fetch_response(url)
116
+ total = response.headers.get('content-length')
117
+
118
+ if os.path.exists(target_path):
119
+ file_size = os.path.getsize(target_path)
120
+ if file_size == int(total):
121
+ print(f"File {target_path} already exists, skipping download \n")
122
+ return url
123
+ else:
124
+ print(
125
+ f"File {target_path} already exists, but size {file_size} is different from total {total}, downloading again \n")
126
+ os.remove(target_path)
127
+ parent_dir = os.path.dirname(target_path)
128
+ if not os.path.exists(parent_dir):
129
+ parent_dir.mkdir(parents=True, exist_ok=True)
130
+
131
+ response.raise_for_status()
132
+ with open(target_path, "wb") as download_file:
133
+ for data in response.iter_content(chunk_size=1024):
134
+ download_file.write(data)
135
+ return url
136
+
137
+
138
+ def download_data(download_url_links, download_file_paths):
139
+ # ---- DON'T INCREASE MAX_WORKERS, ELSE DOWNLOAD WILL BE INTERRUPTED ----
140
+ with ThreadPoolExecutor(max_workers=3) as executor:
141
+ results = list(
142
+ tqdm(
143
+ executor.map(
144
+ download_url,
145
+ zip(download_url_links, download_file_paths)
146
+ ),
147
+ total=len(download_url_links)
148
+ )
149
+ )
150
+ return results
151
+
152
+
153
+ def prepare_gopro_2d_output_directory(args, output_dir: Path):
154
+ output_dir.mkdir(parents=True, exist_ok=True)
155
+
156
+ data_directory = output_dir / Constants.CAPTAIN_COOK_4D
157
+ data_directory.mkdir(parents=True, exist_ok=True)
158
+
159
+ gopro_data_directory = data_directory / Constants.GOPRO
160
+ gopro_data_directory.mkdir(parents=True, exist_ok=True)
161
+
162
+ if args.resolution4K:
163
+ resolution_4K_directory = gopro_data_directory / Constants.RESOLUTION_4K
164
+ resolution_4K_directory.mkdir(parents=True, exist_ok=True)
165
+
166
+ resolution_360p_directory = gopro_data_directory / Constants.RESOLUTION_360P
167
+ resolution_360p_directory.mkdir(parents=True, exist_ok=True)
168
+
169
+ return data_directory
170
+
171
+
172
+ def prepare_hololens_2d_output_directory(args, output_dir: Path):
173
+ output_dir.mkdir(parents=True, exist_ok=True)
174
+
175
+ data_directory = output_dir / Constants.CAPTAIN_COOK_4D
176
+ data_directory.mkdir(parents=True, exist_ok=True)
177
+
178
+ hololens_data_directory = data_directory / Constants.HOLOLENS
179
+ hololens_data_directory.mkdir(parents=True, exist_ok=True)
180
+
181
+ hololens_sync_data_directory = hololens_data_directory / Constants.SYNC
182
+ hololens_sync_data_directory.mkdir(parents=True, exist_ok=True)
183
+
184
+ hololens_sync_pv_data_directory = hololens_sync_data_directory / Constants.PV
185
+ hololens_sync_pv_data_directory.mkdir(parents=True, exist_ok=True)
186
+
187
+ return data_directory
188
+
189
+
190
+ def prepare_hololens_3d_output_directory(args, output_dir: Path):
191
+ output_dir.mkdir(parents=True, exist_ok=True)
192
+
193
+ data_directory = output_dir / Constants.CAPTAIN_COOK_4D
194
+ data_directory.mkdir(parents=True, exist_ok=True)
195
+
196
+ hololens_data_directory = data_directory / Constants.HOLOLENS
197
+ hololens_data_directory.mkdir(parents=True, exist_ok=True)
198
+
199
+ hololens_sync_data_directory = hololens_data_directory / Constants.SYNC
200
+ hololens_sync_data_directory.mkdir(parents=True, exist_ok=True)
201
+
202
+ hololens_sync_pv_data_directory = hololens_sync_data_directory / Constants.PV
203
+ hololens_sync_pv_data_directory.mkdir(parents=True, exist_ok=True)
204
+
205
+ hololens_sync_pv_pose_data_directory = hololens_sync_data_directory / Constants.PV_POSE
206
+ hololens_sync_pv_pose_data_directory.mkdir(parents=True, exist_ok=True)
207
+
208
+ hololens_sync_depth_pose_data_directory = hololens_sync_data_directory / Constants.DEPTH_POSE
209
+ hololens_sync_depth_pose_data_directory.mkdir(parents=True, exist_ok=True)
210
+
211
+ hololens_sync_spatial_data_directory = hololens_sync_data_directory / Constants.SPATIAL_POSE
212
+ hololens_sync_spatial_data_directory.mkdir(parents=True, exist_ok=True)
213
+
214
+ hololens_sync_imu_magnetometer_data_directory = hololens_sync_data_directory / Constants.IMU_MAGNETOMETER
215
+ hololens_sync_imu_magnetometer_data_directory.mkdir(parents=True, exist_ok=True)
216
+
217
+ hololens_sync_imu_gyroscope_data_directory = hololens_sync_data_directory / Constants.IMU_GYROSCOPE
218
+ hololens_sync_imu_gyroscope_data_directory.mkdir(parents=True, exist_ok=True)
219
+
220
+ hololens_sync_imu_accelerometer_data_directory = hololens_sync_data_directory / Constants.IMU_ACCELEROMETER
221
+ hololens_sync_imu_accelerometer_data_directory.mkdir(parents=True, exist_ok=True)
222
+
223
+ hololens_sync_depth_ahat_ab_data_directory = hololens_sync_data_directory / Constants.AB
224
+ hololens_sync_depth_ahat_ab_data_directory.mkdir(parents=True, exist_ok=True)
225
+
226
+ hololens_sync_depth_ahat_depth_data_directory = hololens_sync_data_directory / Constants.DEPTH
227
+ hololens_sync_depth_ahat_depth_data_directory.mkdir(parents=True, exist_ok=True)
228
+
229
+ hololens_metadata_directory = hololens_sync_data_directory / Constants.METADATA
230
+ hololens_metadata_directory.mkdir(parents=True, exist_ok=True)
231
+
232
+ return data_directory
233
+
234
+
235
+ def prepare_output_directory(args, output_dir: Path):
236
+ output_dir.mkdir(parents=True, exist_ok=True)
237
+
238
+ data_directory = output_dir / Constants.CAPTAIN_COOK_4D
239
+ data_directory.mkdir(parents=True, exist_ok=True)
240
+
241
+ if args.data2d:
242
+ gopro_360p_directory = data_directory / Constants.GOPRO_RESOLUTION_360P
243
+ gopro_360p_directory.mkdir(parents=True, exist_ok=True)
244
+
245
+ hololens_sync_pv_video_directory = data_directory / Constants.HOLOLENS_SYNC_PV_VIDEO
246
+ hololens_sync_pv_video_directory.mkdir(parents=True, exist_ok=True)
247
+
248
+ if not args.resolution360p:
249
+ gopro_4K_directory = data_directory / Constants.GOPRO_RESOLUTION_4K
250
+ gopro_4K_directory.mkdir(parents=True, exist_ok=True)
251
+
252
+ if args.data3d:
253
+ depth_ahat_depth_directory = data_directory / Constants.DEPTH_AHAT / Constants.DEPTH
254
+ depth_ahat_depth_directory.mkdir(parents=True, exist_ok=True)
255
+
256
+ depth_ahat_ab_directory = data_directory / Constants.DEPTH_AHAT / Constants.AB
257
+ depth_ahat_ab_directory.mkdir(parents=True, exist_ok=True)
258
+
259
+ if args.spatial:
260
+ spatial_directory = data_directory / Constants.SPATIAL
261
+ spatial_directory.mkdir(parents=True, exist_ok=True)
262
+
263
+ pv_pose_directory = data_directory / Constants.PV_POSE_PKL
264
+ pv_pose_directory.mkdir(parents=True, exist_ok=True)
265
+
266
+ depth_pose_directory = data_directory / Constants.DEPTH_POSE_PKL
267
+ depth_pose_directory.mkdir(parents=True, exist_ok=True)
268
+
269
+ imu_magnetometer_directory = data_directory / Constants.IMU / Constants.IMU_MAGNETOMETER
270
+ imu_magnetometer_directory.mkdir(parents=True, exist_ok=True)
271
+
272
+ imu_gyroscope_directory = data_directory / Constants.IMU / Constants.IMU_GYROSCOPE
273
+ imu_gyroscope_directory.mkdir(parents=True, exist_ok=True)
274
+
275
+ imu_accelerometer_directory = data_directory / Constants.IMU / Constants.IMU_ACCELEROMETER
276
+ imu_accelerometer_directory.mkdir(parents=True, exist_ok=True)
277
+
278
+ hololens_device_info_directory = data_directory / Constants.HOLOLENS_DEVICE_INFO
279
+ hololens_device_info_directory.mkdir(parents=True, exist_ok=True)
280
+
281
+ if args.raw:
282
+ raw_directory = data_directory / Constants.RAW
283
+ raw_directory.mkdir(parents=True, exist_ok=True)
284
+
285
+ return data_directory