Datasets:

Modalities:
Text
Video
Formats:
parquet
Languages:
English
ArXiv:
Libraries:
Datasets
Dask
License:
ellisbrown commited on
Commit
d7cb1a3
·
1 Parent(s): bc96b17

upload hf.co/datasets/nyu-visionx/VSI-Bench-Debiased version

Browse files
README.md CHANGED
@@ -9,60 +9,175 @@ tags:
9
  - Text
10
  size_categories:
11
  - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  ---
13
 
14
- <a href="https://arxiv.org/abs/2412.14171" target="_blank">
15
- <img alt="arXiv" src="https://img.shields.io/badge/arXiv-thinking--in--space-red?logo=arxiv" height="20" />
16
- </a>
17
- <a href="https://vision-x-nyu.github.io/thinking-in-space.github.io/" target="_blank">
18
- <img alt="Website" src="https://img.shields.io/badge/🌎_Website-thinking--in--space-blue.svg" height="20" />
19
- </a>
20
- <a href="https://github.com/vision-x-nyu/thinking-in-space" target="_blank" style="display: inline-block; margin-right: 10px;">
21
- <img alt="GitHub Code" src="https://img.shields.io/badge/Code-thinking--in--space-white?&logo=github&logoColor=white" />
22
- </a>
23
 
 
 
 
 
24
 
25
- # Visual Spatial Intelligence Benchmark (VSI-Bench)
26
- This repository contains the visual spatial intelligence benchmark (VSI-Bench), introduced in [Thinking in Space: How Multimodal Large Language Models See, Remember and Recall Spaces](https://arxiv.org/pdf/).
27
 
 
28
 
29
- ## Files
30
- The `test-00000-of-00001.parquet` file contains the complete dataset annotations and pre-loaded images, ready for processing with HF Datasets. It can be loaded using the following code:
31
 
32
- ```python
33
- from datasets import load_dataset
34
- vsi_bench = load_dataset("nyu-visionx/VSI-Bench")
35
- ```
36
- Additionally, we provide the videos in `*.zip`.
 
 
37
 
38
- ## Dataset Description
 
 
 
 
39
  VSI-Bench quantitatively evaluates the visual-spatial intelligence of MLLMs from egocentric video. VSI-Bench comprises over 5,000 question-answer pairs derived from 288 real videos. These videos are sourced from the validation sets of the public indoor 3D scene reconstruction datasets `ScanNet`, `ScanNet++`, and `ARKitScenes`, and represent diverse environments -- including residential spaces, professional settings (e.g., offices, labs), and industrial spaces (e.g., factories) and multiple geographic regions. By repurposing these existing 3D reconstruction and understanding datasets, VSI-Bench benefits from accurate object-level annotations, which are used in question generation and could support future studies exploring the connection between MLLMs and 3D reconstruction.
40
 
 
 
 
41
  The dataset contains the following fields:
42
 
43
  | Field Name | Description |
44
  | :--------- | :---------- |
45
- | `idx` | Global index of the entry in the dataset |
46
  | `dataset` | Video source: `scannet`, `arkitscenes` or `scannetpp` |
47
  | `scene_name` | Scene (video) name for each question-answer pair |
48
  | `question_type` | The type of task for question |
49
  | `question` | Question asked about the video |
50
  | `options` | Choices for the question (only for multiple choice questions) |
51
  | `ground_truth` | Ground truth answer for the question |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
 
53
- ## Evaluation
 
 
 
 
 
 
 
 
 
 
 
54
 
55
  VSI-Bench evaluates performance using two metrics: for multiple-choice questions, we use `Accuracy`, calculated based on exact matches. For numerical-answer questions, we introduce a new metric, `MRA (Mean Relative Accuracy)`, to assess how closely model predictions align with ground truth values.
56
 
57
  We provide an out-of-the-box evaluation of VSI-Bench in our [GitHub repository](https://github.com/vision-x-nyu/thinking-in-space), including the [metrics](https://github.com/vision-x-nyu/thinking-in-space/blob/main/lmms_eval/tasks/vsibench/utils.py#L109C1-L155C36) implementation used in our framework. For further detailes, users can refer to our paper and GitHub repository.
58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  ## Citation
60
 
 
 
61
  ```bibtex
62
- @article{yang2024think,
63
  title={{Thinking in Space: How Multimodal Large Language Models See, Remember and Recall Spaces}},
64
  author={Yang, Jihan and Yang, Shusheng and Gupta, Anjali and Han, Rilyn and Fei-Fei, Li and Xie, Saining},
65
- year={2024},
66
- journal={arXiv preprint arXiv:2412.14171},
67
  }
68
- ```
 
 
 
 
 
 
 
 
9
  - Text
10
  size_categories:
11
  - 1K<n<10K
12
+ configs:
13
+ - config_name: full
14
+ data_files:
15
+ - split: test
16
+ path: "test*.parquet"
17
+ default: true
18
+ - config_name: debiased
19
+ data_files:
20
+ - split: test
21
+ path: "test_debiased.parquet"
22
+ - config_name: pruned
23
+ data_files:
24
+ - split: test
25
+ path: "test_pruned.parquet"
26
  ---
27
 
28
+ <!-- <div align="center"> -->
 
 
 
 
 
 
 
 
29
 
30
+ | Dataset | arXiv | Website | Code |
31
+ | :------ | :---- | :------ | :--- |
32
+ | **VSI-Bench** | <a href="https://arxiv.org/abs/2412.14171" target="_blank"><img alt="arXiv" src="https://img.shields.io/badge/arXiv-thinking--in--space-red?logo=arxiv" height="20" /></a> | <a href="https://vision-x-nyu.github.io/thinking-in-space.github.io/" target="_blank"><img alt="Website" src="https://img.shields.io/badge/🌎_Website-thinking--in--space-blue.svg" height="20" /></a> | <a href="https://github.com/vision-x-nyu/thinking-in-space" target="_blank"><img alt="GitHub Code" src="https://img.shields.io/badge/Code-thinking--in--space-white?&logo=github&logoColor=white" /></a> |
33
+ | **VSI-Bench-Debiased** | <a href="https://arxiv.org/abs/2511.04655" target="_blank"><img alt="arXiv" src="https://img.shields.io/badge/arXiv-test--set--stress--test-red?logo=arxiv" height="20" /></a> | <a href="https://vision-x-nyu.github.io/test-set-training/" target="_blank"><img alt="Website" src="https://img.shields.io/badge/🌎_Website-test--set--stress--test-blue.svg" height="20" /></a> | <a href="https://github.com/vision-x-nyu/test-set-training" target="_blank"><img alt="GitHub Code" src="https://img.shields.io/badge/Code-test--set--stress--test-white?&logo=github&logoColor=white" /></a> |
34
 
35
+ <!-- </div> -->
 
36
 
37
+ <br>
38
 
39
+ > [!IMPORTANT]
40
+ > ***[Nov. 7, 2025] UPDATE:** This Dataset has been updated to include a "Debiased" subset following the [TsT Pruning Methodology](https://vision-x-nyu.github.io/test-set-training/)*
41
 
42
+ <br>
43
+
44
+ # Visual-Spatial Intelligence Benchmark (VSI-Bench & VSI-Bench-Debiased)
45
+
46
+ This repository contains the visual spatial intelligence benchmark (VSI-Bench), introduced in [Thinking in Space: How Multimodal Large Language Models See, Remember and Recall Spaces](https://arxiv.org/abs/2412.14171), and its debiased counterpart **VSI-Bench-Debiased**, introduced in our follow-up work on systematic benchmark robustification [Benchmark Designers Should "Train on the Test Set" to Expose Exploitable Non-Visual Shortcuts](https://arxiv.org/abs/2511.04655).
47
+
48
+ ## Overview
49
 
50
+ **VSI-Bench** evaluates visual-spatial intelligence of multimodal models through egocentric video understanding, comprising over 5,000 question-answer pairs from real-world indoor scenes.
51
+
52
+ **VSI-Bench-Debiased** is a robustified version that reduces non-visual shortcuts using our Test-set Stress-Test (TsT) and Iterative Bias Pruning (IBP) methodology. This version better isolates visual reasoning capabilities by systematically removing samples that can be solved without visual input.
53
+
54
+ ### Description
55
  VSI-Bench quantitatively evaluates the visual-spatial intelligence of MLLMs from egocentric video. VSI-Bench comprises over 5,000 question-answer pairs derived from 288 real videos. These videos are sourced from the validation sets of the public indoor 3D scene reconstruction datasets `ScanNet`, `ScanNet++`, and `ARKitScenes`, and represent diverse environments -- including residential spaces, professional settings (e.g., offices, labs), and industrial spaces (e.g., factories) and multiple geographic regions. By repurposing these existing 3D reconstruction and understanding datasets, VSI-Bench benefits from accurate object-level annotations, which are used in question generation and could support future studies exploring the connection between MLLMs and 3D reconstruction.
56
 
57
+
58
+ #### Fields
59
+
60
  The dataset contains the following fields:
61
 
62
  | Field Name | Description |
63
  | :--------- | :---------- |
64
+ | `id` | Global index of the entry in the dataset |
65
  | `dataset` | Video source: `scannet`, `arkitscenes` or `scannetpp` |
66
  | `scene_name` | Scene (video) name for each question-answer pair |
67
  | `question_type` | The type of task for question |
68
  | `question` | Question asked about the video |
69
  | `options` | Choices for the question (only for multiple choice questions) |
70
  | `ground_truth` | Ground truth answer for the question |
71
+ | `pruned` | Boolean indicating if example was removed by Iterative Bias Pruning (IBP) |
72
+
73
+ ### Why VSI-Bench-Debiased?
74
+
75
+ While the original VSI-Bench was designed to require visual understanding, our follow-up analysis revealed that a portion of questions could be answered using non-visual shortcuts—such as statistical biases in answer distributions or world knowledge priors—without actually processing the visual input.
76
+
77
+ **VSI-Bench-Debiased** addresses this through systematic robustification:
78
+
79
+ 1. **Test-set Stress-Test (TsT)**: We applied k-fold cross-validation directly on the test set to identify samples with high non-visual solvability, assigning each sample a bias score.
80
+ 2. **Iterative Bias Pruning (IBP)**: We iteratively removed samples with the highest bias scores, creating a subset that better compels genuine visual reasoning.
81
+
82
+ **Key improvements in VSI-Bench-Debiased:**
83
+ - **Reduced non-visual solvability**: Blind models (text-only, no vision) perform closer to chance
84
+ - **Wider vision-blind gap**: Greater performance difference between vision-enabled and vision-disabled models
85
+ - **Better isolation of visual reasoning**: Fine-tuning on in-distribution data improves vision-enabled performance much more than blind performance, confirming reduced shortcut reliance
86
+
87
+ For researchers interested in robust evaluation of visual-spatial intelligence, **we recommend reporting results on both the full and debiased subsets** to provide comprehensive assessment.
88
+
89
+ ## Usage
90
+
91
+ ### Dataset Configurations
92
+
93
+ This dataset provides three configurations for flexible evaluation:
94
+
95
+ | Config | Description | Usage |
96
+ |--------|-------------|-------|
97
+ | `full` (default) | All 5,131 examples with `pruned` column | Load all data, filter as needed |
98
+ | `debiased` | 2,363 examples (non-pruned subset) | Evaluate on robustified benchmark |
99
+ | `pruned` | 2,768 examples (pruned by IBP) | Analyze removed samples |
100
+
101
+ #### Loading the Dataset Annotations
102
+
103
+ ##### Load specific configuration
104
+
105
+ If you want to load just a specific subset, you can use the config name with the `load_dataset` function as follows:
106
+
107
+ ```python
108
+ from datasets import load_dataset
109
+
110
+ # Load full dataset (default)
111
+ vsi_bench_full = load_dataset("nyu-visionx/VSI-Bench")
112
+ # or use the config name "full"
113
+ vsi_bench_full = load_dataset("nyu-visionx/VSI-Bench", "full")
114
+
115
+ # Load debiased version only
116
+ vsi_bench_debiased = load_dataset("nyu-visionx/VSI-Bench", "debiased")
117
+
118
+ # Load pruned examples only
119
+ vsi_bench_pruned = load_dataset("nyu-visionx/VSI-Bench", "pruned")
120
+ ```
121
+
122
+ ##### Load full dataset and filter using `pruned` column (recommended)
123
+
124
+ > [!TIP]
125
+ > **For LMMS-Eval users:** We have updated the `vsi-bench` task to automatically report scores on both full and debiased subsets. (TODO: LINK).
126
+
127
+ We recommend loading the "full" set, evaluating on all samples, and then using the `pruned` column to compute scores on both the full and debiased subsets.
128
+
129
+ ```python
130
+ from datasets import load_dataset
131
+
132
+ # Load full dataset with pruned annotations
133
+ vsi_bench_full = load_dataset("nyu-visionx/VSI-Bench")
134
 
135
+ # Evaluate on full set
136
+ model_predictions = evaluate_model(vsi_bench_full)
137
+
138
+ # Score on both the full and debiased subsets
139
+ full_acc = compute_accuracy(model_predictions)
140
+ debiased_acc = compute_accuracy(model_predictions.filter(lambda x: not x["pruned"]))
141
+ ```
142
+
143
+ ### Evaluation
144
+
145
+ > [!TIP]
146
+ > ***TODO: link to the LMMS Eval Code***
147
 
148
  VSI-Bench evaluates performance using two metrics: for multiple-choice questions, we use `Accuracy`, calculated based on exact matches. For numerical-answer questions, we introduce a new metric, `MRA (Mean Relative Accuracy)`, to assess how closely model predictions align with ground truth values.
149
 
150
  We provide an out-of-the-box evaluation of VSI-Bench in our [GitHub repository](https://github.com/vision-x-nyu/thinking-in-space), including the [metrics](https://github.com/vision-x-nyu/thinking-in-space/blob/main/lmms_eval/tasks/vsibench/utils.py#L109C1-L155C36) implementation used in our framework. For further detailes, users can refer to our paper and GitHub repository.
151
 
152
+ ## Files
153
+
154
+ - `test-*.parquet`: Parquet files containing dataset annotations (questions, answers, metadata).
155
+ * `test_debiased.parquet`: Annotations for the debiased subset (2,363 examples)
156
+ * `test_pruned.parquet`: Annotations for the pruned subset (2,768 examples)
157
+ - `*.zip`: Compressed video files for the dataset
158
+ * `arkitscenes.zip`: Videos for the ARKitScenes dataset
159
+ * `scannet.zip`: Videos for the ScanNet dataset
160
+ * `scannetpp.zip`: Videos for the ScanNet++ dataset
161
+ - `pruned_ids.txt`: List of example IDs removed by Iterative Bias Pruning
162
+ - `create_pq.py`: Convenience script to regenerate parquet files from `test.jsonl` and `pruned_ids.txt`. Can be run with `uv run create_pq.py`.
163
+
164
+
165
  ## Citation
166
 
167
+ If you use these datasets in your research, please cite the original VSI-Bench paper and our debiasing paper that produced VSI-Bench-Debiased:
168
+
169
  ```bibtex
170
+ @inproceedings{yang2025thinking,
171
  title={{Thinking in Space: How Multimodal Large Language Models See, Remember and Recall Spaces}},
172
  author={Yang, Jihan and Yang, Shusheng and Gupta, Anjali and Han, Rilyn and Fei-Fei, Li and Xie, Saining},
173
+ booktitle={CVPR},
174
+ year={2025},
175
  }
176
+
177
+ @article{brown2025benchmark,
178
+ title={{Benchmark Designers Should "Train on the Test Set" to Expose Exploitable Non-Visual Shortcuts}},
179
+ author={Brown, Ellis and Yang, Jihan and Yang, Shusheng and Fergus, Rob and Xie, Saining},
180
+ year={2025},
181
+ journal={arXiv preprint arXiv:2511.04655},
182
+ }
183
+ ```
create_pq.py ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ # /// script
3
+ # requires-python = ">=3.10"
4
+ # dependencies = [
5
+ # "fastparquet",
6
+ # "pandas",
7
+ # "pathlib",
8
+ # "pyarrow",
9
+ # ]
10
+ # ///
11
+ """
12
+ Create parquet files for config subsets of the VSI-Bench dataset.
13
+ * debiased: all examples not pruned by Iterative Bias Pruning (aka VSI-Bench-Debiased)
14
+ * pruned: all examples pruned by Iterative Bias Pruning
15
+
16
+ > [!NOTE]
17
+ > If you do not pass `index=False`, the parquet files will have a `__index_level_0__` column
18
+ """
19
+
20
+ import pandas as pd
21
+ from pathlib import Path
22
+
23
+ script_dir = Path(__file__).parent
24
+ pruned_ids_path = script_dir / "pruned_ids.txt"
25
+ test_jsonl_path = script_dir / "test.jsonl"
26
+ pq_debiased_path = script_dir / "test_debiased.parquet"
27
+ pq_pruned_path = script_dir / "test_pruned.parquet"
28
+
29
+ print("Creating parquet files...")
30
+
31
+ print(f"Loading pruned ids from '{pruned_ids_path}'...")
32
+ with open(pruned_ids_path, "r") as f:
33
+ pruned_ids = f.read().splitlines()
34
+ print(f" -> Loaded {len(pruned_ids)} pruned ids.")
35
+
36
+ print(f"Loading test data from '{test_jsonl_path}'...")
37
+ df = pd.read_json(str(test_jsonl_path), lines=True)
38
+ print(f" -> Loaded {len(df)} examples.")
39
+ df["pruned"] = df["id"].astype(str).isin(pruned_ids)
40
+ print(f" -> Added pruned column.")
41
+
42
+ # save the debiased and pruned subsets separately to parquet files
43
+ df_debiased = df[~df["pruned"]]
44
+ df_pruned = df[df["pruned"]]
45
+
46
+ print(f"Saving debiased examples to '{pq_debiased_path}'...")
47
+ df_debiased.to_parquet(pq_debiased_path, index=False)
48
+ print(f" -> Saved {len(df_debiased)} debiased examples.")
49
+
50
+ print(f"Saving pruned examples to '{pq_pruned_path}'...")
51
+ df_pruned.to_parquet(pq_pruned_path, index=False)
52
+ print(f" -> Saved {len(df_pruned)} pruned examples.")
53
+
54
+ print("Done.")
pruned_ids.txt ADDED
@@ -0,0 +1,2768 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 1
2
+ 2
3
+ 3
4
+ 4
5
+ 5
6
+ 7
7
+ 8
8
+ 9
9
+ 10
10
+ 13
11
+ 14
12
+ 15
13
+ 16
14
+ 20
15
+ 21
16
+ 22
17
+ 23
18
+ 24
19
+ 26
20
+ 27
21
+ 28
22
+ 29
23
+ 30
24
+ 31
25
+ 32
26
+ 33
27
+ 34
28
+ 35
29
+ 39
30
+ 41
31
+ 43
32
+ 44
33
+ 45
34
+ 46
35
+ 47
36
+ 48
37
+ 50
38
+ 52
39
+ 53
40
+ 54
41
+ 55
42
+ 56
43
+ 57
44
+ 58
45
+ 59
46
+ 61
47
+ 62
48
+ 63
49
+ 64
50
+ 65
51
+ 66
52
+ 67
53
+ 69
54
+ 70
55
+ 72
56
+ 73
57
+ 74
58
+ 75
59
+ 77
60
+ 78
61
+ 79
62
+ 81
63
+ 82
64
+ 83
65
+ 84
66
+ 86
67
+ 89
68
+ 91
69
+ 92
70
+ 93
71
+ 94
72
+ 95
73
+ 96
74
+ 97
75
+ 98
76
+ 100
77
+ 102
78
+ 103
79
+ 105
80
+ 106
81
+ 107
82
+ 108
83
+ 109
84
+ 111
85
+ 115
86
+ 116
87
+ 119
88
+ 120
89
+ 122
90
+ 123
91
+ 124
92
+ 125
93
+ 126
94
+ 127
95
+ 129
96
+ 130
97
+ 131
98
+ 132
99
+ 133
100
+ 135
101
+ 136
102
+ 139
103
+ 141
104
+ 142
105
+ 143
106
+ 144
107
+ 145
108
+ 146
109
+ 147
110
+ 148
111
+ 150
112
+ 151
113
+ 152
114
+ 153
115
+ 154
116
+ 155
117
+ 156
118
+ 157
119
+ 159
120
+ 160
121
+ 161
122
+ 162
123
+ 164
124
+ 165
125
+ 167
126
+ 168
127
+ 169
128
+ 170
129
+ 171
130
+ 172
131
+ 173
132
+ 174
133
+ 175
134
+ 176
135
+ 177
136
+ 178
137
+ 179
138
+ 181
139
+ 184
140
+ 185
141
+ 187
142
+ 188
143
+ 190
144
+ 191
145
+ 192
146
+ 193
147
+ 194
148
+ 197
149
+ 198
150
+ 199
151
+ 200
152
+ 201
153
+ 202
154
+ 203
155
+ 204
156
+ 205
157
+ 206
158
+ 207
159
+ 208
160
+ 209
161
+ 210
162
+ 211
163
+ 213
164
+ 214
165
+ 215
166
+ 216
167
+ 218
168
+ 219
169
+ 222
170
+ 224
171
+ 226
172
+ 228
173
+ 229
174
+ 231
175
+ 232
176
+ 233
177
+ 234
178
+ 236
179
+ 237
180
+ 238
181
+ 241
182
+ 242
183
+ 243
184
+ 244
185
+ 245
186
+ 246
187
+ 247
188
+ 248
189
+ 249
190
+ 250
191
+ 251
192
+ 253
193
+ 254
194
+ 255
195
+ 256
196
+ 259
197
+ 261
198
+ 262
199
+ 263
200
+ 264
201
+ 266
202
+ 267
203
+ 270
204
+ 271
205
+ 272
206
+ 273
207
+ 275
208
+ 276
209
+ 277
210
+ 278
211
+ 279
212
+ 280
213
+ 281
214
+ 282
215
+ 284
216
+ 286
217
+ 287
218
+ 288
219
+ 289
220
+ 291
221
+ 292
222
+ 293
223
+ 294
224
+ 295
225
+ 297
226
+ 299
227
+ 300
228
+ 301
229
+ 302
230
+ 303
231
+ 304
232
+ 305
233
+ 306
234
+ 307
235
+ 308
236
+ 309
237
+ 310
238
+ 311
239
+ 312
240
+ 313
241
+ 316
242
+ 317
243
+ 318
244
+ 319
245
+ 320
246
+ 321
247
+ 322
248
+ 324
249
+ 325
250
+ 326
251
+ 327
252
+ 328
253
+ 329
254
+ 330
255
+ 332
256
+ 334
257
+ 335
258
+ 336
259
+ 338
260
+ 339
261
+ 341
262
+ 342
263
+ 343
264
+ 344
265
+ 345
266
+ 346
267
+ 347
268
+ 348
269
+ 349
270
+ 350
271
+ 351
272
+ 352
273
+ 353
274
+ 355
275
+ 356
276
+ 357
277
+ 358
278
+ 359
279
+ 360
280
+ 362
281
+ 363
282
+ 364
283
+ 365
284
+ 368
285
+ 369
286
+ 371
287
+ 373
288
+ 375
289
+ 376
290
+ 377
291
+ 378
292
+ 379
293
+ 380
294
+ 382
295
+ 383
296
+ 384
297
+ 386
298
+ 388
299
+ 393
300
+ 394
301
+ 395
302
+ 397
303
+ 399
304
+ 400
305
+ 402
306
+ 403
307
+ 404
308
+ 406
309
+ 407
310
+ 408
311
+ 409
312
+ 410
313
+ 411
314
+ 412
315
+ 414
316
+ 417
317
+ 418
318
+ 420
319
+ 421
320
+ 424
321
+ 426
322
+ 427
323
+ 428
324
+ 430
325
+ 432
326
+ 433
327
+ 434
328
+ 435
329
+ 436
330
+ 437
331
+ 438
332
+ 439
333
+ 440
334
+ 442
335
+ 443
336
+ 444
337
+ 445
338
+ 446
339
+ 447
340
+ 448
341
+ 449
342
+ 450
343
+ 451
344
+ 452
345
+ 455
346
+ 456
347
+ 459
348
+ 461
349
+ 462
350
+ 463
351
+ 464
352
+ 465
353
+ 466
354
+ 468
355
+ 469
356
+ 470
357
+ 471
358
+ 472
359
+ 473
360
+ 474
361
+ 475
362
+ 476
363
+ 477
364
+ 478
365
+ 479
366
+ 481
367
+ 482
368
+ 484
369
+ 485
370
+ 486
371
+ 487
372
+ 488
373
+ 489
374
+ 490
375
+ 493
376
+ 494
377
+ 495
378
+ 496
379
+ 500
380
+ 501
381
+ 502
382
+ 503
383
+ 504
384
+ 505
385
+ 506
386
+ 508
387
+ 509
388
+ 511
389
+ 512
390
+ 513
391
+ 514
392
+ 515
393
+ 516
394
+ 517
395
+ 521
396
+ 522
397
+ 523
398
+ 524
399
+ 525
400
+ 526
401
+ 527
402
+ 528
403
+ 529
404
+ 531
405
+ 535
406
+ 537
407
+ 539
408
+ 540
409
+ 544
410
+ 547
411
+ 549
412
+ 551
413
+ 555
414
+ 557
415
+ 563
416
+ 564
417
+ 565
418
+ 568
419
+ 569
420
+ 576
421
+ 580
422
+ 585
423
+ 586
424
+ 590
425
+ 594
426
+ 608
427
+ 610
428
+ 612
429
+ 617
430
+ 618
431
+ 621
432
+ 622
433
+ 623
434
+ 627
435
+ 629
436
+ 632
437
+ 637
438
+ 640
439
+ 643
440
+ 646
441
+ 655
442
+ 658
443
+ 659
444
+ 663
445
+ 668
446
+ 671
447
+ 672
448
+ 675
449
+ 677
450
+ 678
451
+ 679
452
+ 680
453
+ 681
454
+ 682
455
+ 683
456
+ 684
457
+ 685
458
+ 686
459
+ 688
460
+ 690
461
+ 691
462
+ 693
463
+ 695
464
+ 697
465
+ 698
466
+ 704
467
+ 705
468
+ 706
469
+ 708
470
+ 711
471
+ 712
472
+ 713
473
+ 715
474
+ 716
475
+ 717
476
+ 718
477
+ 719
478
+ 722
479
+ 724
480
+ 726
481
+ 728
482
+ 731
483
+ 732
484
+ 733
485
+ 734
486
+ 738
487
+ 740
488
+ 741
489
+ 742
490
+ 744
491
+ 745
492
+ 746
493
+ 750
494
+ 755
495
+ 760
496
+ 761
497
+ 762
498
+ 764
499
+ 765
500
+ 766
501
+ 767
502
+ 772
503
+ 776
504
+ 777
505
+ 778
506
+ 783
507
+ 784
508
+ 785
509
+ 786
510
+ 787
511
+ 799
512
+ 801
513
+ 803
514
+ 804
515
+ 805
516
+ 806
517
+ 808
518
+ 809
519
+ 811
520
+ 813
521
+ 814
522
+ 817
523
+ 818
524
+ 821
525
+ 824
526
+ 826
527
+ 828
528
+ 830
529
+ 831
530
+ 832
531
+ 833
532
+ 835
533
+ 837
534
+ 838
535
+ 840
536
+ 841
537
+ 842
538
+ 845
539
+ 846
540
+ 847
541
+ 848
542
+ 851
543
+ 852
544
+ 853
545
+ 854
546
+ 855
547
+ 856
548
+ 857
549
+ 861
550
+ 862
551
+ 866
552
+ 871
553
+ 875
554
+ 877
555
+ 878
556
+ 881
557
+ 882
558
+ 883
559
+ 888
560
+ 892
561
+ 893
562
+ 894
563
+ 895
564
+ 900
565
+ 903
566
+ 904
567
+ 907
568
+ 910
569
+ 912
570
+ 913
571
+ 916
572
+ 917
573
+ 919
574
+ 920
575
+ 922
576
+ 926
577
+ 928
578
+ 933
579
+ 936
580
+ 938
581
+ 939
582
+ 940
583
+ 941
584
+ 942
585
+ 944
586
+ 945
587
+ 946
588
+ 948
589
+ 949
590
+ 952
591
+ 953
592
+ 954
593
+ 955
594
+ 956
595
+ 957
596
+ 958
597
+ 959
598
+ 960
599
+ 961
600
+ 962
601
+ 963
602
+ 964
603
+ 965
604
+ 967
605
+ 968
606
+ 970
607
+ 971
608
+ 973
609
+ 974
610
+ 975
611
+ 977
612
+ 978
613
+ 979
614
+ 980
615
+ 981
616
+ 982
617
+ 983
618
+ 984
619
+ 985
620
+ 986
621
+ 993
622
+ 995
623
+ 997
624
+ 998
625
+ 1000
626
+ 1001
627
+ 1004
628
+ 1005
629
+ 1006
630
+ 1008
631
+ 1010
632
+ 1012
633
+ 1013
634
+ 1014
635
+ 1015
636
+ 1017
637
+ 1018
638
+ 1020
639
+ 1021
640
+ 1022
641
+ 1023
642
+ 1024
643
+ 1026
644
+ 1029
645
+ 1032
646
+ 1034
647
+ 1035
648
+ 1038
649
+ 1043
650
+ 1044
651
+ 1045
652
+ 1046
653
+ 1047
654
+ 1049
655
+ 1050
656
+ 1051
657
+ 1052
658
+ 1054
659
+ 1055
660
+ 1057
661
+ 1061
662
+ 1063
663
+ 1064
664
+ 1066
665
+ 1068
666
+ 1069
667
+ 1073
668
+ 1074
669
+ 1075
670
+ 1078
671
+ 1079
672
+ 1080
673
+ 1081
674
+ 1082
675
+ 1083
676
+ 1084
677
+ 1085
678
+ 1086
679
+ 1087
680
+ 1088
681
+ 1089
682
+ 1090
683
+ 1092
684
+ 1093
685
+ 1094
686
+ 1096
687
+ 1099
688
+ 1100
689
+ 1101
690
+ 1102
691
+ 1103
692
+ 1104
693
+ 1105
694
+ 1106
695
+ 1107
696
+ 1108
697
+ 1109
698
+ 1110
699
+ 1111
700
+ 1112
701
+ 1114
702
+ 1115
703
+ 1116
704
+ 1117
705
+ 1118
706
+ 1119
707
+ 1120
708
+ 1121
709
+ 1122
710
+ 1123
711
+ 1124
712
+ 1125
713
+ 1126
714
+ 1129
715
+ 1131
716
+ 1133
717
+ 1134
718
+ 1135
719
+ 1136
720
+ 1138
721
+ 1139
722
+ 1140
723
+ 1141
724
+ 1143
725
+ 1144
726
+ 1146
727
+ 1147
728
+ 1148
729
+ 1149
730
+ 1150
731
+ 1151
732
+ 1152
733
+ 1154
734
+ 1155
735
+ 1156
736
+ 1157
737
+ 1158
738
+ 1159
739
+ 1160
740
+ 1161
741
+ 1162
742
+ 1163
743
+ 1164
744
+ 1165
745
+ 1166
746
+ 1168
747
+ 1169
748
+ 1170
749
+ 1171
750
+ 1172
751
+ 1173
752
+ 1174
753
+ 1175
754
+ 1176
755
+ 1177
756
+ 1178
757
+ 1181
758
+ 1182
759
+ 1183
760
+ 1184
761
+ 1185
762
+ 1186
763
+ 1187
764
+ 1188
765
+ 1190
766
+ 1191
767
+ 1192
768
+ 1194
769
+ 1195
770
+ 1196
771
+ 1197
772
+ 1198
773
+ 1199
774
+ 1200
775
+ 1201
776
+ 1202
777
+ 1203
778
+ 1204
779
+ 1205
780
+ 1207
781
+ 1209
782
+ 1210
783
+ 1211
784
+ 1212
785
+ 1213
786
+ 1214
787
+ 1215
788
+ 1216
789
+ 1217
790
+ 1218
791
+ 1219
792
+ 1220
793
+ 1221
794
+ 1222
795
+ 1223
796
+ 1225
797
+ 1226
798
+ 1227
799
+ 1228
800
+ 1229
801
+ 1230
802
+ 1231
803
+ 1232
804
+ 1233
805
+ 1234
806
+ 1236
807
+ 1283
808
+ 1336
809
+ 1339
810
+ 1341
811
+ 1342
812
+ 1346
813
+ 1349
814
+ 1354
815
+ 1356
816
+ 1357
817
+ 1358
818
+ 1359
819
+ 1361
820
+ 1367
821
+ 1372
822
+ 1374
823
+ 1377
824
+ 1378
825
+ 1384
826
+ 1386
827
+ 1389
828
+ 1390
829
+ 1391
830
+ 1392
831
+ 1393
832
+ 1400
833
+ 1408
834
+ 1410
835
+ 1411
836
+ 1412
837
+ 1417
838
+ 1419
839
+ 1422
840
+ 1423
841
+ 1427
842
+ 1429
843
+ 1431
844
+ 1432
845
+ 1435
846
+ 1441
847
+ 1442
848
+ 1443
849
+ 1444
850
+ 1445
851
+ 1446
852
+ 1447
853
+ 1448
854
+ 1450
855
+ 1451
856
+ 1452
857
+ 1453
858
+ 1454
859
+ 1456
860
+ 1457
861
+ 1463
862
+ 1464
863
+ 1465
864
+ 1468
865
+ 1469
866
+ 1476
867
+ 1477
868
+ 1481
869
+ 1483
870
+ 1486
871
+ 1487
872
+ 1496
873
+ 1498
874
+ 1501
875
+ 1502
876
+ 1503
877
+ 1504
878
+ 1505
879
+ 1507
880
+ 1508
881
+ 1509
882
+ 1510
883
+ 1511
884
+ 1512
885
+ 1513
886
+ 1514
887
+ 1516
888
+ 1517
889
+ 1518
890
+ 1519
891
+ 1520
892
+ 1521
893
+ 1522
894
+ 1523
895
+ 1524
896
+ 1525
897
+ 1526
898
+ 1527
899
+ 1528
900
+ 1530
901
+ 1531
902
+ 1532
903
+ 1533
904
+ 1534
905
+ 1535
906
+ 1536
907
+ 1537
908
+ 1538
909
+ 1539
910
+ 1540
911
+ 1541
912
+ 1542
913
+ 1543
914
+ 1544
915
+ 1545
916
+ 1546
917
+ 1547
918
+ 1548
919
+ 1549
920
+ 1550
921
+ 1551
922
+ 1552
923
+ 1553
924
+ 1554
925
+ 1556
926
+ 1557
927
+ 1558
928
+ 1559
929
+ 1561
930
+ 1562
931
+ 1563
932
+ 1564
933
+ 1565
934
+ 1566
935
+ 1567
936
+ 1568
937
+ 1570
938
+ 1571
939
+ 1572
940
+ 1573
941
+ 1574
942
+ 1576
943
+ 1577
944
+ 1578
945
+ 1579
946
+ 1580
947
+ 1581
948
+ 1583
949
+ 1584
950
+ 1587
951
+ 1589
952
+ 1590
953
+ 1591
954
+ 1592
955
+ 1593
956
+ 1594
957
+ 1596
958
+ 1597
959
+ 1599
960
+ 1605
961
+ 1611
962
+ 1612
963
+ 1613
964
+ 1614
965
+ 1616
966
+ 1619
967
+ 1620
968
+ 1621
969
+ 1624
970
+ 1625
971
+ 1629
972
+ 1630
973
+ 1631
974
+ 1634
975
+ 1638
976
+ 1639
977
+ 1643
978
+ 1646
979
+ 1647
980
+ 1648
981
+ 1652
982
+ 1653
983
+ 1654
984
+ 1664
985
+ 1667
986
+ 1668
987
+ 1669
988
+ 1672
989
+ 1675
990
+ 1677
991
+ 1688
992
+ 1690
993
+ 1691
994
+ 1692
995
+ 1698
996
+ 1699
997
+ 1700
998
+ 1702
999
+ 1706
1000
+ 1710
1001
+ 1712
1002
+ 1713
1003
+ 1714
1004
+ 1718
1005
+ 1719
1006
+ 1720
1007
+ 1721
1008
+ 1722
1009
+ 1723
1010
+ 1724
1011
+ 1726
1012
+ 1734
1013
+ 1735
1014
+ 1736
1015
+ 1737
1016
+ 1740
1017
+ 1743
1018
+ 1744
1019
+ 1745
1020
+ 1747
1021
+ 1748
1022
+ 1750
1023
+ 1752
1024
+ 1757
1025
+ 1759
1026
+ 1763
1027
+ 1765
1028
+ 1767
1029
+ 1770
1030
+ 1773
1031
+ 1774
1032
+ 1775
1033
+ 1776
1034
+ 1777
1035
+ 1778
1036
+ 1780
1037
+ 1781
1038
+ 1782
1039
+ 1783
1040
+ 1786
1041
+ 1788
1042
+ 1790
1043
+ 1792
1044
+ 1797
1045
+ 1799
1046
+ 1800
1047
+ 1804
1048
+ 1805
1049
+ 1806
1050
+ 1807
1051
+ 1809
1052
+ 1811
1053
+ 1814
1054
+ 1815
1055
+ 1816
1056
+ 1817
1057
+ 1819
1058
+ 1821
1059
+ 1822
1060
+ 1823
1061
+ 1824
1062
+ 1825
1063
+ 1826
1064
+ 1827
1065
+ 1828
1066
+ 1831
1067
+ 1832
1068
+ 1833
1069
+ 1835
1070
+ 1836
1071
+ 1838
1072
+ 1840
1073
+ 1841
1074
+ 1842
1075
+ 1843
1076
+ 1845
1077
+ 1846
1078
+ 1847
1079
+ 1850
1080
+ 1851
1081
+ 1852
1082
+ 1856
1083
+ 1858
1084
+ 1861
1085
+ 1862
1086
+ 1863
1087
+ 1864
1088
+ 1865
1089
+ 1866
1090
+ 1869
1091
+ 1870
1092
+ 1871
1093
+ 1872
1094
+ 1873
1095
+ 1874
1096
+ 1875
1097
+ 1876
1098
+ 1878
1099
+ 1879
1100
+ 1881
1101
+ 1882
1102
+ 1883
1103
+ 1884
1104
+ 1885
1105
+ 1886
1106
+ 1887
1107
+ 1888
1108
+ 1889
1109
+ 1890
1110
+ 1891
1111
+ 1892
1112
+ 1893
1113
+ 1894
1114
+ 1896
1115
+ 1897
1116
+ 1899
1117
+ 1900
1118
+ 1903
1119
+ 1904
1120
+ 1905
1121
+ 1906
1122
+ 1907
1123
+ 1910
1124
+ 1912
1125
+ 1913
1126
+ 1914
1127
+ 1915
1128
+ 1917
1129
+ 1920
1130
+ 1922
1131
+ 1924
1132
+ 1925
1133
+ 1926
1134
+ 1928
1135
+ 1929
1136
+ 1930
1137
+ 1931
1138
+ 1933
1139
+ 1936
1140
+ 1939
1141
+ 1941
1142
+ 1942
1143
+ 1944
1144
+ 1947
1145
+ 1949
1146
+ 1952
1147
+ 1953
1148
+ 1954
1149
+ 1955
1150
+ 1956
1151
+ 1957
1152
+ 1958
1153
+ 1959
1154
+ 1960
1155
+ 1962
1156
+ 1963
1157
+ 1966
1158
+ 1970
1159
+ 1972
1160
+ 1973
1161
+ 1975
1162
+ 1977
1163
+ 1978
1164
+ 1980
1165
+ 1981
1166
+ 1982
1167
+ 1983
1168
+ 1992
1169
+ 1995
1170
+ 1999
1171
+ 2002
1172
+ 2003
1173
+ 2009
1174
+ 2011
1175
+ 2013
1176
+ 2015
1177
+ 2016
1178
+ 2017
1179
+ 2018
1180
+ 2019
1181
+ 2022
1182
+ 2023
1183
+ 2024
1184
+ 2026
1185
+ 2028
1186
+ 2030
1187
+ 2031
1188
+ 2032
1189
+ 2033
1190
+ 2034
1191
+ 2035
1192
+ 2036
1193
+ 2037
1194
+ 2039
1195
+ 2041
1196
+ 2042
1197
+ 2043
1198
+ 2044
1199
+ 2045
1200
+ 2046
1201
+ 2047
1202
+ 2048
1203
+ 2049
1204
+ 2050
1205
+ 2051
1206
+ 2052
1207
+ 2053
1208
+ 2054
1209
+ 2056
1210
+ 2059
1211
+ 2060
1212
+ 2061
1213
+ 2062
1214
+ 2063
1215
+ 2064
1216
+ 2065
1217
+ 2067
1218
+ 2068
1219
+ 2069
1220
+ 2071
1221
+ 2072
1222
+ 2074
1223
+ 2076
1224
+ 2077
1225
+ 2078
1226
+ 2079
1227
+ 2080
1228
+ 2081
1229
+ 2082
1230
+ 2083
1231
+ 2084
1232
+ 2085
1233
+ 2086
1234
+ 2087
1235
+ 2088
1236
+ 2089
1237
+ 2090
1238
+ 2092
1239
+ 2096
1240
+ 2097
1241
+ 2101
1242
+ 2102
1243
+ 2103
1244
+ 2105
1245
+ 2107
1246
+ 2108
1247
+ 2110
1248
+ 2111
1249
+ 2112
1250
+ 2113
1251
+ 2115
1252
+ 2116
1253
+ 2117
1254
+ 2118
1255
+ 2119
1256
+ 2122
1257
+ 2123
1258
+ 2124
1259
+ 2126
1260
+ 2127
1261
+ 2128
1262
+ 2132
1263
+ 2133
1264
+ 2134
1265
+ 2135
1266
+ 2137
1267
+ 2139
1268
+ 2142
1269
+ 2144
1270
+ 2146
1271
+ 2147
1272
+ 2148
1273
+ 2150
1274
+ 2151
1275
+ 2152
1276
+ 2155
1277
+ 2163
1278
+ 2164
1279
+ 2166
1280
+ 2168
1281
+ 2169
1282
+ 2170
1283
+ 2171
1284
+ 2172
1285
+ 2173
1286
+ 2174
1287
+ 2175
1288
+ 2176
1289
+ 2177
1290
+ 2178
1291
+ 2179
1292
+ 2180
1293
+ 2182
1294
+ 2183
1295
+ 2184
1296
+ 2185
1297
+ 2186
1298
+ 2187
1299
+ 2188
1300
+ 2189
1301
+ 2195
1302
+ 2196
1303
+ 2199
1304
+ 2201
1305
+ 2208
1306
+ 2213
1307
+ 2214
1308
+ 2220
1309
+ 2222
1310
+ 2226
1311
+ 2229
1312
+ 2230
1313
+ 2231
1314
+ 2235
1315
+ 2236
1316
+ 2238
1317
+ 2240
1318
+ 2242
1319
+ 2243
1320
+ 2244
1321
+ 2248
1322
+ 2250
1323
+ 2253
1324
+ 2255
1325
+ 2256
1326
+ 2259
1327
+ 2261
1328
+ 2263
1329
+ 2264
1330
+ 2265
1331
+ 2266
1332
+ 2267
1333
+ 2268
1334
+ 2269
1335
+ 2270
1336
+ 2274
1337
+ 2279
1338
+ 2281
1339
+ 2284
1340
+ 2285
1341
+ 2286
1342
+ 2291
1343
+ 2292
1344
+ 2293
1345
+ 2294
1346
+ 2295
1347
+ 2297
1348
+ 2299
1349
+ 2302
1350
+ 2304
1351
+ 2305
1352
+ 2306
1353
+ 2307
1354
+ 2308
1355
+ 2310
1356
+ 2312
1357
+ 2313
1358
+ 2318
1359
+ 2319
1360
+ 2322
1361
+ 2324
1362
+ 2325
1363
+ 2328
1364
+ 2330
1365
+ 2333
1366
+ 2336
1367
+ 2337
1368
+ 2341
1369
+ 2342
1370
+ 2343
1371
+ 2344
1372
+ 2345
1373
+ 2347
1374
+ 2348
1375
+ 2349
1376
+ 2351
1377
+ 2352
1378
+ 2353
1379
+ 2354
1380
+ 2355
1381
+ 2356
1382
+ 2364
1383
+ 2367
1384
+ 2369
1385
+ 2372
1386
+ 2374
1387
+ 2376
1388
+ 2378
1389
+ 2379
1390
+ 2381
1391
+ 2384
1392
+ 2387
1393
+ 2389
1394
+ 2390
1395
+ 2391
1396
+ 2392
1397
+ 2393
1398
+ 2395
1399
+ 2396
1400
+ 2397
1401
+ 2399
1402
+ 2401
1403
+ 2402
1404
+ 2403
1405
+ 2405
1406
+ 2407
1407
+ 2409
1408
+ 2414
1409
+ 2415
1410
+ 2418
1411
+ 2463
1412
+ 2477
1413
+ 2484
1414
+ 2486
1415
+ 2488
1416
+ 2489
1417
+ 2490
1418
+ 2491
1419
+ 2495
1420
+ 2496
1421
+ 2499
1422
+ 2500
1423
+ 2506
1424
+ 2508
1425
+ 2509
1426
+ 2513
1427
+ 2516
1428
+ 2518
1429
+ 2520
1430
+ 2527
1431
+ 2533
1432
+ 2534
1433
+ 2536
1434
+ 2537
1435
+ 2539
1436
+ 2540
1437
+ 2541
1438
+ 2543
1439
+ 2547
1440
+ 2548
1441
+ 2550
1442
+ 2551
1443
+ 2554
1444
+ 2561
1445
+ 2574
1446
+ 2576
1447
+ 2578
1448
+ 2581
1449
+ 2582
1450
+ 2583
1451
+ 2588
1452
+ 2590
1453
+ 2591
1454
+ 2593
1455
+ 2598
1456
+ 2599
1457
+ 2602
1458
+ 2607
1459
+ 2616
1460
+ 2618
1461
+ 2627
1462
+ 2628
1463
+ 2629
1464
+ 2634
1465
+ 2638
1466
+ 2641
1467
+ 2644
1468
+ 2652
1469
+ 2656
1470
+ 2658
1471
+ 2659
1472
+ 2662
1473
+ 2663
1474
+ 2666
1475
+ 2668
1476
+ 2671
1477
+ 2683
1478
+ 2684
1479
+ 2686
1480
+ 2688
1481
+ 2689
1482
+ 2693
1483
+ 2697
1484
+ 2698
1485
+ 2706
1486
+ 2715
1487
+ 2718
1488
+ 2721
1489
+ 2722
1490
+ 2724
1491
+ 2725
1492
+ 2726
1493
+ 2727
1494
+ 2730
1495
+ 2732
1496
+ 2734
1497
+ 2737
1498
+ 2738
1499
+ 2739
1500
+ 2740
1501
+ 2742
1502
+ 2744
1503
+ 2746
1504
+ 2747
1505
+ 2748
1506
+ 2750
1507
+ 2752
1508
+ 2753
1509
+ 2754
1510
+ 2756
1511
+ 2757
1512
+ 2758
1513
+ 2759
1514
+ 2760
1515
+ 2761
1516
+ 2763
1517
+ 2765
1518
+ 2767
1519
+ 2782
1520
+ 2783
1521
+ 2784
1522
+ 2789
1523
+ 2798
1524
+ 2802
1525
+ 2807
1526
+ 2812
1527
+ 2815
1528
+ 2816
1529
+ 2817
1530
+ 2819
1531
+ 2820
1532
+ 2822
1533
+ 2823
1534
+ 2825
1535
+ 2826
1536
+ 2827
1537
+ 2830
1538
+ 2831
1539
+ 2832
1540
+ 2833
1541
+ 2834
1542
+ 2835
1543
+ 2837
1544
+ 2838
1545
+ 2840
1546
+ 2859
1547
+ 2864
1548
+ 2868
1549
+ 2869
1550
+ 2876
1551
+ 2877
1552
+ 2879
1553
+ 2880
1554
+ 2883
1555
+ 2885
1556
+ 2889
1557
+ 2892
1558
+ 2893
1559
+ 2895
1560
+ 2896
1561
+ 2897
1562
+ 2898
1563
+ 2899
1564
+ 2902
1565
+ 2905
1566
+ 2906
1567
+ 2907
1568
+ 2908
1569
+ 2913
1570
+ 2929
1571
+ 2930
1572
+ 2933
1573
+ 2934
1574
+ 2935
1575
+ 2944
1576
+ 2951
1577
+ 2952
1578
+ 2953
1579
+ 2954
1580
+ 2955
1581
+ 2956
1582
+ 2958
1583
+ 2959
1584
+ 2960
1585
+ 2966
1586
+ 2967
1587
+ 2968
1588
+ 2969
1589
+ 2972
1590
+ 2975
1591
+ 2978
1592
+ 2980
1593
+ 2981
1594
+ 2984
1595
+ 2985
1596
+ 2986
1597
+ 2987
1598
+ 2989
1599
+ 2990
1600
+ 2992
1601
+ 2993
1602
+ 2994
1603
+ 2995
1604
+ 2996
1605
+ 2999
1606
+ 3000
1607
+ 3002
1608
+ 3003
1609
+ 3004
1610
+ 3005
1611
+ 3006
1612
+ 3009
1613
+ 3010
1614
+ 3011
1615
+ 3020
1616
+ 3022
1617
+ 3024
1618
+ 3026
1619
+ 3029
1620
+ 3031
1621
+ 3034
1622
+ 3036
1623
+ 3037
1624
+ 3038
1625
+ 3040
1626
+ 3041
1627
+ 3042
1628
+ 3047
1629
+ 3049
1630
+ 3050
1631
+ 3051
1632
+ 3053
1633
+ 3054
1634
+ 3056
1635
+ 3058
1636
+ 3059
1637
+ 3060
1638
+ 3065
1639
+ 3066
1640
+ 3067
1641
+ 3069
1642
+ 3070
1643
+ 3072
1644
+ 3073
1645
+ 3074
1646
+ 3075
1647
+ 3076
1648
+ 3077
1649
+ 3079
1650
+ 3080
1651
+ 3083
1652
+ 3084
1653
+ 3085
1654
+ 3086
1655
+ 3087
1656
+ 3088
1657
+ 3089
1658
+ 3090
1659
+ 3091
1660
+ 3095
1661
+ 3103
1662
+ 3104
1663
+ 3106
1664
+ 3108
1665
+ 3111
1666
+ 3118
1667
+ 3120
1668
+ 3121
1669
+ 3123
1670
+ 3124
1671
+ 3125
1672
+ 3127
1673
+ 3128
1674
+ 3129
1675
+ 3130
1676
+ 3131
1677
+ 3134
1678
+ 3136
1679
+ 3137
1680
+ 3139
1681
+ 3140
1682
+ 3144
1683
+ 3145
1684
+ 3146
1685
+ 3147
1686
+ 3148
1687
+ 3149
1688
+ 3150
1689
+ 3152
1690
+ 3153
1691
+ 3154
1692
+ 3155
1693
+ 3156
1694
+ 3157
1695
+ 3158
1696
+ 3160
1697
+ 3161
1698
+ 3162
1699
+ 3165
1700
+ 3167
1701
+ 3169
1702
+ 3171
1703
+ 3173
1704
+ 3174
1705
+ 3175
1706
+ 3176
1707
+ 3177
1708
+ 3179
1709
+ 3180
1710
+ 3181
1711
+ 3184
1712
+ 3185
1713
+ 3186
1714
+ 3187
1715
+ 3188
1716
+ 3189
1717
+ 3190
1718
+ 3191
1719
+ 3192
1720
+ 3193
1721
+ 3194
1722
+ 3196
1723
+ 3197
1724
+ 3198
1725
+ 3199
1726
+ 3200
1727
+ 3201
1728
+ 3203
1729
+ 3206
1730
+ 3207
1731
+ 3208
1732
+ 3211
1733
+ 3212
1734
+ 3213
1735
+ 3215
1736
+ 3216
1737
+ 3218
1738
+ 3219
1739
+ 3220
1740
+ 3222
1741
+ 3224
1742
+ 3228
1743
+ 3229
1744
+ 3230
1745
+ 3231
1746
+ 3232
1747
+ 3235
1748
+ 3236
1749
+ 3239
1750
+ 3241
1751
+ 3242
1752
+ 3243
1753
+ 3244
1754
+ 3245
1755
+ 3247
1756
+ 3250
1757
+ 3254
1758
+ 3255
1759
+ 3256
1760
+ 3257
1761
+ 3258
1762
+ 3259
1763
+ 3261
1764
+ 3262
1765
+ 3263
1766
+ 3264
1767
+ 3265
1768
+ 3266
1769
+ 3269
1770
+ 3270
1771
+ 3280
1772
+ 3283
1773
+ 3284
1774
+ 3285
1775
+ 3287
1776
+ 3288
1777
+ 3289
1778
+ 3290
1779
+ 3293
1780
+ 3294
1781
+ 3295
1782
+ 3299
1783
+ 3300
1784
+ 3301
1785
+ 3302
1786
+ 3303
1787
+ 3305
1788
+ 3306
1789
+ 3309
1790
+ 3310
1791
+ 3312
1792
+ 3314
1793
+ 3315
1794
+ 3317
1795
+ 3320
1796
+ 3321
1797
+ 3323
1798
+ 3324
1799
+ 3325
1800
+ 3328
1801
+ 3331
1802
+ 3332
1803
+ 3334
1804
+ 3337
1805
+ 3338
1806
+ 3340
1807
+ 3342
1808
+ 3344
1809
+ 3346
1810
+ 3347
1811
+ 3349
1812
+ 3352
1813
+ 3355
1814
+ 3357
1815
+ 3358
1816
+ 3359
1817
+ 3360
1818
+ 3362
1819
+ 3363
1820
+ 3364
1821
+ 3365
1822
+ 3367
1823
+ 3368
1824
+ 3369
1825
+ 3371
1826
+ 3373
1827
+ 3374
1828
+ 3376
1829
+ 3378
1830
+ 3379
1831
+ 3381
1832
+ 3383
1833
+ 3385
1834
+ 3386
1835
+ 3387
1836
+ 3389
1837
+ 3390
1838
+ 3393
1839
+ 3394
1840
+ 3395
1841
+ 3396
1842
+ 3397
1843
+ 3399
1844
+ 3400
1845
+ 3401
1846
+ 3402
1847
+ 3403
1848
+ 3404
1849
+ 3405
1850
+ 3406
1851
+ 3409
1852
+ 3410
1853
+ 3415
1854
+ 3416
1855
+ 3418
1856
+ 3421
1857
+ 3422
1858
+ 3424
1859
+ 3425
1860
+ 3426
1861
+ 3427
1862
+ 3429
1863
+ 3430
1864
+ 3433
1865
+ 3435
1866
+ 3436
1867
+ 3437
1868
+ 3438
1869
+ 3439
1870
+ 3440
1871
+ 3441
1872
+ 3443
1873
+ 3444
1874
+ 3445
1875
+ 3446
1876
+ 3447
1877
+ 3451
1878
+ 3452
1879
+ 3453
1880
+ 3455
1881
+ 3456
1882
+ 3458
1883
+ 3461
1884
+ 3466
1885
+ 3468
1886
+ 3469
1887
+ 3473
1888
+ 3474
1889
+ 3475
1890
+ 3476
1891
+ 3477
1892
+ 3481
1893
+ 3482
1894
+ 3483
1895
+ 3487
1896
+ 3488
1897
+ 3490
1898
+ 3491
1899
+ 3493
1900
+ 3494
1901
+ 3497
1902
+ 3498
1903
+ 3502
1904
+ 3503
1905
+ 3504
1906
+ 3506
1907
+ 3509
1908
+ 3510
1909
+ 3511
1910
+ 3514
1911
+ 3515
1912
+ 3517
1913
+ 3520
1914
+ 3521
1915
+ 3523
1916
+ 3524
1917
+ 3525
1918
+ 3526
1919
+ 3529
1920
+ 3530
1921
+ 3531
1922
+ 3533
1923
+ 3535
1924
+ 3540
1925
+ 3541
1926
+ 3543
1927
+ 3545
1928
+ 3547
1929
+ 3548
1930
+ 3551
1931
+ 3553
1932
+ 3556
1933
+ 3557
1934
+ 3559
1935
+ 3560
1936
+ 3561
1937
+ 3562
1938
+ 3563
1939
+ 3564
1940
+ 3567
1941
+ 3570
1942
+ 3572
1943
+ 3573
1944
+ 3574
1945
+ 3576
1946
+ 3577
1947
+ 3578
1948
+ 3579
1949
+ 3580
1950
+ 3581
1951
+ 3583
1952
+ 3584
1953
+ 3585
1954
+ 3586
1955
+ 3588
1956
+ 3590
1957
+ 3591
1958
+ 3592
1959
+ 3594
1960
+ 3596
1961
+ 3597
1962
+ 3598
1963
+ 3599
1964
+ 3600
1965
+ 3602
1966
+ 3603
1967
+ 3604
1968
+ 3605
1969
+ 3606
1970
+ 3608
1971
+ 3609
1972
+ 3610
1973
+ 3611
1974
+ 3612
1975
+ 3613
1976
+ 3614
1977
+ 3615
1978
+ 3616
1979
+ 3617
1980
+ 3618
1981
+ 3619
1982
+ 3620
1983
+ 3621
1984
+ 3622
1985
+ 3623
1986
+ 3624
1987
+ 3625
1988
+ 3626
1989
+ 3627
1990
+ 3628
1991
+ 3629
1992
+ 3630
1993
+ 3631
1994
+ 3632
1995
+ 3633
1996
+ 3634
1997
+ 3638
1998
+ 3639
1999
+ 3640
2000
+ 3642
2001
+ 3643
2002
+ 3646
2003
+ 3649
2004
+ 3650
2005
+ 3651
2006
+ 3652
2007
+ 3653
2008
+ 3655
2009
+ 3656
2010
+ 3657
2011
+ 3658
2012
+ 3659
2013
+ 3666
2014
+ 3667
2015
+ 3668
2016
+ 3670
2017
+ 3671
2018
+ 3673
2019
+ 3676
2020
+ 3679
2021
+ 3682
2022
+ 3683
2023
+ 3685
2024
+ 3686
2025
+ 3688
2026
+ 3689
2027
+ 3690
2028
+ 3692
2029
+ 3693
2030
+ 3694
2031
+ 3695
2032
+ 3696
2033
+ 3697
2034
+ 3711
2035
+ 3763
2036
+ 3767
2037
+ 3768
2038
+ 3769
2039
+ 3773
2040
+ 3778
2041
+ 3779
2042
+ 3785
2043
+ 3789
2044
+ 3792
2045
+ 3794
2046
+ 3796
2047
+ 3799
2048
+ 3801
2049
+ 3808
2050
+ 3809
2051
+ 3814
2052
+ 3819
2053
+ 3820
2054
+ 3822
2055
+ 3826
2056
+ 3830
2057
+ 3832
2058
+ 3833
2059
+ 3836
2060
+ 3838
2061
+ 3844
2062
+ 3850
2063
+ 3852
2064
+ 3853
2065
+ 3854
2066
+ 3855
2067
+ 3859
2068
+ 3860
2069
+ 3861
2070
+ 3862
2071
+ 3865
2072
+ 3869
2073
+ 3871
2074
+ 3872
2075
+ 3873
2076
+ 3874
2077
+ 3877
2078
+ 3878
2079
+ 3879
2080
+ 3880
2081
+ 3881
2082
+ 3882
2083
+ 3883
2084
+ 3884
2085
+ 3885
2086
+ 3886
2087
+ 3887
2088
+ 3888
2089
+ 3889
2090
+ 3891
2091
+ 3892
2092
+ 3894
2093
+ 3895
2094
+ 3896
2095
+ 3900
2096
+ 3903
2097
+ 3908
2098
+ 3909
2099
+ 3910
2100
+ 3912
2101
+ 3914
2102
+ 3915
2103
+ 3916
2104
+ 3917
2105
+ 3918
2106
+ 3919
2107
+ 3922
2108
+ 3923
2109
+ 3924
2110
+ 3925
2111
+ 3927
2112
+ 3928
2113
+ 3929
2114
+ 3930
2115
+ 3931
2116
+ 3932
2117
+ 3933
2118
+ 3934
2119
+ 3935
2120
+ 3936
2121
+ 3937
2122
+ 3947
2123
+ 3951
2124
+ 3954
2125
+ 3957
2126
+ 3960
2127
+ 3965
2128
+ 3966
2129
+ 3967
2130
+ 3973
2131
+ 3974
2132
+ 3975
2133
+ 3976
2134
+ 3977
2135
+ 3978
2136
+ 3979
2137
+ 3980
2138
+ 3981
2139
+ 3982
2140
+ 3983
2141
+ 3984
2142
+ 3985
2143
+ 3986
2144
+ 3987
2145
+ 3988
2146
+ 3990
2147
+ 3991
2148
+ 3992
2149
+ 3993
2150
+ 3994
2151
+ 3995
2152
+ 3996
2153
+ 3997
2154
+ 3998
2155
+ 3999
2156
+ 4000
2157
+ 4001
2158
+ 4002
2159
+ 4015
2160
+ 4017
2161
+ 4018
2162
+ 4021
2163
+ 4025
2164
+ 4026
2165
+ 4028
2166
+ 4029
2167
+ 4035
2168
+ 4036
2169
+ 4040
2170
+ 4047
2171
+ 4050
2172
+ 4052
2173
+ 4054
2174
+ 4055
2175
+ 4056
2176
+ 4058
2177
+ 4060
2178
+ 4062
2179
+ 4063
2180
+ 4064
2181
+ 4067
2182
+ 4068
2183
+ 4072
2184
+ 4073
2185
+ 4076
2186
+ 4078
2187
+ 4080
2188
+ 4081
2189
+ 4082
2190
+ 4083
2191
+ 4084
2192
+ 4085
2193
+ 4087
2194
+ 4088
2195
+ 4089
2196
+ 4092
2197
+ 4093
2198
+ 4095
2199
+ 4096
2200
+ 4098
2201
+ 4099
2202
+ 4100
2203
+ 4101
2204
+ 4102
2205
+ 4103
2206
+ 4105
2207
+ 4106
2208
+ 4107
2209
+ 4109
2210
+ 4122
2211
+ 4124
2212
+ 4125
2213
+ 4127
2214
+ 4129
2215
+ 4130
2216
+ 4131
2217
+ 4132
2218
+ 4133
2219
+ 4134
2220
+ 4135
2221
+ 4136
2222
+ 4137
2223
+ 4139
2224
+ 4141
2225
+ 4143
2226
+ 4145
2227
+ 4148
2228
+ 4149
2229
+ 4151
2230
+ 4152
2231
+ 4154
2232
+ 4156
2233
+ 4157
2234
+ 4158
2235
+ 4159
2236
+ 4160
2237
+ 4162
2238
+ 4163
2239
+ 4164
2240
+ 4165
2241
+ 4166
2242
+ 4167
2243
+ 4168
2244
+ 4169
2245
+ 4170
2246
+ 4174
2247
+ 4175
2248
+ 4176
2249
+ 4180
2250
+ 4188
2251
+ 4189
2252
+ 4191
2253
+ 4194
2254
+ 4195
2255
+ 4201
2256
+ 4203
2257
+ 4204
2258
+ 4205
2259
+ 4207
2260
+ 4209
2261
+ 4212
2262
+ 4214
2263
+ 4216
2264
+ 4217
2265
+ 4218
2266
+ 4222
2267
+ 4225
2268
+ 4229
2269
+ 4231
2270
+ 4234
2271
+ 4235
2272
+ 4241
2273
+ 4242
2274
+ 4243
2275
+ 4245
2276
+ 4246
2277
+ 4247
2278
+ 4248
2279
+ 4249
2280
+ 4250
2281
+ 4251
2282
+ 4253
2283
+ 4254
2284
+ 4255
2285
+ 4256
2286
+ 4257
2287
+ 4258
2288
+ 4260
2289
+ 4261
2290
+ 4262
2291
+ 4265
2292
+ 4266
2293
+ 4267
2294
+ 4268
2295
+ 4269
2296
+ 4270
2297
+ 4271
2298
+ 4272
2299
+ 4273
2300
+ 4274
2301
+ 4275
2302
+ 4276
2303
+ 4277
2304
+ 4278
2305
+ 4279
2306
+ 4280
2307
+ 4282
2308
+ 4283
2309
+ 4284
2310
+ 4285
2311
+ 4286
2312
+ 4287
2313
+ 4291
2314
+ 4292
2315
+ 4293
2316
+ 4294
2317
+ 4295
2318
+ 4296
2319
+ 4297
2320
+ 4298
2321
+ 4299
2322
+ 4300
2323
+ 4301
2324
+ 4302
2325
+ 4303
2326
+ 4304
2327
+ 4305
2328
+ 4307
2329
+ 4308
2330
+ 4309
2331
+ 4310
2332
+ 4313
2333
+ 4314
2334
+ 4316
2335
+ 4317
2336
+ 4318
2337
+ 4319
2338
+ 4320
2339
+ 4321
2340
+ 4322
2341
+ 4323
2342
+ 4324
2343
+ 4325
2344
+ 4326
2345
+ 4327
2346
+ 4328
2347
+ 4329
2348
+ 4330
2349
+ 4331
2350
+ 4333
2351
+ 4334
2352
+ 4335
2353
+ 4336
2354
+ 4337
2355
+ 4338
2356
+ 4339
2357
+ 4340
2358
+ 4341
2359
+ 4342
2360
+ 4343
2361
+ 4344
2362
+ 4345
2363
+ 4346
2364
+ 4347
2365
+ 4350
2366
+ 4352
2367
+ 4353
2368
+ 4354
2369
+ 4355
2370
+ 4356
2371
+ 4357
2372
+ 4358
2373
+ 4359
2374
+ 4360
2375
+ 4362
2376
+ 4363
2377
+ 4365
2378
+ 4366
2379
+ 4367
2380
+ 4368
2381
+ 4369
2382
+ 4370
2383
+ 4371
2384
+ 4372
2385
+ 4373
2386
+ 4374
2387
+ 4375
2388
+ 4376
2389
+ 4377
2390
+ 4378
2391
+ 4379
2392
+ 4384
2393
+ 4385
2394
+ 4386
2395
+ 4390
2396
+ 4391
2397
+ 4394
2398
+ 4395
2399
+ 4396
2400
+ 4398
2401
+ 4399
2402
+ 4401
2403
+ 4402
2404
+ 4403
2405
+ 4404
2406
+ 4406
2407
+ 4407
2408
+ 4410
2409
+ 4414
2410
+ 4415
2411
+ 4416
2412
+ 4419
2413
+ 4420
2414
+ 4422
2415
+ 4423
2416
+ 4425
2417
+ 4426
2418
+ 4427
2419
+ 4432
2420
+ 4434
2421
+ 4435
2422
+ 4436
2423
+ 4437
2424
+ 4438
2425
+ 4439
2426
+ 4442
2427
+ 4443
2428
+ 4445
2429
+ 4447
2430
+ 4449
2431
+ 4450
2432
+ 4451
2433
+ 4453
2434
+ 4455
2435
+ 4458
2436
+ 4459
2437
+ 4463
2438
+ 4464
2439
+ 4465
2440
+ 4466
2441
+ 4467
2442
+ 4468
2443
+ 4470
2444
+ 4472
2445
+ 4473
2446
+ 4474
2447
+ 4475
2448
+ 4478
2449
+ 4479
2450
+ 4480
2451
+ 4481
2452
+ 4483
2453
+ 4484
2454
+ 4485
2455
+ 4486
2456
+ 4488
2457
+ 4489
2458
+ 4493
2459
+ 4494
2460
+ 4495
2461
+ 4496
2462
+ 4497
2463
+ 4498
2464
+ 4499
2465
+ 4501
2466
+ 4507
2467
+ 4510
2468
+ 4511
2469
+ 4512
2470
+ 4513
2471
+ 4518
2472
+ 4519
2473
+ 4521
2474
+ 4523
2475
+ 4525
2476
+ 4526
2477
+ 4527
2478
+ 4528
2479
+ 4529
2480
+ 4530
2481
+ 4533
2482
+ 4534
2483
+ 4535
2484
+ 4536
2485
+ 4537
2486
+ 4538
2487
+ 4539
2488
+ 4540
2489
+ 4542
2490
+ 4543
2491
+ 4544
2492
+ 4547
2493
+ 4552
2494
+ 4553
2495
+ 4554
2496
+ 4555
2497
+ 4558
2498
+ 4559
2499
+ 4564
2500
+ 4565
2501
+ 4568
2502
+ 4572
2503
+ 4575
2504
+ 4576
2505
+ 4577
2506
+ 4579
2507
+ 4580
2508
+ 4581
2509
+ 4583
2510
+ 4584
2511
+ 4585
2512
+ 4586
2513
+ 4587
2514
+ 4588
2515
+ 4591
2516
+ 4592
2517
+ 4593
2518
+ 4594
2519
+ 4595
2520
+ 4598
2521
+ 4600
2522
+ 4604
2523
+ 4605
2524
+ 4609
2525
+ 4610
2526
+ 4612
2527
+ 4614
2528
+ 4615
2529
+ 4616
2530
+ 4619
2531
+ 4620
2532
+ 4621
2533
+ 4624
2534
+ 4625
2535
+ 4626
2536
+ 4627
2537
+ 4628
2538
+ 4630
2539
+ 4631
2540
+ 4632
2541
+ 4635
2542
+ 4640
2543
+ 4642
2544
+ 4643
2545
+ 4644
2546
+ 4648
2547
+ 4650
2548
+ 4651
2549
+ 4662
2550
+ 4663
2551
+ 4670
2552
+ 4671
2553
+ 4672
2554
+ 4674
2555
+ 4675
2556
+ 4676
2557
+ 4678
2558
+ 4679
2559
+ 4682
2560
+ 4685
2561
+ 4686
2562
+ 4691
2563
+ 4692
2564
+ 4694
2565
+ 4695
2566
+ 4696
2567
+ 4699
2568
+ 4701
2569
+ 4704
2570
+ 4706
2571
+ 4708
2572
+ 4709
2573
+ 4711
2574
+ 4717
2575
+ 4722
2576
+ 4724
2577
+ 4725
2578
+ 4727
2579
+ 4729
2580
+ 4730
2581
+ 4732
2582
+ 4735
2583
+ 4736
2584
+ 4737
2585
+ 4740
2586
+ 4742
2587
+ 4743
2588
+ 4747
2589
+ 4748
2590
+ 4749
2591
+ 4750
2592
+ 4751
2593
+ 4754
2594
+ 4755
2595
+ 4756
2596
+ 4757
2597
+ 4760
2598
+ 4762
2599
+ 4763
2600
+ 4765
2601
+ 4769
2602
+ 4775
2603
+ 4777
2604
+ 4780
2605
+ 4781
2606
+ 4787
2607
+ 4791
2608
+ 4793
2609
+ 4794
2610
+ 4796
2611
+ 4797
2612
+ 4798
2613
+ 4799
2614
+ 4802
2615
+ 4803
2616
+ 4805
2617
+ 4806
2618
+ 4810
2619
+ 4811
2620
+ 4812
2621
+ 4814
2622
+ 4821
2623
+ 4822
2624
+ 4823
2625
+ 4825
2626
+ 4826
2627
+ 4827
2628
+ 4829
2629
+ 4832
2630
+ 4833
2631
+ 4834
2632
+ 4836
2633
+ 4838
2634
+ 4839
2635
+ 4841
2636
+ 4843
2637
+ 4845
2638
+ 4847
2639
+ 4848
2640
+ 4851
2641
+ 4852
2642
+ 4854
2643
+ 4855
2644
+ 4857
2645
+ 4859
2646
+ 4870
2647
+ 4871
2648
+ 4873
2649
+ 4874
2650
+ 4876
2651
+ 4877
2652
+ 4882
2653
+ 4884
2654
+ 4885
2655
+ 4887
2656
+ 4888
2657
+ 4889
2658
+ 4890
2659
+ 4891
2660
+ 4893
2661
+ 4894
2662
+ 4895
2663
+ 4897
2664
+ 4898
2665
+ 4899
2666
+ 4900
2667
+ 4901
2668
+ 4902
2669
+ 4908
2670
+ 4910
2671
+ 4913
2672
+ 4915
2673
+ 4916
2674
+ 4918
2675
+ 4919
2676
+ 4922
2677
+ 4926
2678
+ 4928
2679
+ 4930
2680
+ 4931
2681
+ 4933
2682
+ 4941
2683
+ 4942
2684
+ 4949
2685
+ 4952
2686
+ 4954
2687
+ 4955
2688
+ 4958
2689
+ 4959
2690
+ 4965
2691
+ 4967
2692
+ 4969
2693
+ 4970
2694
+ 4971
2695
+ 4972
2696
+ 4973
2697
+ 4974
2698
+ 4975
2699
+ 4976
2700
+ 4977
2701
+ 4979
2702
+ 4983
2703
+ 4984
2704
+ 4985
2705
+ 4986
2706
+ 4987
2707
+ 4988
2708
+ 4990
2709
+ 4991
2710
+ 4992
2711
+ 4993
2712
+ 4996
2713
+ 4997
2714
+ 4998
2715
+ 4999
2716
+ 5000
2717
+ 5002
2718
+ 5003
2719
+ 5004
2720
+ 5005
2721
+ 5007
2722
+ 5009
2723
+ 5010
2724
+ 5014
2725
+ 5015
2726
+ 5016
2727
+ 5019
2728
+ 5023
2729
+ 5032
2730
+ 5034
2731
+ 5036
2732
+ 5037
2733
+ 5038
2734
+ 5042
2735
+ 5043
2736
+ 5046
2737
+ 5048
2738
+ 5049
2739
+ 5051
2740
+ 5056
2741
+ 5064
2742
+ 5066
2743
+ 5069
2744
+ 5070
2745
+ 5071
2746
+ 5077
2747
+ 5078
2748
+ 5081
2749
+ 5085
2750
+ 5087
2751
+ 5088
2752
+ 5091
2753
+ 5093
2754
+ 5096
2755
+ 5109
2756
+ 5111
2757
+ 5116
2758
+ 5123
2759
+ 5127
2760
+ 5130
2761
+ 5132
2762
+ 5133
2763
+ 5136
2764
+ 5137
2765
+ 5138
2766
+ 5144
2767
+ 5147
2768
+ 5154
test.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
test-00000-of-00001.parquet → test_debiased.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:64eb8a4ff3c705038d2c489fb97345c19e33f0a297f440a168e6940e76d329ca
3
- size 160845
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd4fcb087f724652f9f178af4ff6ebf2be1eb11bf7ffba51ce2b8396329ee9e1
3
+ size 85343
test_pruned.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b029b219535db754c49b967a1739eb878078796eae3bc8b1252ea9d55cd7f5cc
3
+ size 89920