Datasets:

Languages:
English
ArXiv:
License:
SiyouLi commited on
Commit
234f610
·
verified ·
1 Parent(s): 68250a5

Upload folder using huggingface_hub

Browse files
.DS_Store ADDED
Binary file (8.2 kB). View file
 
.gitattributes CHANGED
@@ -58,3 +58,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ property_prediction/train/recipes.json filter=lfs diff=lfs merge=lfs -text
62
+ source_records/html_metadata.json filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,120 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # GLAZE Benchmark for Hugging Face
2
+
3
+ This folder is a publication-ready export of the benchmark assets that are currently treated as canonical in this repository.
4
+
5
+ It is organized into two benchmark tracks:
6
+
7
+ - `property_prediction/`: fixed train/test split for glaze property prediction.
8
+ - `image_generation/`: fixed train/test split for glaze image generation with paired metadata and conditioning signals.
9
+
10
+ It also contains an optional source-information layer for users who want to extract additional fields themselves:
11
+
12
+ - `source_records/`: one merged JSON file per packaged sample, plus filtered HTML-derived metadata.
13
+ - `raw_html/`: raw Glazy HTML pages for the packaged sample IDs only.
14
+ - `tools/`: small utilities that operate directly on the exported Hugging Face package.
15
+ - `baselines/`: minimal executable reference baselines for both benchmark tracks.
16
+
17
+ ## Included benchmark assets
18
+
19
+ ### 1. Property prediction benchmark
20
+
21
+ Canonical source: `data/`
22
+
23
+ Tasks:
24
+
25
+ - `transparency`: 4-class classification
26
+ - Labels: `Opaque`, `Semi-opaque`, `Translucent`, `Transparent`
27
+ - `surface`: 9-class classification
28
+ - Labels: `Glossy`, `Semi-glossy`, `Satin`, `Satin-matte`, `Matte`, `Semi-matte`, `Smooth Matte`, `Dry Matte`, `Stony Matte`
29
+ - `color_family`: 9-class classification
30
+ - Labels: `Black`, `Blue`, `Gray`, `Green`, `Orange`, `Purple`, `Red`, `White`, `Yellow`
31
+ - `color_rgb`: RGB regression target derived from the same canonical target file
32
+
33
+ Current canonical split sizes:
34
+
35
+ - Train: 16,781 examples
36
+ - Test: 4,903 examples
37
+
38
+ Per-task labeled coverage in the current canonical files:
39
+
40
+ - Train transparency: 9,023
41
+ - Test transparency: 3,322
42
+ - Train surface: 9,378
43
+ - Test surface: 3,730
44
+ - Train color family: 16,781
45
+ - Test color family: 4,903
46
+
47
+ ### 2. Image generation benchmark
48
+
49
+ Canonical source: `image_gen/`
50
+
51
+ This track contains images plus structured metadata for conditional image generation.
52
+
53
+ Current canonical split sizes:
54
+
55
+ - Train: 4,490 examples
56
+ - Test: 443 examples
57
+
58
+ Per-task labeled coverage in the current canonical files:
59
+
60
+ - Train transparency: 2,968
61
+ - Test transparency: 344
62
+ - Train surface: 3,381
63
+ - Test surface: 331
64
+ - Train color family: 4,483
65
+ - Test color family: 443
66
+
67
+ ## Intentionally excluded from this export
68
+
69
+ These files exist in the repository but are not part of the public benchmark package because they are historical backups, intermediate variants, or analysis-side artifacts:
70
+
71
+ - `data/raw_data/`
72
+ - `data/train/targets_filtered_by_models.json`
73
+ - `data/train/targets_filtered_voting.json`
74
+ - `data/sample_types_train.csv`
75
+ - `data/sample_type_report.md`
76
+ - training logs, model outputs, checkpoints, and analysis-only files
77
+
78
+ The rule used here is simple: if a file is not part of the canonical benchmark split consumed by current benchmark code or benchmark-facing documentation, it is excluded.
79
+
80
+ ## Optional source-information layer
81
+
82
+ Some fields in the canonical metadata are intentionally lightweight. In particular, page-derived attributes such as title, author, author URL, and long-form description are richer in the original HTML pages than in the benchmark-facing `metadata.json` files.
83
+
84
+ To support downstream custom extraction without changing the canonical splits, the package may include:
85
+
86
+ - `source_records/by_id/<id>.json`: merged per-sample record assembled from packaged recipe, target, metadata, and parsed HTML metadata.
87
+ - `source_records/html_metadata.json`: filtered HTML-derived metadata for packaged sample IDs.
88
+ - `raw_html/<id>.html`: original raw HTML page for the packaged sample ID.
89
+ - `tools/read_source_record.py`: convenience CLI for reading sample records and raw HTML from the exported package itself.
90
+
91
+ These supplemental files are aligned to packaged sample IDs and are meant for provenance and user-defined parsing, not as the primary benchmark interface.
92
+
93
+ ## Minimal baselines included
94
+
95
+ To make the package directly usable after download, this export also includes dependency-light baseline scripts:
96
+
97
+ - `baselines/property_prediction_baseline.py`: majority-class baseline for `transparency`, `surface`, and `color_family`, plus a mean-RGB baseline for `color_rgb`.
98
+ - `baselines/image_generation_baseline.py`: nearest-train-sample retrieval baseline using RGB distance.
99
+
100
+ Run them from the repository root with:
101
+
102
+ ```bash
103
+ python huggingface/baselines/property_prediction_baseline.py
104
+ python huggingface/baselines/image_generation_baseline.py
105
+ ```
106
+
107
+ See `baselines/README.md` for output details and optional flags.
108
+
109
+ ## Publication note
110
+
111
+ This folder organizes the benchmark for sharing, but it does not assert a license on behalf of the original data sources. Before uploading to Hugging Face, confirm that the Glazy-derived metadata and images are cleared for redistribution under your intended release terms.
112
+
113
+ ## Recommended Hugging Face presentation
114
+
115
+ If you publish this as a dataset repository, keep the two subfolders as two benchmark configurations inside one dataset card:
116
+
117
+ - `property_prediction`
118
+ - `image_generation`
119
+
120
+ This makes the public package match the benchmark structure already used in this repository.
baselines/README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Simple Baselines
2
+
3
+ This folder contains lightweight reference baselines for the packaged benchmark.
4
+
5
+ These scripts are designed for quick sanity checks and reproducible loading of the shared data package. They are not the paper's strongest models.
6
+
7
+ ## Included scripts
8
+
9
+ - `property_prediction_baseline.py`: majority-class baseline for classification targets plus mean-RGB baseline for `color_rgb`.
10
+ - `image_generation_baseline.py`: nearest-neighbor retrieval baseline that matches each test image to the closest train sample in RGB space.
11
+
12
+ ## Why these baselines exist
13
+
14
+ - They verify that the packaged JSON structure is directly consumable.
15
+ - They give downstream users a minimal executable reference without requiring the full project training stack.
16
+ - They produce simple metrics that are easy to compare after custom loaders or more advanced methods are added.
17
+
18
+ ## Commands
19
+
20
+ Run the property prediction baseline:
21
+
22
+ ```bash
23
+ python huggingface/baselines/property_prediction_baseline.py
24
+ ```
25
+
26
+ Run the image generation retrieval baseline:
27
+
28
+ ```bash
29
+ python huggingface/baselines/image_generation_baseline.py
30
+ ```
31
+
32
+ Save image-generation retrievals for inspection:
33
+
34
+ ```bash
35
+ python huggingface/baselines/image_generation_baseline.py --save-retrievals out/image_generation_retrievals.jsonl
36
+ ```
37
+
38
+ ## Output
39
+
40
+ - Both scripts print a JSON summary to stdout by default.
41
+ - `--output` writes the summary to a JSON file.
42
+ - `image_generation_baseline.py --save-retrievals ...` writes one JSON object per test sample with the retrieved train sample and image path.
43
+
44
+ ## Notes
45
+
46
+ - No extra Python packages are required.
47
+ - The property baseline evaluates labeled test subsets only for `transparency` and `surface`.
48
+ - The image-generation baseline is retrieval-based, not a generative model. It is included as a minimal conditioning-aware reference for the packaged benchmark.
baselines/image_generation_baseline.py ADDED
@@ -0,0 +1,158 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Simple retrieval-style reference baseline for the image generation benchmark.
2
+
3
+ The baseline uses only the packaged metadata and retrieves the nearest training
4
+ example by RGB distance for every test sample.
5
+ """
6
+
7
+ import argparse
8
+ import json
9
+ import math
10
+ from pathlib import Path
11
+
12
+
13
+ HF_ROOT = Path(__file__).resolve().parents[1]
14
+
15
+
16
+ def parse_args():
17
+ parser = argparse.ArgumentParser(
18
+ description="Run a nearest-RGB retrieval baseline on the image generation split."
19
+ )
20
+ parser.add_argument(
21
+ "--hf-root",
22
+ default=str(HF_ROOT),
23
+ help="Path to the exported huggingface package root.",
24
+ )
25
+ parser.add_argument(
26
+ "--output",
27
+ help="Optional JSON output path for the retrieval summary.",
28
+ )
29
+ parser.add_argument(
30
+ "--save-retrievals",
31
+ help="Optional JSONL output path for per-sample retrieval results.",
32
+ )
33
+ parser.add_argument(
34
+ "--compact",
35
+ action="store_true",
36
+ help="Write compact JSON instead of pretty JSON.",
37
+ )
38
+ return parser.parse_args()
39
+
40
+
41
+ def load_json(path: Path):
42
+ with open(path, "r", encoding="utf-8") as handle:
43
+ return json.load(handle)
44
+
45
+
46
+ def dump_json(value, compact: bool):
47
+ if compact:
48
+ return json.dumps(value, ensure_ascii=False, separators=(",", ":"))
49
+ return json.dumps(value, ensure_ascii=False, indent=2)
50
+
51
+
52
+ def write_text(text: str, output_path: str | None):
53
+ if output_path:
54
+ path = Path(output_path)
55
+ path.parent.mkdir(parents=True, exist_ok=True)
56
+ with open(path, "w", encoding="utf-8") as handle:
57
+ handle.write(text)
58
+ return
59
+ print(text)
60
+
61
+
62
+ def rgb_distance(left, right):
63
+ return math.sqrt(
64
+ (left[0] - right[0]) ** 2
65
+ + (left[1] - right[1]) ** 2
66
+ + (left[2] - right[2]) ** 2
67
+ )
68
+
69
+
70
+ def nearest_neighbor(sample, train_samples):
71
+ best_match = None
72
+ best_distance = None
73
+ for candidate in train_samples:
74
+ distance = rgb_distance(sample["color_rgb"], candidate["color_rgb"])
75
+ if best_distance is None or distance < best_distance:
76
+ best_distance = distance
77
+ best_match = candidate
78
+ return best_match, best_distance
79
+
80
+
81
+ def safe_rate(correct: int, total: int):
82
+ if total == 0:
83
+ return None
84
+ return correct / total
85
+
86
+
87
+ def main():
88
+ args = parse_args()
89
+ hf_root = Path(args.hf_root)
90
+
91
+ train_metadata = load_json(hf_root / "image_generation" / "train" / "metadata.json")
92
+ test_metadata = load_json(hf_root / "image_generation" / "test" / "metadata.json")
93
+
94
+ train_samples = list(train_metadata.values())
95
+ test_samples = list(test_metadata.values())
96
+
97
+ retrievals = []
98
+ total_distance = 0.0
99
+ transparency_correct = 0
100
+ transparency_total = 0
101
+ surface_correct = 0
102
+ surface_total = 0
103
+ color_family_correct = 0
104
+ color_family_total = 0
105
+
106
+ for sample in test_samples:
107
+ match, distance = nearest_neighbor(sample, train_samples)
108
+ total_distance += distance
109
+ retrieval = {
110
+ "test_id": sample["id"],
111
+ "retrieved_train_id": match["id"],
112
+ "distance": distance,
113
+ "test_image_path": sample["image_path"],
114
+ "retrieved_image_path": match["image_path"],
115
+ }
116
+ retrievals.append(retrieval)
117
+
118
+ if sample.get("transparency") is not None and match.get("transparency") is not None:
119
+ transparency_total += 1
120
+ transparency_correct += int(sample["transparency"] == match["transparency"])
121
+ if sample.get("surface") is not None and match.get("surface") is not None:
122
+ surface_total += 1
123
+ surface_correct += int(sample["surface"] == match["surface"])
124
+ if sample.get("color_family") is not None and match.get("color_family") is not None:
125
+ color_family_total += 1
126
+ color_family_correct += int(sample["color_family"] == match["color_family"])
127
+
128
+ summary = {
129
+ "benchmark": "image_generation",
130
+ "baseline": "nearest_train_rgb_retrieval",
131
+ "train_samples": len(train_samples),
132
+ "test_samples": len(test_samples),
133
+ "mean_retrieval_distance": total_distance / len(test_samples),
134
+ "label_agreement": {
135
+ "transparency": {
136
+ "evaluated_samples": transparency_total,
137
+ "accuracy": safe_rate(transparency_correct, transparency_total),
138
+ },
139
+ "surface": {
140
+ "evaluated_samples": surface_total,
141
+ "accuracy": safe_rate(surface_correct, surface_total),
142
+ },
143
+ "color_family": {
144
+ "evaluated_samples": color_family_total,
145
+ "accuracy": safe_rate(color_family_correct, color_family_total),
146
+ },
147
+ },
148
+ }
149
+
150
+ if args.save_retrievals:
151
+ jsonl = "\n".join(json.dumps(item, ensure_ascii=False) for item in retrievals)
152
+ write_text(jsonl, args.save_retrievals)
153
+
154
+ write_text(dump_json(summary, args.compact), args.output)
155
+
156
+
157
+ if __name__ == "__main__":
158
+ main()
baselines/property_prediction_baseline.py ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Simple reference baseline for the property prediction benchmark.
2
+
3
+ This script is intentionally lightweight and dependency-free so it can be
4
+ shipped together with the public Hugging Face package.
5
+ """
6
+
7
+ import argparse
8
+ import json
9
+ import math
10
+ from collections import Counter
11
+ from pathlib import Path
12
+
13
+
14
+ HF_ROOT = Path(__file__).resolve().parents[1]
15
+
16
+
17
+ def parse_args():
18
+ parser = argparse.ArgumentParser(
19
+ description="Run a simple majority/mean baseline on the property prediction split."
20
+ )
21
+ parser.add_argument(
22
+ "--hf-root",
23
+ default=str(HF_ROOT),
24
+ help="Path to the exported huggingface package root.",
25
+ )
26
+ parser.add_argument(
27
+ "--output",
28
+ help="Optional JSON output path for the evaluation summary.",
29
+ )
30
+ parser.add_argument(
31
+ "--compact",
32
+ action="store_true",
33
+ help="Write compact JSON instead of pretty JSON.",
34
+ )
35
+ return parser.parse_args()
36
+
37
+
38
+ def load_json(path: Path):
39
+ with open(path, "r", encoding="utf-8") as handle:
40
+ return json.load(handle)
41
+
42
+
43
+ def dump_json(value, compact: bool):
44
+ if compact:
45
+ return json.dumps(value, ensure_ascii=False, separators=(",", ":"))
46
+ return json.dumps(value, ensure_ascii=False, indent=2)
47
+
48
+
49
+ def write_output(text: str, output_path: str | None):
50
+ if output_path:
51
+ path = Path(output_path)
52
+ path.parent.mkdir(parents=True, exist_ok=True)
53
+ with open(path, "w", encoding="utf-8") as handle:
54
+ handle.write(text)
55
+ return
56
+ print(text)
57
+
58
+
59
+ def majority_label(samples, field_name: str):
60
+ counter = Counter(sample[field_name] for sample in samples if sample.get(field_name) is not None)
61
+ label, count = counter.most_common(1)[0]
62
+ return label, count, sum(counter.values())
63
+
64
+
65
+ def evaluate_majority(samples, field_name: str, predicted_label: str):
66
+ labeled = [sample for sample in samples if sample.get(field_name) is not None]
67
+ correct = sum(1 for sample in labeled if sample[field_name] == predicted_label)
68
+ total = len(labeled)
69
+ accuracy = None if total == 0 else correct / total
70
+ return {
71
+ "predicted_label": predicted_label,
72
+ "labeled_samples": total,
73
+ "correct": correct,
74
+ "accuracy": accuracy,
75
+ }
76
+
77
+
78
+ def mean_rgb(samples):
79
+ rgb_values = [sample["color_rgb"] for sample in samples if sample.get("color_rgb") is not None]
80
+ channels = [0.0, 0.0, 0.0]
81
+ for value in rgb_values:
82
+ channels[0] += value["r"]
83
+ channels[1] += value["g"]
84
+ channels[2] += value["b"]
85
+ count = len(rgb_values)
86
+ return {
87
+ "r": channels[0] / count,
88
+ "g": channels[1] / count,
89
+ "b": channels[2] / count,
90
+ }
91
+
92
+
93
+ def evaluate_rgb_mean(samples, rgb_mean):
94
+ labeled = [sample for sample in samples if sample.get("color_rgb") is not None]
95
+ absolute_errors = []
96
+ euclidean_distances = []
97
+ for sample in labeled:
98
+ target = sample["color_rgb"]
99
+ delta_r = abs(target["r"] - rgb_mean["r"])
100
+ delta_g = abs(target["g"] - rgb_mean["g"])
101
+ delta_b = abs(target["b"] - rgb_mean["b"])
102
+ absolute_errors.append((delta_r + delta_g + delta_b) / 3.0)
103
+ euclidean_distances.append(
104
+ math.sqrt(
105
+ (target["r"] - rgb_mean["r"]) ** 2
106
+ + (target["g"] - rgb_mean["g"]) ** 2
107
+ + (target["b"] - rgb_mean["b"]) ** 2
108
+ )
109
+ )
110
+ total = len(labeled)
111
+ return {
112
+ "predicted_mean_rgb": rgb_mean,
113
+ "labeled_samples": total,
114
+ "mean_absolute_error_per_channel": None if total == 0 else sum(absolute_errors) / total,
115
+ "mean_euclidean_distance": None if total == 0 else sum(euclidean_distances) / total,
116
+ }
117
+
118
+
119
+ def main():
120
+ args = parse_args()
121
+ hf_root = Path(args.hf_root)
122
+ train_targets = load_json(hf_root / "property_prediction" / "train" / "targets.json")
123
+ test_targets = load_json(hf_root / "property_prediction" / "test" / "targets.json")
124
+
125
+ summary = {
126
+ "benchmark": "property_prediction",
127
+ "baseline": "majority_class_and_mean_rgb",
128
+ "train_samples": len(train_targets),
129
+ "test_samples": len(test_targets),
130
+ "classification": {},
131
+ "regression": {},
132
+ }
133
+
134
+ for field_name in ("transparency", "surface", "color_family"):
135
+ label, count, labeled_total = majority_label(train_targets, field_name)
136
+ summary["classification"][field_name] = {
137
+ "train_majority_label": label,
138
+ "train_majority_count": count,
139
+ "train_labeled_samples": labeled_total,
140
+ "test_metrics": evaluate_majority(test_targets, field_name, label),
141
+ }
142
+
143
+ rgb_mean = mean_rgb(train_targets)
144
+ summary["regression"]["color_rgb"] = evaluate_rgb_mean(test_targets, rgb_mean)
145
+
146
+ write_output(dump_json(summary, args.compact), args.output)
147
+
148
+
149
+ if __name__ == "__main__":
150
+ main()
image_generation/.DS_Store ADDED
Binary file (6.15 kB). View file
 
image_generation/README.md ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Image Generation Benchmark
2
+
3
+ This subfolder contains the canonical train/test split for the glaze image generation benchmark.
4
+
5
+ ## Files
6
+
7
+ - `train/images/`
8
+ - `train/metadata.json`
9
+ - `train/recipes.json`
10
+ - `train/targets.json`
11
+ - `train/sample_ids.json`
12
+ - `test/images/`
13
+ - `test/metadata.json`
14
+ - `test/recipes.json`
15
+ - `test/targets.json`
16
+ - `test/sample_ids.json`
17
+ - `dataset_statistics.json`
18
+
19
+ ## Current canonical counts
20
+
21
+ - Train total: 4,490
22
+ - Test total: 443
23
+ - Train transparency labels: 2,968
24
+ - Test transparency labels: 344
25
+ - Train surface labels: 3,381
26
+ - Test surface labels: 331
27
+ - Train color family labels: 4,483
28
+ - Test color family labels: 443
29
+
30
+ ## Benchmark usage
31
+
32
+ This track supports conditional image generation from glaze-related conditioning signals, including:
33
+
34
+ - RGB color targets
35
+ - transparency labels when available
36
+ - surface labels when available
37
+ - recipe composition and ingredient lists
38
+ - firing condition metadata when available
39
+
40
+ ## Notes
41
+
42
+ - The image generation benchmark is separate from the larger property prediction benchmark.
43
+ - `metadata.json` is the richest entry point for multimodal loading because it links images, attributes, and recipe-side information.
44
+ - Missing `transparency` or `surface` values should be treated as unlabeled rather than negative labels.
45
+ - A minimal retrieval-style reference is provided in `../baselines/image_generation_baseline.py`.
image_generation/dataset_statistics.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_name": "try_image2",
3
+ "creation_date": "2026-02-10",
4
+ "description": "图片生成任务benchmark - 二次标注作为测试集,一次标注作为训练集",
5
+ "train": {
6
+ "total_samples": 4490,
7
+ "successfully_copied_images": 4490,
8
+ "failed": 0,
9
+ "samples_with_valid_rgb": 4490
10
+ },
11
+ "test": {
12
+ "total_samples": 443,
13
+ "successfully_copied_images": 443,
14
+ "failed": 0,
15
+ "samples_with_valid_rgb": 443
16
+ },
17
+ "total": {
18
+ "samples": 4933,
19
+ "images": 4933
20
+ }
21
+ }
image_generation/test/.DS_Store ADDED
Binary file (6.15 kB). View file
 
image_generation/test/images.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14389ce1b7c040e6bd379a8a33018a740092e1481cffa03a73c01bc99a854378
3
+ size 50726583
image_generation/test/metadata.json ADDED
The diff for this file is too large to render. See raw diff
 
image_generation/test/recipes.json ADDED
The diff for this file is too large to render. See raw diff
 
image_generation/test/sample_ids.json ADDED
@@ -0,0 +1,445 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "2925",
3
+ "2929",
4
+ "2930",
5
+ "3175",
6
+ "3176",
7
+ "3177",
8
+ "3181",
9
+ "3183",
10
+ "3187",
11
+ "3189",
12
+ "3272",
13
+ "3273",
14
+ "3274",
15
+ "3275",
16
+ "3276",
17
+ "3277",
18
+ "3278",
19
+ "3279",
20
+ "3280",
21
+ "3281",
22
+ "3294",
23
+ "3295",
24
+ "3296",
25
+ "3297",
26
+ "3298",
27
+ "3299",
28
+ "3300",
29
+ "3302",
30
+ "3303",
31
+ "3304",
32
+ "3305",
33
+ "3306",
34
+ "3324",
35
+ "3326",
36
+ "3417",
37
+ "3453",
38
+ "3454",
39
+ "3508",
40
+ "3509",
41
+ "3510",
42
+ "3511",
43
+ "3512",
44
+ "3513",
45
+ "3514",
46
+ "3515",
47
+ "3516",
48
+ "3517",
49
+ "3518",
50
+ "3519",
51
+ "3520",
52
+ "3521",
53
+ "3522",
54
+ "3523",
55
+ "3524",
56
+ "3525",
57
+ "3526",
58
+ "3527",
59
+ "3528",
60
+ "3531",
61
+ "3532",
62
+ "3533",
63
+ "3534",
64
+ "3535",
65
+ "3536",
66
+ "3537",
67
+ "3538",
68
+ "3539",
69
+ "3540",
70
+ "3541",
71
+ "3542",
72
+ "3547",
73
+ "3548",
74
+ "3549",
75
+ "3550",
76
+ "3551",
77
+ "3552",
78
+ "3553",
79
+ "3554",
80
+ "3556",
81
+ "3557",
82
+ "3558",
83
+ "3559",
84
+ "3560",
85
+ "3561",
86
+ "3562",
87
+ "3806",
88
+ "3826",
89
+ "3827",
90
+ "3828",
91
+ "3829",
92
+ "3830",
93
+ "3831",
94
+ "3832",
95
+ "3861",
96
+ "3862",
97
+ "3863",
98
+ "3864",
99
+ "3865",
100
+ "3866",
101
+ "3867",
102
+ "3887",
103
+ "3888",
104
+ "4287",
105
+ "4288",
106
+ "4289",
107
+ "4338",
108
+ "4339",
109
+ "4340",
110
+ "4343",
111
+ "4344",
112
+ "4345",
113
+ "4346",
114
+ "4347",
115
+ "4376",
116
+ "4377",
117
+ "4378",
118
+ "4380",
119
+ "4382",
120
+ "4571",
121
+ "6352",
122
+ "8610",
123
+ "9411",
124
+ "9412",
125
+ "11877",
126
+ "11878",
127
+ "11879",
128
+ "13149",
129
+ "13158",
130
+ "13160",
131
+ "13161",
132
+ "16277",
133
+ "16664",
134
+ "20547",
135
+ "20670",
136
+ "20754",
137
+ "20843",
138
+ "21100",
139
+ "21102",
140
+ "21133",
141
+ "21182",
142
+ "21183",
143
+ "21184",
144
+ "21307",
145
+ "22939",
146
+ "24872",
147
+ "24873",
148
+ "25001",
149
+ "25069",
150
+ "25070",
151
+ "25071",
152
+ "25072",
153
+ "25073",
154
+ "25074",
155
+ "25075",
156
+ "25076",
157
+ "25288",
158
+ "26056",
159
+ "28755",
160
+ "29420",
161
+ "30086",
162
+ "30087",
163
+ "30088",
164
+ "30089",
165
+ "30090",
166
+ "30091",
167
+ "30092",
168
+ "30093",
169
+ "30094",
170
+ "30095",
171
+ "30096",
172
+ "30097",
173
+ "30098",
174
+ "32057",
175
+ "32058",
176
+ "32059",
177
+ "32060",
178
+ "32416",
179
+ "32617",
180
+ "32618",
181
+ "32619",
182
+ "32620",
183
+ "32622",
184
+ "32623",
185
+ "33833",
186
+ "33836",
187
+ "33838",
188
+ "33843",
189
+ "34105",
190
+ "34264",
191
+ "34339",
192
+ "34342",
193
+ "34343",
194
+ "34344",
195
+ "34346",
196
+ "34347",
197
+ "34348",
198
+ "34349",
199
+ "34350",
200
+ "34351",
201
+ "34352",
202
+ "34353",
203
+ "34354",
204
+ "34355",
205
+ "34356",
206
+ "34357",
207
+ "34450",
208
+ "34483",
209
+ "34485",
210
+ "34708",
211
+ "34721",
212
+ "34731",
213
+ "34755",
214
+ "34756",
215
+ "34757",
216
+ "34758",
217
+ "34759",
218
+ "34760",
219
+ "34761",
220
+ "34762",
221
+ "34763",
222
+ "34764",
223
+ "34765",
224
+ "34766",
225
+ "34767",
226
+ "34768",
227
+ "34769",
228
+ "34770",
229
+ "34771",
230
+ "34772",
231
+ "34773",
232
+ "34774",
233
+ "34775",
234
+ "34776",
235
+ "34777",
236
+ "34778",
237
+ "34954",
238
+ "34955",
239
+ "34956",
240
+ "34957",
241
+ "34958",
242
+ "34959",
243
+ "34960",
244
+ "34961",
245
+ "34962",
246
+ "34963",
247
+ "34964",
248
+ "34965",
249
+ "34966",
250
+ "34968",
251
+ "34969",
252
+ "34970",
253
+ "34971",
254
+ "34972",
255
+ "34973",
256
+ "34974",
257
+ "34975",
258
+ "34976",
259
+ "34977",
260
+ "34978",
261
+ "34979",
262
+ "34980",
263
+ "34981",
264
+ "34982",
265
+ "34983",
266
+ "34984",
267
+ "34985",
268
+ "34986",
269
+ "34987",
270
+ "34988",
271
+ "34989",
272
+ "34990",
273
+ "34991",
274
+ "34992",
275
+ "34993",
276
+ "34994",
277
+ "34995",
278
+ "34996",
279
+ "35635",
280
+ "35637",
281
+ "35638",
282
+ "35639",
283
+ "35640",
284
+ "35641",
285
+ "35642",
286
+ "35643",
287
+ "36079",
288
+ "36081",
289
+ "36130",
290
+ "36141",
291
+ "36142",
292
+ "36521",
293
+ "36523",
294
+ "36525",
295
+ "36526",
296
+ "36529",
297
+ "36530",
298
+ "36577",
299
+ "36578",
300
+ "36579",
301
+ "36581",
302
+ "36582",
303
+ "36770",
304
+ "36771",
305
+ "37368",
306
+ "37396",
307
+ "38204",
308
+ "38278",
309
+ "38474",
310
+ "38580",
311
+ "38581",
312
+ "38583",
313
+ "38584",
314
+ "38586",
315
+ "38588",
316
+ "38589",
317
+ "38591",
318
+ "38592",
319
+ "38593",
320
+ "38594",
321
+ "39211",
322
+ "39212",
323
+ "39213",
324
+ "39214",
325
+ "39215",
326
+ "39216",
327
+ "39220",
328
+ "39224",
329
+ "39231",
330
+ "39232",
331
+ "39476",
332
+ "39477",
333
+ "39478",
334
+ "39482",
335
+ "41187",
336
+ "41212",
337
+ "41347",
338
+ "42374",
339
+ "42376",
340
+ "47969",
341
+ "47970",
342
+ "47971",
343
+ "47972",
344
+ "47973",
345
+ "47974",
346
+ "47975",
347
+ "47976",
348
+ "47977",
349
+ "47978",
350
+ "47979",
351
+ "47980",
352
+ "47981",
353
+ "47982",
354
+ "47983",
355
+ "47985",
356
+ "47986",
357
+ "47987",
358
+ "47988",
359
+ "47990",
360
+ "47991",
361
+ "49690",
362
+ "49693",
363
+ "49696",
364
+ "49702",
365
+ "49703",
366
+ "49706",
367
+ "49707",
368
+ "49708",
369
+ "49709",
370
+ "49710",
371
+ "49711",
372
+ "49712",
373
+ "49713",
374
+ "49714",
375
+ "49715",
376
+ "49762",
377
+ "54627",
378
+ "54628",
379
+ "54629",
380
+ "54630",
381
+ "55404",
382
+ "55409",
383
+ "56097",
384
+ "56201",
385
+ "56230",
386
+ "56232",
387
+ "56233",
388
+ "56235",
389
+ "56239",
390
+ "56240",
391
+ "56241",
392
+ "56245",
393
+ "56247",
394
+ "61386",
395
+ "61480",
396
+ "62044",
397
+ "62045",
398
+ "67301",
399
+ "67303",
400
+ "67305",
401
+ "67306",
402
+ "67313",
403
+ "67315",
404
+ "67317",
405
+ "67664",
406
+ "72404",
407
+ "72407",
408
+ "72408",
409
+ "72409",
410
+ "73702",
411
+ "75035",
412
+ "78409",
413
+ "78410",
414
+ "78411",
415
+ "80968",
416
+ "90440",
417
+ "90442",
418
+ "90443",
419
+ "90630",
420
+ "90751",
421
+ "91162",
422
+ "92213",
423
+ "111067",
424
+ "111070",
425
+ "113617",
426
+ "118118",
427
+ "121106",
428
+ "121119",
429
+ "121943",
430
+ "121944",
431
+ "121945",
432
+ "121946",
433
+ "121947",
434
+ "121949",
435
+ "121950",
436
+ "121951",
437
+ "121953",
438
+ "121954",
439
+ "121955",
440
+ "121956",
441
+ "121957",
442
+ "121960",
443
+ "126620",
444
+ "404632"
445
+ ]
image_generation/test/targets.json ADDED
The diff for this file is too large to render. See raw diff
 
image_generation/train/.DS_Store ADDED
Binary file (6.15 kB). View file
 
image_generation/train/images.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4ad39f517edd75fae50cb10a4d37b6833929a4e7dce3c4ff05b44903a4fcaec
3
+ size 481114435
image_generation/train/metadata.json ADDED
The diff for this file is too large to render. See raw diff
 
image_generation/train/recipes.json ADDED
The diff for this file is too large to render. See raw diff
 
image_generation/train/sample_ids.json ADDED
@@ -0,0 +1,4492 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "3",
3
+ "6",
4
+ "18",
5
+ "31",
6
+ "37",
7
+ "79",
8
+ "81",
9
+ "85",
10
+ "105",
11
+ "116",
12
+ "136",
13
+ "137",
14
+ "164",
15
+ "174",
16
+ "178",
17
+ "197",
18
+ "201",
19
+ "230",
20
+ "231",
21
+ "254",
22
+ "261",
23
+ "279",
24
+ "281",
25
+ "282",
26
+ "283",
27
+ "292",
28
+ "295",
29
+ "322",
30
+ "338",
31
+ "389",
32
+ "414",
33
+ "430",
34
+ "437",
35
+ "444",
36
+ "455",
37
+ "468",
38
+ "483",
39
+ "504",
40
+ "519",
41
+ "529",
42
+ "539",
43
+ "541",
44
+ "543",
45
+ "569",
46
+ "575",
47
+ "597",
48
+ "609",
49
+ "610",
50
+ "611",
51
+ "614",
52
+ "650",
53
+ "652",
54
+ "664",
55
+ "679",
56
+ "748",
57
+ "756",
58
+ "765",
59
+ "770",
60
+ "789",
61
+ "790",
62
+ "858",
63
+ "878",
64
+ "881",
65
+ "893",
66
+ "911",
67
+ "912",
68
+ "938",
69
+ "940",
70
+ "947",
71
+ "1004",
72
+ "1014",
73
+ "1015",
74
+ "1016",
75
+ "1020",
76
+ "1023",
77
+ "1038",
78
+ "1052",
79
+ "1054",
80
+ "1069",
81
+ "1071",
82
+ "1079",
83
+ "1086",
84
+ "1087",
85
+ "1096",
86
+ "1113",
87
+ "1116",
88
+ "1144",
89
+ "1147",
90
+ "1175",
91
+ "1177",
92
+ "1187",
93
+ "1189",
94
+ "1219",
95
+ "1226",
96
+ "1229",
97
+ "1233",
98
+ "1237",
99
+ "1246",
100
+ "1319",
101
+ "1328",
102
+ "1342",
103
+ "1344",
104
+ "1348",
105
+ "1366",
106
+ "1371",
107
+ "1373",
108
+ "1377",
109
+ "1390",
110
+ "1391",
111
+ "1399",
112
+ "1420",
113
+ "1441",
114
+ "1443",
115
+ "1445",
116
+ "1446",
117
+ "1447",
118
+ "1452",
119
+ "1455",
120
+ "1458",
121
+ "1466",
122
+ "1467",
123
+ "1473",
124
+ "1475",
125
+ "1481",
126
+ "1486",
127
+ "1506",
128
+ "1524",
129
+ "1547",
130
+ "1549",
131
+ "1563",
132
+ "1564",
133
+ "1566",
134
+ "1570",
135
+ "1573",
136
+ "1585",
137
+ "1627",
138
+ "1650",
139
+ "1651",
140
+ "1824",
141
+ "1851",
142
+ "1858",
143
+ "1926",
144
+ "1949",
145
+ "2018",
146
+ "2085",
147
+ "2139",
148
+ "2152",
149
+ "2219",
150
+ "2222",
151
+ "2233",
152
+ "2254",
153
+ "2255",
154
+ "2263",
155
+ "2350",
156
+ "2352",
157
+ "2353",
158
+ "2366",
159
+ "2370",
160
+ "2376",
161
+ "2378",
162
+ "2379",
163
+ "2380",
164
+ "2381",
165
+ "2382",
166
+ "2386",
167
+ "2400",
168
+ "2401",
169
+ "2402",
170
+ "2410",
171
+ "2411",
172
+ "2415",
173
+ "2417",
174
+ "2418",
175
+ "2419",
176
+ "2420",
177
+ "2422",
178
+ "2427",
179
+ "2433",
180
+ "2434",
181
+ "2436",
182
+ "2444",
183
+ "2445",
184
+ "2446",
185
+ "2452",
186
+ "2453",
187
+ "2456",
188
+ "2460",
189
+ "2462",
190
+ "2465",
191
+ "2467",
192
+ "2468",
193
+ "2472",
194
+ "2473",
195
+ "2474",
196
+ "2475",
197
+ "2490",
198
+ "2492",
199
+ "2505",
200
+ "2514",
201
+ "2515",
202
+ "2521",
203
+ "2523",
204
+ "2524",
205
+ "2529",
206
+ "2538",
207
+ "2570",
208
+ "2579",
209
+ "2592",
210
+ "2594",
211
+ "2597",
212
+ "2617",
213
+ "2632",
214
+ "2646",
215
+ "2671",
216
+ "2690",
217
+ "2692",
218
+ "2693",
219
+ "2699",
220
+ "2704",
221
+ "2705",
222
+ "2707",
223
+ "2708",
224
+ "2718",
225
+ "2719",
226
+ "2720",
227
+ "2721",
228
+ "2723",
229
+ "2750",
230
+ "2793",
231
+ "2810",
232
+ "2818",
233
+ "2819",
234
+ "2829",
235
+ "2830",
236
+ "2831",
237
+ "2833",
238
+ "2834",
239
+ "2835",
240
+ "2836",
241
+ "2837",
242
+ "2838",
243
+ "2839",
244
+ "2843",
245
+ "2844",
246
+ "2851",
247
+ "2852",
248
+ "2862",
249
+ "2866",
250
+ "2878",
251
+ "2888",
252
+ "2889",
253
+ "2895",
254
+ "2911",
255
+ "2927",
256
+ "2955",
257
+ "2965",
258
+ "2966",
259
+ "2967",
260
+ "2968",
261
+ "2971",
262
+ "2975",
263
+ "2976",
264
+ "2977",
265
+ "2978",
266
+ "2991",
267
+ "3000",
268
+ "3001",
269
+ "3002",
270
+ "3004",
271
+ "3005",
272
+ "3008",
273
+ "3009",
274
+ "3013",
275
+ "3014",
276
+ "3015",
277
+ "3016",
278
+ "3017",
279
+ "3018",
280
+ "3019",
281
+ "3020",
282
+ "3021",
283
+ "3022",
284
+ "3023",
285
+ "3024",
286
+ "3025",
287
+ "3026",
288
+ "3028",
289
+ "3029",
290
+ "3030",
291
+ "3031",
292
+ "3032",
293
+ "3033",
294
+ "3034",
295
+ "3035",
296
+ "3036",
297
+ "3038",
298
+ "3040",
299
+ "3041",
300
+ "3042",
301
+ "3045",
302
+ "3047",
303
+ "3048",
304
+ "3049",
305
+ "3050",
306
+ "3051",
307
+ "3052",
308
+ "3053",
309
+ "3054",
310
+ "3055",
311
+ "3056",
312
+ "3057",
313
+ "3058",
314
+ "3059",
315
+ "3060",
316
+ "3061",
317
+ "3062",
318
+ "3063",
319
+ "3064",
320
+ "3066",
321
+ "3067",
322
+ "3068",
323
+ "3069",
324
+ "3070",
325
+ "3071",
326
+ "3072",
327
+ "3073",
328
+ "3074",
329
+ "3075",
330
+ "3076",
331
+ "3078",
332
+ "3079",
333
+ "3080",
334
+ "3081",
335
+ "3082",
336
+ "3083",
337
+ "3084",
338
+ "3085",
339
+ "3086",
340
+ "3087",
341
+ "3088",
342
+ "3089",
343
+ "3090",
344
+ "3091",
345
+ "3092",
346
+ "3093",
347
+ "3094",
348
+ "3095",
349
+ "3096",
350
+ "3097",
351
+ "3098",
352
+ "3099",
353
+ "3100",
354
+ "3101",
355
+ "3102",
356
+ "3103",
357
+ "3104",
358
+ "3105",
359
+ "3106",
360
+ "3107",
361
+ "3108",
362
+ "3109",
363
+ "3110",
364
+ "3111",
365
+ "3112",
366
+ "3113",
367
+ "3114",
368
+ "3115",
369
+ "3117",
370
+ "3118",
371
+ "3119",
372
+ "3120",
373
+ "3121",
374
+ "3122",
375
+ "3123",
376
+ "3124",
377
+ "3125",
378
+ "3126",
379
+ "3127",
380
+ "3130",
381
+ "3131",
382
+ "3132",
383
+ "3135",
384
+ "3136",
385
+ "3137",
386
+ "3138",
387
+ "3139",
388
+ "3140",
389
+ "3141",
390
+ "3142",
391
+ "3143",
392
+ "3144",
393
+ "3146",
394
+ "3147",
395
+ "3148",
396
+ "3149",
397
+ "3150",
398
+ "3151",
399
+ "3152",
400
+ "3154",
401
+ "3155",
402
+ "3156",
403
+ "3157",
404
+ "3158",
405
+ "3159",
406
+ "3160",
407
+ "3162",
408
+ "3163",
409
+ "3164",
410
+ "3165",
411
+ "3166",
412
+ "3167",
413
+ "3168",
414
+ "3169",
415
+ "3170",
416
+ "3171",
417
+ "3173",
418
+ "3188",
419
+ "3190",
420
+ "3191",
421
+ "3192",
422
+ "3193",
423
+ "3194",
424
+ "3195",
425
+ "3196",
426
+ "3197",
427
+ "3198",
428
+ "3199",
429
+ "3200",
430
+ "3202",
431
+ "3203",
432
+ "3204",
433
+ "3205",
434
+ "3207",
435
+ "3208",
436
+ "3209",
437
+ "3210",
438
+ "3211",
439
+ "3212",
440
+ "3213",
441
+ "3214",
442
+ "3215",
443
+ "3216",
444
+ "3217",
445
+ "3218",
446
+ "3219",
447
+ "3220",
448
+ "3221",
449
+ "3222",
450
+ "3223",
451
+ "3224",
452
+ "3225",
453
+ "3226",
454
+ "3227",
455
+ "3228",
456
+ "3229",
457
+ "3230",
458
+ "3231",
459
+ "3232",
460
+ "3233",
461
+ "3234",
462
+ "3235",
463
+ "3236",
464
+ "3237",
465
+ "3238",
466
+ "3239",
467
+ "3240",
468
+ "3241",
469
+ "3242",
470
+ "3243",
471
+ "3244",
472
+ "3245",
473
+ "3246",
474
+ "3247",
475
+ "3248",
476
+ "3250",
477
+ "3251",
478
+ "3252",
479
+ "3253",
480
+ "3254",
481
+ "3255",
482
+ "3256",
483
+ "3257",
484
+ "3258",
485
+ "3259",
486
+ "3260",
487
+ "3261",
488
+ "3262",
489
+ "3263",
490
+ "3264",
491
+ "3265",
492
+ "3266",
493
+ "3267",
494
+ "3268",
495
+ "3269",
496
+ "3270",
497
+ "3271",
498
+ "3282",
499
+ "3283",
500
+ "3284",
501
+ "3285",
502
+ "3286",
503
+ "3287",
504
+ "3288",
505
+ "3289",
506
+ "3290",
507
+ "3291",
508
+ "3292",
509
+ "3293",
510
+ "3301",
511
+ "3307",
512
+ "3308",
513
+ "3309",
514
+ "3310",
515
+ "3311",
516
+ "3312",
517
+ "3313",
518
+ "3314",
519
+ "3315",
520
+ "3316",
521
+ "3317",
522
+ "3318",
523
+ "3319",
524
+ "3320",
525
+ "3321",
526
+ "3322",
527
+ "3323",
528
+ "3337",
529
+ "3338",
530
+ "3339",
531
+ "3340",
532
+ "3341",
533
+ "3342",
534
+ "3343",
535
+ "3344",
536
+ "3345",
537
+ "3346",
538
+ "3347",
539
+ "3348",
540
+ "3349",
541
+ "3350",
542
+ "3351",
543
+ "3352",
544
+ "3353",
545
+ "3354",
546
+ "3355",
547
+ "3356",
548
+ "3357",
549
+ "3358",
550
+ "3359",
551
+ "3360",
552
+ "3361",
553
+ "3362",
554
+ "3363",
555
+ "3364",
556
+ "3365",
557
+ "3366",
558
+ "3367",
559
+ "3368",
560
+ "3369",
561
+ "3370",
562
+ "3371",
563
+ "3372",
564
+ "3373",
565
+ "3374",
566
+ "3375",
567
+ "3376",
568
+ "3377",
569
+ "3378",
570
+ "3379",
571
+ "3380",
572
+ "3381",
573
+ "3382",
574
+ "3383",
575
+ "3384",
576
+ "3385",
577
+ "3386",
578
+ "3387",
579
+ "3388",
580
+ "3389",
581
+ "3390",
582
+ "3391",
583
+ "3392",
584
+ "3393",
585
+ "3394",
586
+ "3397",
587
+ "3400",
588
+ "3401",
589
+ "3402",
590
+ "3404",
591
+ "3405",
592
+ "3406",
593
+ "3407",
594
+ "3408",
595
+ "3409",
596
+ "3410",
597
+ "3416",
598
+ "3438",
599
+ "3439",
600
+ "3442",
601
+ "3443",
602
+ "3444",
603
+ "3488",
604
+ "3491",
605
+ "3493",
606
+ "3494",
607
+ "3500",
608
+ "3565",
609
+ "3568",
610
+ "3574",
611
+ "3579",
612
+ "3580",
613
+ "3581",
614
+ "3586",
615
+ "3597",
616
+ "3599",
617
+ "3601",
618
+ "3602",
619
+ "3603",
620
+ "3604",
621
+ "3605",
622
+ "3607",
623
+ "3608",
624
+ "3609",
625
+ "3610",
626
+ "3611",
627
+ "3612",
628
+ "3658",
629
+ "3661",
630
+ "3667",
631
+ "3668",
632
+ "3669",
633
+ "3670",
634
+ "3675",
635
+ "3676",
636
+ "3677",
637
+ "3678",
638
+ "3681",
639
+ "3682",
640
+ "3683",
641
+ "3684",
642
+ "3685",
643
+ "3688",
644
+ "3690",
645
+ "3691",
646
+ "3692",
647
+ "3693",
648
+ "3694",
649
+ "3695",
650
+ "3696",
651
+ "3697",
652
+ "3698",
653
+ "3699",
654
+ "3700",
655
+ "3701",
656
+ "3702",
657
+ "3703",
658
+ "3706",
659
+ "3707",
660
+ "3709",
661
+ "3710",
662
+ "3711",
663
+ "3712",
664
+ "3713",
665
+ "3716",
666
+ "3717",
667
+ "3718",
668
+ "3719",
669
+ "3720",
670
+ "3721",
671
+ "3723",
672
+ "3725",
673
+ "3726",
674
+ "3727",
675
+ "3728",
676
+ "3736",
677
+ "3737",
678
+ "3738",
679
+ "3754",
680
+ "3755",
681
+ "3769",
682
+ "3771",
683
+ "3772",
684
+ "3773",
685
+ "3774",
686
+ "3775",
687
+ "3776",
688
+ "3778",
689
+ "3779",
690
+ "3780",
691
+ "3781",
692
+ "3782",
693
+ "3783",
694
+ "3784",
695
+ "3785",
696
+ "3787",
697
+ "3788",
698
+ "3789",
699
+ "3790",
700
+ "3791",
701
+ "3792",
702
+ "3793",
703
+ "3794",
704
+ "3795",
705
+ "3796",
706
+ "3797",
707
+ "3798",
708
+ "3799",
709
+ "3800",
710
+ "3802",
711
+ "3803",
712
+ "3805",
713
+ "3807",
714
+ "3808",
715
+ "3809",
716
+ "3812",
717
+ "3818",
718
+ "3825",
719
+ "3836",
720
+ "3837",
721
+ "3838",
722
+ "3839",
723
+ "3840",
724
+ "3841",
725
+ "3842",
726
+ "3850",
727
+ "3851",
728
+ "3852",
729
+ "3853",
730
+ "3854",
731
+ "3855",
732
+ "3856",
733
+ "3858",
734
+ "3859",
735
+ "3860",
736
+ "3886",
737
+ "3891",
738
+ "3897",
739
+ "3900",
740
+ "3902",
741
+ "3903",
742
+ "3904",
743
+ "3907",
744
+ "3915",
745
+ "3916",
746
+ "3917",
747
+ "3918",
748
+ "3919",
749
+ "3930",
750
+ "3931",
751
+ "3932",
752
+ "3933",
753
+ "3934",
754
+ "3935",
755
+ "3936",
756
+ "3937",
757
+ "3938",
758
+ "3939",
759
+ "3970",
760
+ "3971",
761
+ "3972",
762
+ "3977",
763
+ "3984",
764
+ "3990",
765
+ "3991",
766
+ "4002",
767
+ "4003",
768
+ "4004",
769
+ "4005",
770
+ "4006",
771
+ "4008",
772
+ "4009",
773
+ "4010",
774
+ "4013",
775
+ "4014",
776
+ "4016",
777
+ "4018",
778
+ "4020",
779
+ "4034",
780
+ "4063",
781
+ "4078",
782
+ "4090",
783
+ "4091",
784
+ "4092",
785
+ "4093",
786
+ "4094",
787
+ "4095",
788
+ "4096",
789
+ "4097",
790
+ "4098",
791
+ "4099",
792
+ "4100",
793
+ "4101",
794
+ "4102",
795
+ "4103",
796
+ "4104",
797
+ "4105",
798
+ "4106",
799
+ "4107",
800
+ "4108",
801
+ "4109",
802
+ "4110",
803
+ "4111",
804
+ "4112",
805
+ "4113",
806
+ "4114",
807
+ "4115",
808
+ "4116",
809
+ "4117",
810
+ "4118",
811
+ "4123",
812
+ "4131",
813
+ "4133",
814
+ "4136",
815
+ "4137",
816
+ "4138",
817
+ "4139",
818
+ "4140",
819
+ "4141",
820
+ "4142",
821
+ "4143",
822
+ "4144",
823
+ "4145",
824
+ "4146",
825
+ "4147",
826
+ "4148",
827
+ "4149",
828
+ "4150",
829
+ "4151",
830
+ "4152",
831
+ "4153",
832
+ "4154",
833
+ "4156",
834
+ "4157",
835
+ "4158",
836
+ "4159",
837
+ "4160",
838
+ "4161",
839
+ "4162",
840
+ "4163",
841
+ "4165",
842
+ "4166",
843
+ "4167",
844
+ "4168",
845
+ "4169",
846
+ "4172",
847
+ "4173",
848
+ "4174",
849
+ "4175",
850
+ "4178",
851
+ "4179",
852
+ "4181",
853
+ "4182",
854
+ "4183",
855
+ "4184",
856
+ "4185",
857
+ "4187",
858
+ "4188",
859
+ "4189",
860
+ "4191",
861
+ "4211",
862
+ "4215",
863
+ "4219",
864
+ "4220",
865
+ "4222",
866
+ "4223",
867
+ "4224",
868
+ "4227",
869
+ "4228",
870
+ "4240",
871
+ "4241",
872
+ "4242",
873
+ "4243",
874
+ "4245",
875
+ "4246",
876
+ "4247",
877
+ "4248",
878
+ "4249",
879
+ "4251",
880
+ "4252",
881
+ "4253",
882
+ "4254",
883
+ "4255",
884
+ "4256",
885
+ "4257",
886
+ "4258",
887
+ "4259",
888
+ "4260",
889
+ "4261",
890
+ "4262",
891
+ "4263",
892
+ "4264",
893
+ "4265",
894
+ "4266",
895
+ "4267",
896
+ "4268",
897
+ "4269",
898
+ "4270",
899
+ "4271",
900
+ "4272",
901
+ "4273",
902
+ "4274",
903
+ "4275",
904
+ "4276",
905
+ "4277",
906
+ "4278",
907
+ "4279",
908
+ "4280",
909
+ "4281",
910
+ "4282",
911
+ "4283",
912
+ "4284",
913
+ "4285",
914
+ "4293",
915
+ "4294",
916
+ "4295",
917
+ "4296",
918
+ "4297",
919
+ "4298",
920
+ "4299",
921
+ "4300",
922
+ "4301",
923
+ "4302",
924
+ "4303",
925
+ "4304",
926
+ "4305",
927
+ "4314",
928
+ "4318",
929
+ "4319",
930
+ "4320",
931
+ "4321",
932
+ "4326",
933
+ "4341",
934
+ "4342",
935
+ "4379",
936
+ "4407",
937
+ "4411",
938
+ "4465",
939
+ "4479",
940
+ "4510",
941
+ "4529",
942
+ "4530",
943
+ "4542",
944
+ "4562",
945
+ "4569",
946
+ "4576",
947
+ "4580",
948
+ "4581",
949
+ "4582",
950
+ "4583",
951
+ "4587",
952
+ "4588",
953
+ "4590",
954
+ "4594",
955
+ "4601",
956
+ "4602",
957
+ "4631",
958
+ "4746",
959
+ "4783",
960
+ "4800",
961
+ "4820",
962
+ "4880",
963
+ "4925",
964
+ "5004",
965
+ "5183",
966
+ "5187",
967
+ "5188",
968
+ "5214",
969
+ "5216",
970
+ "5217",
971
+ "5222",
972
+ "5229",
973
+ "5242",
974
+ "5244",
975
+ "5251",
976
+ "5279",
977
+ "5280",
978
+ "5282",
979
+ "5283",
980
+ "5355",
981
+ "5378",
982
+ "5387",
983
+ "5408",
984
+ "5472",
985
+ "5474",
986
+ "5475",
987
+ "5517",
988
+ "5518",
989
+ "5534",
990
+ "5538",
991
+ "5539",
992
+ "5540",
993
+ "5542",
994
+ "5569",
995
+ "5570",
996
+ "5597",
997
+ "5623",
998
+ "5626",
999
+ "5651",
1000
+ "5658",
1001
+ "5667",
1002
+ "5668",
1003
+ "5669",
1004
+ "5670",
1005
+ "5671",
1006
+ "5672",
1007
+ "5673",
1008
+ "5692",
1009
+ "5694",
1010
+ "5698",
1011
+ "5734",
1012
+ "5742",
1013
+ "5743",
1014
+ "5744",
1015
+ "5765",
1016
+ "5775",
1017
+ "5787",
1018
+ "5788",
1019
+ "5798",
1020
+ "5817",
1021
+ "5824",
1022
+ "5830",
1023
+ "5832",
1024
+ "5840",
1025
+ "5841",
1026
+ "5842",
1027
+ "5884",
1028
+ "5889",
1029
+ "5893",
1030
+ "5894",
1031
+ "5895",
1032
+ "5896",
1033
+ "5897",
1034
+ "5898",
1035
+ "5899",
1036
+ "5964",
1037
+ "5967",
1038
+ "5968",
1039
+ "5969",
1040
+ "5970",
1041
+ "5971",
1042
+ "5974",
1043
+ "5994",
1044
+ "6000",
1045
+ "6015",
1046
+ "6018",
1047
+ "6020",
1048
+ "6025",
1049
+ "6026",
1050
+ "6027",
1051
+ "6028",
1052
+ "6029",
1053
+ "6030",
1054
+ "6031",
1055
+ "6032",
1056
+ "6034",
1057
+ "6036",
1058
+ "6037",
1059
+ "6038",
1060
+ "6039",
1061
+ "6040",
1062
+ "6041",
1063
+ "6042",
1064
+ "6043",
1065
+ "6044",
1066
+ "6045",
1067
+ "6046",
1068
+ "6047",
1069
+ "6048",
1070
+ "6049",
1071
+ "6050",
1072
+ "6051",
1073
+ "6052",
1074
+ "6053",
1075
+ "6054",
1076
+ "6055",
1077
+ "6056",
1078
+ "6057",
1079
+ "6058",
1080
+ "6059",
1081
+ "6060",
1082
+ "6061",
1083
+ "6062",
1084
+ "6063",
1085
+ "6064",
1086
+ "6065",
1087
+ "6066",
1088
+ "6067",
1089
+ "6068",
1090
+ "6069",
1091
+ "6070",
1092
+ "6071",
1093
+ "6072",
1094
+ "6073",
1095
+ "6074",
1096
+ "6075",
1097
+ "6076",
1098
+ "6077",
1099
+ "6078",
1100
+ "6079",
1101
+ "6080",
1102
+ "6081",
1103
+ "6082",
1104
+ "6083",
1105
+ "6084",
1106
+ "6085",
1107
+ "6086",
1108
+ "6099",
1109
+ "6100",
1110
+ "6101",
1111
+ "6102",
1112
+ "6103",
1113
+ "6104",
1114
+ "6105",
1115
+ "6106",
1116
+ "6107",
1117
+ "6108",
1118
+ "6110",
1119
+ "6112",
1120
+ "6113",
1121
+ "6114",
1122
+ "6128",
1123
+ "6130",
1124
+ "6131",
1125
+ "6148",
1126
+ "6157",
1127
+ "6177",
1128
+ "6184",
1129
+ "6195",
1130
+ "6206",
1131
+ "6207",
1132
+ "6209",
1133
+ "6210",
1134
+ "6211",
1135
+ "6212",
1136
+ "6213",
1137
+ "6214",
1138
+ "6215",
1139
+ "6217",
1140
+ "6218",
1141
+ "6219",
1142
+ "6220",
1143
+ "6227",
1144
+ "6235",
1145
+ "6242",
1146
+ "6246",
1147
+ "6252",
1148
+ "6260",
1149
+ "6262",
1150
+ "6266",
1151
+ "6283",
1152
+ "6291",
1153
+ "6292",
1154
+ "6293",
1155
+ "6294",
1156
+ "6295",
1157
+ "6296",
1158
+ "6297",
1159
+ "6298",
1160
+ "6299",
1161
+ "6302",
1162
+ "6321",
1163
+ "6322",
1164
+ "6323",
1165
+ "6350",
1166
+ "6356",
1167
+ "6367",
1168
+ "6373",
1169
+ "6384",
1170
+ "6385",
1171
+ "6386",
1172
+ "6387",
1173
+ "6388",
1174
+ "6389",
1175
+ "6409",
1176
+ "6411",
1177
+ "6412",
1178
+ "6416",
1179
+ "6422",
1180
+ "6438",
1181
+ "6466",
1182
+ "6500",
1183
+ "6505",
1184
+ "6506",
1185
+ "6508",
1186
+ "6509",
1187
+ "6511",
1188
+ "6512",
1189
+ "6513",
1190
+ "6516",
1191
+ "6517",
1192
+ "6518",
1193
+ "6520",
1194
+ "6522",
1195
+ "6524",
1196
+ "6525",
1197
+ "6526",
1198
+ "6527",
1199
+ "6528",
1200
+ "6560",
1201
+ "6561",
1202
+ "6562",
1203
+ "6563",
1204
+ "6565",
1205
+ "6566",
1206
+ "6569",
1207
+ "6571",
1208
+ "6592",
1209
+ "6594",
1210
+ "6596",
1211
+ "6601",
1212
+ "6602",
1213
+ "6627",
1214
+ "6630",
1215
+ "6633",
1216
+ "6660",
1217
+ "6661",
1218
+ "6662",
1219
+ "6663",
1220
+ "6664",
1221
+ "6665",
1222
+ "6679",
1223
+ "6686",
1224
+ "6693",
1225
+ "6694",
1226
+ "6695",
1227
+ "6723",
1228
+ "6724",
1229
+ "6726",
1230
+ "6729",
1231
+ "6736",
1232
+ "6738",
1233
+ "6755",
1234
+ "6769",
1235
+ "6777",
1236
+ "6811",
1237
+ "6840",
1238
+ "6894",
1239
+ "6901",
1240
+ "6902",
1241
+ "6903",
1242
+ "6905",
1243
+ "6907",
1244
+ "6909",
1245
+ "6912",
1246
+ "6916",
1247
+ "6918",
1248
+ "6920",
1249
+ "6921",
1250
+ "6925",
1251
+ "6926",
1252
+ "6927",
1253
+ "6928",
1254
+ "6929",
1255
+ "6930",
1256
+ "6934",
1257
+ "6935",
1258
+ "6937",
1259
+ "6938",
1260
+ "6939",
1261
+ "6940",
1262
+ "6941",
1263
+ "6942",
1264
+ "6954",
1265
+ "6955",
1266
+ "6956",
1267
+ "6957",
1268
+ "6959",
1269
+ "6960",
1270
+ "6961",
1271
+ "6962",
1272
+ "6965",
1273
+ "6983",
1274
+ "6985",
1275
+ "6986",
1276
+ "6987",
1277
+ "6988",
1278
+ "6991",
1279
+ "6999",
1280
+ "7003",
1281
+ "7005",
1282
+ "7006",
1283
+ "7007",
1284
+ "7027",
1285
+ "7028",
1286
+ "7034",
1287
+ "7038",
1288
+ "7041",
1289
+ "7043",
1290
+ "7050",
1291
+ "7052",
1292
+ "7055",
1293
+ "7056",
1294
+ "7057",
1295
+ "7058",
1296
+ "7060",
1297
+ "7075",
1298
+ "7076",
1299
+ "7094",
1300
+ "7127",
1301
+ "7128",
1302
+ "7129",
1303
+ "7133",
1304
+ "7134",
1305
+ "7136",
1306
+ "7138",
1307
+ "7139",
1308
+ "7140",
1309
+ "7145",
1310
+ "7147",
1311
+ "7148",
1312
+ "7149",
1313
+ "7150",
1314
+ "7156",
1315
+ "7157",
1316
+ "7158",
1317
+ "7159",
1318
+ "7160",
1319
+ "7161",
1320
+ "7162",
1321
+ "7163",
1322
+ "7171",
1323
+ "7174",
1324
+ "7175",
1325
+ "7192",
1326
+ "7194",
1327
+ "7195",
1328
+ "7196",
1329
+ "7198",
1330
+ "7215",
1331
+ "7220",
1332
+ "7222",
1333
+ "7226",
1334
+ "7227",
1335
+ "7228",
1336
+ "7230",
1337
+ "7231",
1338
+ "7232",
1339
+ "7233",
1340
+ "7234",
1341
+ "7235",
1342
+ "7236",
1343
+ "7242",
1344
+ "7245",
1345
+ "7251",
1346
+ "7253",
1347
+ "7254",
1348
+ "7255",
1349
+ "7256",
1350
+ "7257",
1351
+ "7259",
1352
+ "7260",
1353
+ "7261",
1354
+ "7262",
1355
+ "7263",
1356
+ "7264",
1357
+ "7265",
1358
+ "7269",
1359
+ "7270",
1360
+ "7272",
1361
+ "7279",
1362
+ "7280",
1363
+ "7281",
1364
+ "7282",
1365
+ "7283",
1366
+ "7284",
1367
+ "7285",
1368
+ "7286",
1369
+ "7287",
1370
+ "7289",
1371
+ "7290",
1372
+ "7291",
1373
+ "7292",
1374
+ "7293",
1375
+ "7295",
1376
+ "7296",
1377
+ "7297",
1378
+ "7298",
1379
+ "7299",
1380
+ "7302",
1381
+ "7303",
1382
+ "7305",
1383
+ "7306",
1384
+ "7307",
1385
+ "7308",
1386
+ "7309",
1387
+ "7310",
1388
+ "7312",
1389
+ "7313",
1390
+ "7315",
1391
+ "7316",
1392
+ "7317",
1393
+ "7318",
1394
+ "7319",
1395
+ "7320",
1396
+ "7321",
1397
+ "7322",
1398
+ "7323",
1399
+ "7324",
1400
+ "7329",
1401
+ "7330",
1402
+ "7349",
1403
+ "7351",
1404
+ "7352",
1405
+ "7353",
1406
+ "7354",
1407
+ "7355",
1408
+ "7356",
1409
+ "7357",
1410
+ "7358",
1411
+ "7359",
1412
+ "7366",
1413
+ "7368",
1414
+ "7369",
1415
+ "7370",
1416
+ "7372",
1417
+ "7378",
1418
+ "7379",
1419
+ "7380",
1420
+ "7381",
1421
+ "7382",
1422
+ "7383",
1423
+ "7384",
1424
+ "7395",
1425
+ "7397",
1426
+ "7399",
1427
+ "7401",
1428
+ "7405",
1429
+ "7408",
1430
+ "7409",
1431
+ "7411",
1432
+ "7412",
1433
+ "7414",
1434
+ "7443",
1435
+ "7444",
1436
+ "7450",
1437
+ "7460",
1438
+ "7476",
1439
+ "7535",
1440
+ "7536",
1441
+ "7537",
1442
+ "7538",
1443
+ "7539",
1444
+ "7540",
1445
+ "7541",
1446
+ "7542",
1447
+ "7543",
1448
+ "7544",
1449
+ "7545",
1450
+ "7546",
1451
+ "7549",
1452
+ "7551",
1453
+ "7552",
1454
+ "7553",
1455
+ "7554",
1456
+ "7555",
1457
+ "7556",
1458
+ "7557",
1459
+ "7558",
1460
+ "7559",
1461
+ "7564",
1462
+ "7566",
1463
+ "7567",
1464
+ "7568",
1465
+ "7569",
1466
+ "7572",
1467
+ "7573",
1468
+ "7574",
1469
+ "7575",
1470
+ "7578",
1471
+ "7580",
1472
+ "7581",
1473
+ "7582",
1474
+ "7583",
1475
+ "7584",
1476
+ "7585",
1477
+ "7586",
1478
+ "7587",
1479
+ "7590",
1480
+ "7592",
1481
+ "7593",
1482
+ "7594",
1483
+ "7595",
1484
+ "7596",
1485
+ "7597",
1486
+ "7598",
1487
+ "7599",
1488
+ "7600",
1489
+ "7601",
1490
+ "7606",
1491
+ "7607",
1492
+ "7608",
1493
+ "7609",
1494
+ "7610",
1495
+ "7611",
1496
+ "7612",
1497
+ "7613",
1498
+ "7614",
1499
+ "7624",
1500
+ "7633",
1501
+ "7636",
1502
+ "7638",
1503
+ "7650",
1504
+ "7651",
1505
+ "7652",
1506
+ "7653",
1507
+ "7654",
1508
+ "7655",
1509
+ "7656",
1510
+ "7657",
1511
+ "7659",
1512
+ "7660",
1513
+ "7661",
1514
+ "7664",
1515
+ "7666",
1516
+ "7667",
1517
+ "7668",
1518
+ "7669",
1519
+ "7670",
1520
+ "7686",
1521
+ "7687",
1522
+ "7692",
1523
+ "7696",
1524
+ "7698",
1525
+ "7699",
1526
+ "7700",
1527
+ "7701",
1528
+ "7702",
1529
+ "7705",
1530
+ "7706",
1531
+ "7707",
1532
+ "7708",
1533
+ "7709",
1534
+ "7710",
1535
+ "7711",
1536
+ "7712",
1537
+ "7713",
1538
+ "7715",
1539
+ "7716",
1540
+ "7717",
1541
+ "7718",
1542
+ "7719",
1543
+ "7720",
1544
+ "7721",
1545
+ "7722",
1546
+ "7724",
1547
+ "7731",
1548
+ "7732",
1549
+ "7734",
1550
+ "7735",
1551
+ "7741",
1552
+ "7768",
1553
+ "7791",
1554
+ "7871",
1555
+ "7884",
1556
+ "7964",
1557
+ "7965",
1558
+ "7967",
1559
+ "7968",
1560
+ "7969",
1561
+ "7970",
1562
+ "7971",
1563
+ "7974",
1564
+ "7975",
1565
+ "7976",
1566
+ "7979",
1567
+ "7980",
1568
+ "7989",
1569
+ "7992",
1570
+ "7993",
1571
+ "7994",
1572
+ "7995",
1573
+ "7996",
1574
+ "8010",
1575
+ "8014",
1576
+ "8015",
1577
+ "8016",
1578
+ "8017",
1579
+ "8018",
1580
+ "8019",
1581
+ "8020",
1582
+ "8022",
1583
+ "8023",
1584
+ "8024",
1585
+ "8025",
1586
+ "8026",
1587
+ "8027",
1588
+ "8028",
1589
+ "8057",
1590
+ "8083",
1591
+ "8207",
1592
+ "8208",
1593
+ "8209",
1594
+ "8210",
1595
+ "8212",
1596
+ "8213",
1597
+ "8225",
1598
+ "8227",
1599
+ "8228",
1600
+ "8232",
1601
+ "8233",
1602
+ "8234",
1603
+ "8236",
1604
+ "8237",
1605
+ "8238",
1606
+ "8313",
1607
+ "8316",
1608
+ "8317",
1609
+ "8318",
1610
+ "8319",
1611
+ "8320",
1612
+ "8321",
1613
+ "8323",
1614
+ "8324",
1615
+ "8329",
1616
+ "8358",
1617
+ "8367",
1618
+ "8371",
1619
+ "8378",
1620
+ "8379",
1621
+ "8382",
1622
+ "8413",
1623
+ "8414",
1624
+ "8415",
1625
+ "8416",
1626
+ "8417",
1627
+ "8418",
1628
+ "8419",
1629
+ "8421",
1630
+ "8422",
1631
+ "8423",
1632
+ "8453",
1633
+ "8519",
1634
+ "8590",
1635
+ "8644",
1636
+ "8648",
1637
+ "8664",
1638
+ "8670",
1639
+ "8671",
1640
+ "8677",
1641
+ "8712",
1642
+ "8713",
1643
+ "8714",
1644
+ "8724",
1645
+ "8755",
1646
+ "8790",
1647
+ "8791",
1648
+ "8792",
1649
+ "8793",
1650
+ "8794",
1651
+ "8795",
1652
+ "8796",
1653
+ "8799",
1654
+ "8800",
1655
+ "8801",
1656
+ "8802",
1657
+ "8803",
1658
+ "8804",
1659
+ "8841",
1660
+ "8852",
1661
+ "8892",
1662
+ "8893",
1663
+ "8894",
1664
+ "8898",
1665
+ "8899",
1666
+ "8908",
1667
+ "9005",
1668
+ "9006",
1669
+ "9034",
1670
+ "9035",
1671
+ "9049",
1672
+ "9050",
1673
+ "9051",
1674
+ "9052",
1675
+ "9053",
1676
+ "9054",
1677
+ "9055",
1678
+ "9056",
1679
+ "9067",
1680
+ "9083",
1681
+ "9087",
1682
+ "9118",
1683
+ "9121",
1684
+ "9122",
1685
+ "9153",
1686
+ "9165",
1687
+ "9191",
1688
+ "9199",
1689
+ "9209",
1690
+ "9212",
1691
+ "9228",
1692
+ "9247",
1693
+ "9249",
1694
+ "9269",
1695
+ "9297",
1696
+ "9299",
1697
+ "9324",
1698
+ "9326",
1699
+ "9328",
1700
+ "9339",
1701
+ "9341",
1702
+ "9343",
1703
+ "9344",
1704
+ "9345",
1705
+ "9346",
1706
+ "9399",
1707
+ "9415",
1708
+ "9435",
1709
+ "9448",
1710
+ "9455",
1711
+ "9456",
1712
+ "9468",
1713
+ "9469",
1714
+ "9470",
1715
+ "9472",
1716
+ "9490",
1717
+ "9491",
1718
+ "9493",
1719
+ "9496",
1720
+ "9518",
1721
+ "9584",
1722
+ "9621",
1723
+ "9622",
1724
+ "9639",
1725
+ "9642",
1726
+ "9649",
1727
+ "9693",
1728
+ "9696",
1729
+ "9697",
1730
+ "9704",
1731
+ "9709",
1732
+ "9723",
1733
+ "9747",
1734
+ "9773",
1735
+ "9792",
1736
+ "9793",
1737
+ "9808",
1738
+ "9816",
1739
+ "9820",
1740
+ "9824",
1741
+ "9828",
1742
+ "9868",
1743
+ "9884",
1744
+ "9894",
1745
+ "9895",
1746
+ "9896",
1747
+ "9898",
1748
+ "9905",
1749
+ "9909",
1750
+ "9910",
1751
+ "9998",
1752
+ "10023",
1753
+ "10093",
1754
+ "10141",
1755
+ "10146",
1756
+ "10147",
1757
+ "10150",
1758
+ "10156",
1759
+ "10173",
1760
+ "10174",
1761
+ "10175",
1762
+ "10176",
1763
+ "10177",
1764
+ "10178",
1765
+ "10179",
1766
+ "10180",
1767
+ "10181",
1768
+ "10183",
1769
+ "10185",
1770
+ "10232",
1771
+ "10233",
1772
+ "10234",
1773
+ "10236",
1774
+ "10255",
1775
+ "10260",
1776
+ "10261",
1777
+ "10265",
1778
+ "10279",
1779
+ "10304",
1780
+ "10346",
1781
+ "10351",
1782
+ "10364",
1783
+ "10380",
1784
+ "10389",
1785
+ "10404",
1786
+ "10433",
1787
+ "10448",
1788
+ "10449",
1789
+ "10496",
1790
+ "10542",
1791
+ "10543",
1792
+ "10544",
1793
+ "10551",
1794
+ "10564",
1795
+ "10570",
1796
+ "10576",
1797
+ "10585",
1798
+ "10621",
1799
+ "10628",
1800
+ "10660",
1801
+ "10668",
1802
+ "10677",
1803
+ "10684",
1804
+ "10691",
1805
+ "10710",
1806
+ "10765",
1807
+ "10770",
1808
+ "10771",
1809
+ "10772",
1810
+ "10786",
1811
+ "10793",
1812
+ "10808",
1813
+ "10811",
1814
+ "10813",
1815
+ "10820",
1816
+ "10827",
1817
+ "10828",
1818
+ "10829",
1819
+ "10834",
1820
+ "10838",
1821
+ "10867",
1822
+ "10869",
1823
+ "10884",
1824
+ "10885",
1825
+ "10886",
1826
+ "10887",
1827
+ "10890",
1828
+ "10891",
1829
+ "10895",
1830
+ "10911",
1831
+ "10922",
1832
+ "10928",
1833
+ "10930",
1834
+ "10931",
1835
+ "10932",
1836
+ "10935",
1837
+ "10937",
1838
+ "10938",
1839
+ "10939",
1840
+ "10962",
1841
+ "10967",
1842
+ "10968",
1843
+ "10969",
1844
+ "10970",
1845
+ "10971",
1846
+ "10972",
1847
+ "10973",
1848
+ "10974",
1849
+ "10975",
1850
+ "10981",
1851
+ "10983",
1852
+ "10989",
1853
+ "10990",
1854
+ "10991",
1855
+ "10993",
1856
+ "10994",
1857
+ "10995",
1858
+ "10997",
1859
+ "10998",
1860
+ "10999",
1861
+ "11000",
1862
+ "11001",
1863
+ "11002",
1864
+ "11003",
1865
+ "11004",
1866
+ "11005",
1867
+ "11007",
1868
+ "11008",
1869
+ "11009",
1870
+ "11010",
1871
+ "11014",
1872
+ "11023",
1873
+ "11043",
1874
+ "11045",
1875
+ "11051",
1876
+ "11062",
1877
+ "11090",
1878
+ "11126",
1879
+ "11144",
1880
+ "11145",
1881
+ "11146",
1882
+ "11147",
1883
+ "11158",
1884
+ "11159",
1885
+ "11161",
1886
+ "11177",
1887
+ "11193",
1888
+ "11202",
1889
+ "11229",
1890
+ "11233",
1891
+ "11284",
1892
+ "11305",
1893
+ "11307",
1894
+ "11317",
1895
+ "11318",
1896
+ "11320",
1897
+ "11324",
1898
+ "11336",
1899
+ "11372",
1900
+ "11405",
1901
+ "11420",
1902
+ "11423",
1903
+ "11424",
1904
+ "11426",
1905
+ "11432",
1906
+ "11435",
1907
+ "11436",
1908
+ "11445",
1909
+ "11453",
1910
+ "11459",
1911
+ "11469",
1912
+ "11521",
1913
+ "11548",
1914
+ "11580",
1915
+ "11616",
1916
+ "11617",
1917
+ "11631",
1918
+ "11632",
1919
+ "11633",
1920
+ "11659",
1921
+ "11661",
1922
+ "11679",
1923
+ "11680",
1924
+ "11681",
1925
+ "11690",
1926
+ "11723",
1927
+ "11734",
1928
+ "11767",
1929
+ "11869",
1930
+ "11907",
1931
+ "11908",
1932
+ "11913",
1933
+ "11944",
1934
+ "11949",
1935
+ "11950",
1936
+ "11951",
1937
+ "11954",
1938
+ "11986",
1939
+ "11988",
1940
+ "12018",
1941
+ "12049",
1942
+ "12097",
1943
+ "12098",
1944
+ "12099",
1945
+ "12118",
1946
+ "12159",
1947
+ "12207",
1948
+ "12270",
1949
+ "12275",
1950
+ "12285",
1951
+ "12291",
1952
+ "12296",
1953
+ "12341",
1954
+ "12352",
1955
+ "12385",
1956
+ "12393",
1957
+ "12445",
1958
+ "12466",
1959
+ "12467",
1960
+ "12561",
1961
+ "12563",
1962
+ "12565",
1963
+ "12566",
1964
+ "12581",
1965
+ "12624",
1966
+ "12659",
1967
+ "12706",
1968
+ "12723",
1969
+ "12732",
1970
+ "12739",
1971
+ "12750",
1972
+ "12798",
1973
+ "12806",
1974
+ "12811",
1975
+ "12938",
1976
+ "12940",
1977
+ "12941",
1978
+ "12942",
1979
+ "12943",
1980
+ "12944",
1981
+ "12949",
1982
+ "12952",
1983
+ "12970",
1984
+ "12974",
1985
+ "12978",
1986
+ "12996",
1987
+ "12997",
1988
+ "13003",
1989
+ "13011",
1990
+ "13012",
1991
+ "13035",
1992
+ "13036",
1993
+ "13107",
1994
+ "13113",
1995
+ "13114",
1996
+ "13119",
1997
+ "13122",
1998
+ "13137",
1999
+ "13177",
2000
+ "13178",
2001
+ "13186",
2002
+ "13187",
2003
+ "13219",
2004
+ "13245",
2005
+ "15416",
2006
+ "15506",
2007
+ "16226",
2008
+ "16304",
2009
+ "16305",
2010
+ "16306",
2011
+ "16328",
2012
+ "16330",
2013
+ "16337",
2014
+ "16338",
2015
+ "16342",
2016
+ "16390",
2017
+ "16394",
2018
+ "16423",
2019
+ "16426",
2020
+ "16427",
2021
+ "16475",
2022
+ "16483",
2023
+ "16500",
2024
+ "16503",
2025
+ "16543",
2026
+ "16544",
2027
+ "16568",
2028
+ "16570",
2029
+ "16573",
2030
+ "16579",
2031
+ "16584",
2032
+ "16587",
2033
+ "16590",
2034
+ "16592",
2035
+ "16593",
2036
+ "16618",
2037
+ "16643",
2038
+ "16646",
2039
+ "16650",
2040
+ "16712",
2041
+ "16750",
2042
+ "16752",
2043
+ "16753",
2044
+ "16755",
2045
+ "16757",
2046
+ "16767",
2047
+ "16770",
2048
+ "16778",
2049
+ "16785",
2050
+ "16814",
2051
+ "16817",
2052
+ "16827",
2053
+ "16829",
2054
+ "16830",
2055
+ "16831",
2056
+ "16845",
2057
+ "16857",
2058
+ "16861",
2059
+ "16875",
2060
+ "16946",
2061
+ "16950",
2062
+ "16959",
2063
+ "16962",
2064
+ "16972",
2065
+ "16988",
2066
+ "16989",
2067
+ "16996",
2068
+ "17018",
2069
+ "17033",
2070
+ "17048",
2071
+ "17049",
2072
+ "17050",
2073
+ "17057",
2074
+ "17068",
2075
+ "17070",
2076
+ "17072",
2077
+ "17083",
2078
+ "17086",
2079
+ "17110",
2080
+ "17118",
2081
+ "17200",
2082
+ "17204",
2083
+ "17221",
2084
+ "17222",
2085
+ "17228",
2086
+ "17248",
2087
+ "17262",
2088
+ "17265",
2089
+ "17271",
2090
+ "17282",
2091
+ "17320",
2092
+ "17334",
2093
+ "17337",
2094
+ "17339",
2095
+ "17340",
2096
+ "17343",
2097
+ "17354",
2098
+ "17356",
2099
+ "17357",
2100
+ "17358",
2101
+ "17359",
2102
+ "17361",
2103
+ "17362",
2104
+ "17363",
2105
+ "17364",
2106
+ "17365",
2107
+ "17366",
2108
+ "17367",
2109
+ "17368",
2110
+ "17369",
2111
+ "17370",
2112
+ "17371",
2113
+ "17372",
2114
+ "17374",
2115
+ "17375",
2116
+ "17376",
2117
+ "17377",
2118
+ "17378",
2119
+ "17379",
2120
+ "17429",
2121
+ "17452",
2122
+ "17453",
2123
+ "17467",
2124
+ "17468",
2125
+ "17476",
2126
+ "17479",
2127
+ "17482",
2128
+ "17545",
2129
+ "17546",
2130
+ "17547",
2131
+ "17548",
2132
+ "17549",
2133
+ "17573",
2134
+ "17576",
2135
+ "17580",
2136
+ "17631",
2137
+ "17637",
2138
+ "17642",
2139
+ "17645",
2140
+ "17685",
2141
+ "17711",
2142
+ "17715",
2143
+ "17804",
2144
+ "17815",
2145
+ "17820",
2146
+ "17827",
2147
+ "17829",
2148
+ "17832",
2149
+ "17833",
2150
+ "17835",
2151
+ "17846",
2152
+ "17887",
2153
+ "17897",
2154
+ "17919",
2155
+ "17924",
2156
+ "17927",
2157
+ "17928",
2158
+ "17936",
2159
+ "17937",
2160
+ "18032",
2161
+ "18035",
2162
+ "18047",
2163
+ "18049",
2164
+ "18050",
2165
+ "18053",
2166
+ "18054",
2167
+ "18056",
2168
+ "18057",
2169
+ "18075",
2170
+ "18076",
2171
+ "18077",
2172
+ "18117",
2173
+ "18122",
2174
+ "18129",
2175
+ "18137",
2176
+ "18150",
2177
+ "18151",
2178
+ "18179",
2179
+ "18183",
2180
+ "18184",
2181
+ "18187",
2182
+ "18235",
2183
+ "18266",
2184
+ "18268",
2185
+ "18289",
2186
+ "18299",
2187
+ "18310",
2188
+ "18313",
2189
+ "18343",
2190
+ "18344",
2191
+ "18345",
2192
+ "18346",
2193
+ "18347",
2194
+ "18348",
2195
+ "18349",
2196
+ "18350",
2197
+ "18353",
2198
+ "18354",
2199
+ "18373",
2200
+ "18374",
2201
+ "18445",
2202
+ "18520",
2203
+ "18551",
2204
+ "18553",
2205
+ "18586",
2206
+ "18649",
2207
+ "18741",
2208
+ "18742",
2209
+ "18743",
2210
+ "18744",
2211
+ "18745",
2212
+ "18747",
2213
+ "18748",
2214
+ "18749",
2215
+ "18750",
2216
+ "18751",
2217
+ "18753",
2218
+ "18754",
2219
+ "18755",
2220
+ "18756",
2221
+ "18757",
2222
+ "18758",
2223
+ "18759",
2224
+ "18760",
2225
+ "18761",
2226
+ "18762",
2227
+ "18769",
2228
+ "18774",
2229
+ "18776",
2230
+ "18790",
2231
+ "18806",
2232
+ "18809",
2233
+ "18839",
2234
+ "18878",
2235
+ "18951",
2236
+ "18964",
2237
+ "19010",
2238
+ "19011",
2239
+ "19012",
2240
+ "19022",
2241
+ "19039",
2242
+ "19106",
2243
+ "19139",
2244
+ "19140",
2245
+ "19143",
2246
+ "19163",
2247
+ "19211",
2248
+ "19281",
2249
+ "19299",
2250
+ "19334",
2251
+ "19340",
2252
+ "19342",
2253
+ "19343",
2254
+ "19345",
2255
+ "19346",
2256
+ "19350",
2257
+ "19354",
2258
+ "19358",
2259
+ "19359",
2260
+ "19362",
2261
+ "19366",
2262
+ "19377",
2263
+ "19390",
2264
+ "19393",
2265
+ "19421",
2266
+ "19428",
2267
+ "19438",
2268
+ "19496",
2269
+ "19505",
2270
+ "19531",
2271
+ "19539",
2272
+ "19540",
2273
+ "19639",
2274
+ "19648",
2275
+ "19759",
2276
+ "19762",
2277
+ "19787",
2278
+ "19815",
2279
+ "19819",
2280
+ "19820",
2281
+ "19846",
2282
+ "19894",
2283
+ "19931",
2284
+ "19998",
2285
+ "20020",
2286
+ "20085",
2287
+ "20086",
2288
+ "20093",
2289
+ "20098",
2290
+ "20099",
2291
+ "20100",
2292
+ "20101",
2293
+ "20113",
2294
+ "20140",
2295
+ "20213",
2296
+ "20243",
2297
+ "20244",
2298
+ "20246",
2299
+ "20304",
2300
+ "20314",
2301
+ "20317",
2302
+ "20325",
2303
+ "20326",
2304
+ "20328",
2305
+ "20329",
2306
+ "20331",
2307
+ "20332",
2308
+ "20333",
2309
+ "20334",
2310
+ "20335",
2311
+ "20355",
2312
+ "20395",
2313
+ "20401",
2314
+ "20402",
2315
+ "20403",
2316
+ "20466",
2317
+ "20474",
2318
+ "20490",
2319
+ "20546",
2320
+ "20642",
2321
+ "20716",
2322
+ "20731",
2323
+ "20780",
2324
+ "20812",
2325
+ "20822",
2326
+ "20847",
2327
+ "20873",
2328
+ "20874",
2329
+ "20875",
2330
+ "20876",
2331
+ "20880",
2332
+ "20882",
2333
+ "20904",
2334
+ "20923",
2335
+ "20924",
2336
+ "20926",
2337
+ "20935",
2338
+ "20960",
2339
+ "20962",
2340
+ "21018",
2341
+ "21032",
2342
+ "21114",
2343
+ "21137",
2344
+ "21138",
2345
+ "21139",
2346
+ "21163",
2347
+ "21247",
2348
+ "21261",
2349
+ "21305",
2350
+ "21306",
2351
+ "21309",
2352
+ "21311",
2353
+ "21315",
2354
+ "21317",
2355
+ "21318",
2356
+ "21319",
2357
+ "21320",
2358
+ "21321",
2359
+ "21327",
2360
+ "21338",
2361
+ "21341",
2362
+ "21344",
2363
+ "21345",
2364
+ "21362",
2365
+ "21369",
2366
+ "21371",
2367
+ "21372",
2368
+ "21373",
2369
+ "21374",
2370
+ "21381",
2371
+ "21383",
2372
+ "21384",
2373
+ "21396",
2374
+ "21422",
2375
+ "21430",
2376
+ "21443",
2377
+ "21477",
2378
+ "21500",
2379
+ "21544",
2380
+ "21545",
2381
+ "21546",
2382
+ "21555",
2383
+ "21571",
2384
+ "21572",
2385
+ "21573",
2386
+ "21580",
2387
+ "21658",
2388
+ "21703",
2389
+ "21706",
2390
+ "21740",
2391
+ "21741",
2392
+ "21757",
2393
+ "21760",
2394
+ "21774",
2395
+ "21776",
2396
+ "21777",
2397
+ "21778",
2398
+ "21779",
2399
+ "21781",
2400
+ "21782",
2401
+ "21785",
2402
+ "21786",
2403
+ "21790",
2404
+ "21793",
2405
+ "21841",
2406
+ "21871",
2407
+ "21891",
2408
+ "21895",
2409
+ "21897",
2410
+ "21898",
2411
+ "21902",
2412
+ "21905",
2413
+ "21968",
2414
+ "22014",
2415
+ "22128",
2416
+ "22137",
2417
+ "22157",
2418
+ "22227",
2419
+ "22228",
2420
+ "22229",
2421
+ "22230",
2422
+ "22231",
2423
+ "22232",
2424
+ "22233",
2425
+ "22234",
2426
+ "22236",
2427
+ "22248",
2428
+ "22287",
2429
+ "22289",
2430
+ "22290",
2431
+ "22291",
2432
+ "22300",
2433
+ "22303",
2434
+ "22305",
2435
+ "22318",
2436
+ "22322",
2437
+ "22327",
2438
+ "22380",
2439
+ "22382",
2440
+ "22384",
2441
+ "22388",
2442
+ "22390",
2443
+ "22391",
2444
+ "22398",
2445
+ "22417",
2446
+ "22418",
2447
+ "22419",
2448
+ "22420",
2449
+ "22425",
2450
+ "22585",
2451
+ "22614",
2452
+ "22641",
2453
+ "22643",
2454
+ "22716",
2455
+ "22737",
2456
+ "22749",
2457
+ "22750",
2458
+ "22751",
2459
+ "22756",
2460
+ "22765",
2461
+ "22785",
2462
+ "22796",
2463
+ "22797",
2464
+ "22821",
2465
+ "22857",
2466
+ "22870",
2467
+ "22885",
2468
+ "22886",
2469
+ "22887",
2470
+ "22927",
2471
+ "22929",
2472
+ "22933",
2473
+ "22934",
2474
+ "22946",
2475
+ "22960",
2476
+ "23030",
2477
+ "23061",
2478
+ "23134",
2479
+ "23135",
2480
+ "23322",
2481
+ "23329",
2482
+ "23331",
2483
+ "23405",
2484
+ "23474",
2485
+ "23484",
2486
+ "23489",
2487
+ "23490",
2488
+ "23495",
2489
+ "23526",
2490
+ "23531",
2491
+ "23532",
2492
+ "23549",
2493
+ "23550",
2494
+ "23551",
2495
+ "23579",
2496
+ "23604",
2497
+ "23611",
2498
+ "23709",
2499
+ "23733",
2500
+ "23752",
2501
+ "23780",
2502
+ "23782",
2503
+ "23790",
2504
+ "23791",
2505
+ "23803",
2506
+ "23811",
2507
+ "23812",
2508
+ "23814",
2509
+ "23819",
2510
+ "23820",
2511
+ "23835",
2512
+ "23838",
2513
+ "23901",
2514
+ "23903",
2515
+ "23904",
2516
+ "23923",
2517
+ "23924",
2518
+ "23929",
2519
+ "23939",
2520
+ "23944",
2521
+ "24002",
2522
+ "24013",
2523
+ "24040",
2524
+ "24041",
2525
+ "24042",
2526
+ "24043",
2527
+ "24045",
2528
+ "24046",
2529
+ "24116",
2530
+ "24154",
2531
+ "24208",
2532
+ "24266",
2533
+ "24289",
2534
+ "24307",
2535
+ "24339",
2536
+ "24487",
2537
+ "24565",
2538
+ "24631",
2539
+ "24643",
2540
+ "24671",
2541
+ "24678",
2542
+ "24679",
2543
+ "24680",
2544
+ "24681",
2545
+ "24682",
2546
+ "24684",
2547
+ "24685",
2548
+ "24686",
2549
+ "24804",
2550
+ "24811",
2551
+ "24902",
2552
+ "24905",
2553
+ "24923",
2554
+ "24924",
2555
+ "24927",
2556
+ "24937",
2557
+ "24988",
2558
+ "24989",
2559
+ "24996",
2560
+ "25006",
2561
+ "25063",
2562
+ "25064",
2563
+ "25065",
2564
+ "25066",
2565
+ "25067",
2566
+ "25068",
2567
+ "25081",
2568
+ "25092",
2569
+ "25094",
2570
+ "25161",
2571
+ "25245",
2572
+ "25267",
2573
+ "25289",
2574
+ "25296",
2575
+ "25313",
2576
+ "25314",
2577
+ "25405",
2578
+ "25408",
2579
+ "25416",
2580
+ "25420",
2581
+ "25423",
2582
+ "25489",
2583
+ "25522",
2584
+ "25523",
2585
+ "25543",
2586
+ "25546",
2587
+ "25547",
2588
+ "25552",
2589
+ "25553",
2590
+ "25559",
2591
+ "25570",
2592
+ "25571",
2593
+ "25578",
2594
+ "25602",
2595
+ "25635",
2596
+ "25637",
2597
+ "25638",
2598
+ "25642",
2599
+ "25655",
2600
+ "25657",
2601
+ "25673",
2602
+ "25675",
2603
+ "25681",
2604
+ "25686",
2605
+ "25690",
2606
+ "25692",
2607
+ "25693",
2608
+ "25723",
2609
+ "25730",
2610
+ "25733",
2611
+ "25777",
2612
+ "25807",
2613
+ "25809",
2614
+ "25813",
2615
+ "25815",
2616
+ "25827",
2617
+ "25829",
2618
+ "25845",
2619
+ "25846",
2620
+ "25919",
2621
+ "25920",
2622
+ "25921",
2623
+ "25951",
2624
+ "25961",
2625
+ "25971",
2626
+ "25974",
2627
+ "25975",
2628
+ "25976",
2629
+ "25979",
2630
+ "25980",
2631
+ "25985",
2632
+ "25987",
2633
+ "25992",
2634
+ "25995",
2635
+ "26018",
2636
+ "26030",
2637
+ "26034",
2638
+ "26036",
2639
+ "26037",
2640
+ "26039",
2641
+ "26043",
2642
+ "26044",
2643
+ "26085",
2644
+ "26129",
2645
+ "26130",
2646
+ "26131",
2647
+ "26132",
2648
+ "26133",
2649
+ "26134",
2650
+ "26136",
2651
+ "26137",
2652
+ "26139",
2653
+ "26203",
2654
+ "26213",
2655
+ "26216",
2656
+ "26224",
2657
+ "26242",
2658
+ "26243",
2659
+ "26248",
2660
+ "26283",
2661
+ "26286",
2662
+ "26312",
2663
+ "26318",
2664
+ "26320",
2665
+ "26324",
2666
+ "26328",
2667
+ "26330",
2668
+ "26331",
2669
+ "26334",
2670
+ "26343",
2671
+ "26370",
2672
+ "26373",
2673
+ "26379",
2674
+ "26383",
2675
+ "26388",
2676
+ "26396",
2677
+ "26399",
2678
+ "26402",
2679
+ "26403",
2680
+ "26441",
2681
+ "26517",
2682
+ "26547",
2683
+ "26563",
2684
+ "26564",
2685
+ "26565",
2686
+ "26626",
2687
+ "26630",
2688
+ "26631",
2689
+ "26657",
2690
+ "26735",
2691
+ "26760",
2692
+ "26790",
2693
+ "26974",
2694
+ "26983",
2695
+ "26984",
2696
+ "26985",
2697
+ "27036",
2698
+ "27037",
2699
+ "27039",
2700
+ "27043",
2701
+ "27045",
2702
+ "27046",
2703
+ "27047",
2704
+ "27087",
2705
+ "27093",
2706
+ "27094",
2707
+ "27100",
2708
+ "27126",
2709
+ "27127",
2710
+ "27128",
2711
+ "27141",
2712
+ "27150",
2713
+ "27162",
2714
+ "27163",
2715
+ "27166",
2716
+ "27175",
2717
+ "27179",
2718
+ "27188",
2719
+ "27190",
2720
+ "27191",
2721
+ "27198",
2722
+ "27200",
2723
+ "27201",
2724
+ "27203",
2725
+ "27207",
2726
+ "27208",
2727
+ "27209",
2728
+ "27216",
2729
+ "27220",
2730
+ "27234",
2731
+ "27263",
2732
+ "27308",
2733
+ "27369",
2734
+ "27371",
2735
+ "27372",
2736
+ "27373",
2737
+ "27374",
2738
+ "27412",
2739
+ "27442",
2740
+ "27443",
2741
+ "27445",
2742
+ "27447",
2743
+ "27449",
2744
+ "27456",
2745
+ "27457",
2746
+ "27458",
2747
+ "27459",
2748
+ "27460",
2749
+ "27461",
2750
+ "27462",
2751
+ "27463",
2752
+ "27464",
2753
+ "27465",
2754
+ "27467",
2755
+ "27470",
2756
+ "27471",
2757
+ "27472",
2758
+ "27476",
2759
+ "27509",
2760
+ "27629",
2761
+ "27670",
2762
+ "27695",
2763
+ "27726",
2764
+ "27786",
2765
+ "27788",
2766
+ "27789",
2767
+ "27798",
2768
+ "27799",
2769
+ "27920",
2770
+ "27930",
2771
+ "27933",
2772
+ "27955",
2773
+ "27956",
2774
+ "27988",
2775
+ "28084",
2776
+ "28104",
2777
+ "28182",
2778
+ "28222",
2779
+ "28238",
2780
+ "28239",
2781
+ "28291",
2782
+ "28293",
2783
+ "28296",
2784
+ "28347",
2785
+ "28378",
2786
+ "28407",
2787
+ "28408",
2788
+ "28409",
2789
+ "28412",
2790
+ "28423",
2791
+ "28426",
2792
+ "28447",
2793
+ "28494",
2794
+ "28530",
2795
+ "28531",
2796
+ "28572",
2797
+ "28701",
2798
+ "28708",
2799
+ "28863",
2800
+ "28898",
2801
+ "28968",
2802
+ "29008",
2803
+ "29031",
2804
+ "29077",
2805
+ "29079",
2806
+ "29080",
2807
+ "29098",
2808
+ "29131",
2809
+ "29132",
2810
+ "29133",
2811
+ "29135",
2812
+ "29159",
2813
+ "29161",
2814
+ "29162",
2815
+ "29171",
2816
+ "29174",
2817
+ "29178",
2818
+ "29218",
2819
+ "29241",
2820
+ "29245",
2821
+ "29246",
2822
+ "29252",
2823
+ "29273",
2824
+ "29281",
2825
+ "29293",
2826
+ "29298",
2827
+ "29317",
2828
+ "29319",
2829
+ "29467",
2830
+ "29472",
2831
+ "29488",
2832
+ "29489",
2833
+ "29494",
2834
+ "29495",
2835
+ "29510",
2836
+ "29511",
2837
+ "29517",
2838
+ "29519",
2839
+ "29559",
2840
+ "29561",
2841
+ "29574",
2842
+ "29615",
2843
+ "29616",
2844
+ "29657",
2845
+ "29704",
2846
+ "29721",
2847
+ "29746",
2848
+ "29835",
2849
+ "29837",
2850
+ "29841",
2851
+ "29842",
2852
+ "29843",
2853
+ "29844",
2854
+ "29845",
2855
+ "29846",
2856
+ "29850",
2857
+ "29853",
2858
+ "29856",
2859
+ "29858",
2860
+ "29861",
2861
+ "29862",
2862
+ "29863",
2863
+ "29864",
2864
+ "29865",
2865
+ "29866",
2866
+ "29867",
2867
+ "29868",
2868
+ "29869",
2869
+ "29870",
2870
+ "29875",
2871
+ "30014",
2872
+ "30026",
2873
+ "30128",
2874
+ "30163",
2875
+ "30164",
2876
+ "30165",
2877
+ "30170",
2878
+ "30179",
2879
+ "30188",
2880
+ "30194",
2881
+ "30195",
2882
+ "30196",
2883
+ "30198",
2884
+ "30200",
2885
+ "30201",
2886
+ "30203",
2887
+ "30206",
2888
+ "30282",
2889
+ "30320",
2890
+ "30375",
2891
+ "30376",
2892
+ "30389",
2893
+ "30410",
2894
+ "30482",
2895
+ "30483",
2896
+ "30484",
2897
+ "30485",
2898
+ "30486",
2899
+ "30489",
2900
+ "30490",
2901
+ "30492",
2902
+ "30494",
2903
+ "30495",
2904
+ "30497",
2905
+ "30518",
2906
+ "30538",
2907
+ "30559",
2908
+ "30561",
2909
+ "30616",
2910
+ "30624",
2911
+ "30706",
2912
+ "30707",
2913
+ "30708",
2914
+ "30709",
2915
+ "30710",
2916
+ "30711",
2917
+ "30713",
2918
+ "30735",
2919
+ "30786",
2920
+ "30787",
2921
+ "30788",
2922
+ "30798",
2923
+ "30809",
2924
+ "30858",
2925
+ "30859",
2926
+ "30860",
2927
+ "30861",
2928
+ "30862",
2929
+ "30864",
2930
+ "30865",
2931
+ "30869",
2932
+ "30871",
2933
+ "30874",
2934
+ "30876",
2935
+ "30878",
2936
+ "30881",
2937
+ "30884",
2938
+ "30886",
2939
+ "30889",
2940
+ "30890",
2941
+ "30892",
2942
+ "30893",
2943
+ "30899",
2944
+ "30900",
2945
+ "30903",
2946
+ "30904",
2947
+ "30905",
2948
+ "30908",
2949
+ "30924",
2950
+ "30937",
2951
+ "30938",
2952
+ "30948",
2953
+ "30958",
2954
+ "30973",
2955
+ "31053",
2956
+ "31054",
2957
+ "31056",
2958
+ "31058",
2959
+ "31059",
2960
+ "31060",
2961
+ "31062",
2962
+ "31063",
2963
+ "31064",
2964
+ "31065",
2965
+ "31066",
2966
+ "31067",
2967
+ "31068",
2968
+ "31069",
2969
+ "31070",
2970
+ "31071",
2971
+ "31072",
2972
+ "31073",
2973
+ "31074",
2974
+ "31075",
2975
+ "31076",
2976
+ "31077",
2977
+ "31078",
2978
+ "31079",
2979
+ "31080",
2980
+ "31100",
2981
+ "31103",
2982
+ "31105",
2983
+ "31143",
2984
+ "31163",
2985
+ "31190",
2986
+ "31207",
2987
+ "31212",
2988
+ "31219",
2989
+ "31239",
2990
+ "31254",
2991
+ "31290",
2992
+ "31292",
2993
+ "31321",
2994
+ "31338",
2995
+ "31339",
2996
+ "31340",
2997
+ "31341",
2998
+ "31342",
2999
+ "31343",
3000
+ "31345",
3001
+ "31348",
3002
+ "31363",
3003
+ "31446",
3004
+ "31490",
3005
+ "31491",
3006
+ "31492",
3007
+ "31493",
3008
+ "31494",
3009
+ "31496",
3010
+ "31497",
3011
+ "31519",
3012
+ "31537",
3013
+ "31540",
3014
+ "31546",
3015
+ "31548",
3016
+ "31550",
3017
+ "31558",
3018
+ "31575",
3019
+ "31582",
3020
+ "31586",
3021
+ "31640",
3022
+ "31643",
3023
+ "31657",
3024
+ "31658",
3025
+ "31660",
3026
+ "31661",
3027
+ "31662",
3028
+ "31664",
3029
+ "31665",
3030
+ "31666",
3031
+ "31668",
3032
+ "31669",
3033
+ "31670",
3034
+ "31671",
3035
+ "31673",
3036
+ "31674",
3037
+ "31677",
3038
+ "31678",
3039
+ "31679",
3040
+ "31680",
3041
+ "31681",
3042
+ "31682",
3043
+ "31683",
3044
+ "31684",
3045
+ "31685",
3046
+ "31686",
3047
+ "31690",
3048
+ "31691",
3049
+ "31696",
3050
+ "31699",
3051
+ "31702",
3052
+ "31713",
3053
+ "31732",
3054
+ "31772",
3055
+ "31809",
3056
+ "31878",
3057
+ "31986",
3058
+ "31991",
3059
+ "31998",
3060
+ "32024",
3061
+ "32034",
3062
+ "32100",
3063
+ "32101",
3064
+ "32102",
3065
+ "32103",
3066
+ "32105",
3067
+ "32107",
3068
+ "32108",
3069
+ "32109",
3070
+ "32110",
3071
+ "32112",
3072
+ "32113",
3073
+ "32114",
3074
+ "32115",
3075
+ "32156",
3076
+ "32158",
3077
+ "32178",
3078
+ "32179",
3079
+ "32181",
3080
+ "32215",
3081
+ "32217",
3082
+ "32241",
3083
+ "32258",
3084
+ "32290",
3085
+ "32310",
3086
+ "32311",
3087
+ "32321",
3088
+ "32326",
3089
+ "32352",
3090
+ "32355",
3091
+ "32371",
3092
+ "32506",
3093
+ "32554",
3094
+ "32567",
3095
+ "32569",
3096
+ "32571",
3097
+ "32605",
3098
+ "32608",
3099
+ "32615",
3100
+ "32666",
3101
+ "32669",
3102
+ "32718",
3103
+ "32750",
3104
+ "32816",
3105
+ "32823",
3106
+ "32871",
3107
+ "32872",
3108
+ "32879",
3109
+ "32888",
3110
+ "32926",
3111
+ "32952",
3112
+ "33027",
3113
+ "33031",
3114
+ "33043",
3115
+ "33045",
3116
+ "33046",
3117
+ "33064",
3118
+ "33074",
3119
+ "33080",
3120
+ "33113",
3121
+ "33203",
3122
+ "33211",
3123
+ "33212",
3124
+ "33230",
3125
+ "33247",
3126
+ "33312",
3127
+ "33352",
3128
+ "33389",
3129
+ "33390",
3130
+ "33391",
3131
+ "33392",
3132
+ "33405",
3133
+ "33458",
3134
+ "33504",
3135
+ "33556",
3136
+ "33587",
3137
+ "33591",
3138
+ "33592",
3139
+ "33629",
3140
+ "33652",
3141
+ "33653",
3142
+ "33720",
3143
+ "33722",
3144
+ "33734",
3145
+ "33739",
3146
+ "33753",
3147
+ "33779",
3148
+ "33801",
3149
+ "33834",
3150
+ "33835",
3151
+ "33839",
3152
+ "33840",
3153
+ "33842",
3154
+ "34015",
3155
+ "34020",
3156
+ "34021",
3157
+ "34101",
3158
+ "34102",
3159
+ "34107",
3160
+ "34117",
3161
+ "34189",
3162
+ "34231",
3163
+ "34345",
3164
+ "34370",
3165
+ "34381",
3166
+ "34412",
3167
+ "34415",
3168
+ "34455",
3169
+ "34475",
3170
+ "34478",
3171
+ "34522",
3172
+ "34523",
3173
+ "34524",
3174
+ "34525",
3175
+ "34526",
3176
+ "34527",
3177
+ "34568",
3178
+ "34576",
3179
+ "34586",
3180
+ "34592",
3181
+ "34606",
3182
+ "34626",
3183
+ "34630",
3184
+ "34632",
3185
+ "34633",
3186
+ "34635",
3187
+ "34637",
3188
+ "34702",
3189
+ "34706",
3190
+ "34707",
3191
+ "34710",
3192
+ "34713",
3193
+ "34714",
3194
+ "34715",
3195
+ "34716",
3196
+ "34717",
3197
+ "34718",
3198
+ "34719",
3199
+ "34720",
3200
+ "34722",
3201
+ "34743",
3202
+ "34745",
3203
+ "34751",
3204
+ "34787",
3205
+ "34788",
3206
+ "34789",
3207
+ "34904",
3208
+ "34938",
3209
+ "34967",
3210
+ "35001",
3211
+ "35004",
3212
+ "35005",
3213
+ "35010",
3214
+ "35113",
3215
+ "35328",
3216
+ "35348",
3217
+ "35374",
3218
+ "35488",
3219
+ "35497",
3220
+ "35532",
3221
+ "35558",
3222
+ "35560",
3223
+ "35562",
3224
+ "35833",
3225
+ "35835",
3226
+ "35928",
3227
+ "35939",
3228
+ "35970",
3229
+ "35987",
3230
+ "35999",
3231
+ "36039",
3232
+ "36077",
3233
+ "36095",
3234
+ "36104",
3235
+ "36118",
3236
+ "36123",
3237
+ "36127",
3238
+ "36128",
3239
+ "36291",
3240
+ "36296",
3241
+ "36321",
3242
+ "36337",
3243
+ "36338",
3244
+ "36340",
3245
+ "36342",
3246
+ "36343",
3247
+ "36345",
3248
+ "36387",
3249
+ "36389",
3250
+ "36391",
3251
+ "36407",
3252
+ "36410",
3253
+ "36414",
3254
+ "36416",
3255
+ "36467",
3256
+ "36488",
3257
+ "36518",
3258
+ "36542",
3259
+ "36561",
3260
+ "36562",
3261
+ "36563",
3262
+ "36567",
3263
+ "36568",
3264
+ "36569",
3265
+ "36570",
3266
+ "36571",
3267
+ "36572",
3268
+ "36574",
3269
+ "36619",
3270
+ "36623",
3271
+ "36625",
3272
+ "36638",
3273
+ "36660",
3274
+ "36661",
3275
+ "36662",
3276
+ "36663",
3277
+ "36666",
3278
+ "36667",
3279
+ "36668",
3280
+ "36672",
3281
+ "36673",
3282
+ "36679",
3283
+ "36713",
3284
+ "36746",
3285
+ "36778",
3286
+ "36780",
3287
+ "36783",
3288
+ "36794",
3289
+ "36940",
3290
+ "36974",
3291
+ "36988",
3292
+ "37005",
3293
+ "37026",
3294
+ "37049",
3295
+ "37080",
3296
+ "37123",
3297
+ "37126",
3298
+ "37141",
3299
+ "37142",
3300
+ "37149",
3301
+ "37205",
3302
+ "37245",
3303
+ "37247",
3304
+ "37248",
3305
+ "37275",
3306
+ "37319",
3307
+ "37333",
3308
+ "37367",
3309
+ "37370",
3310
+ "37385",
3311
+ "37408",
3312
+ "37440",
3313
+ "37483",
3314
+ "37484",
3315
+ "37492",
3316
+ "37521",
3317
+ "37578",
3318
+ "37592",
3319
+ "37612",
3320
+ "37620",
3321
+ "37718",
3322
+ "37741",
3323
+ "37814",
3324
+ "37828",
3325
+ "37954",
3326
+ "38063",
3327
+ "38064",
3328
+ "38065",
3329
+ "38067",
3330
+ "38105",
3331
+ "38147",
3332
+ "38148",
3333
+ "38149",
3334
+ "38218",
3335
+ "38225",
3336
+ "38229",
3337
+ "38238",
3338
+ "38239",
3339
+ "38268",
3340
+ "38340",
3341
+ "38341",
3342
+ "38342",
3343
+ "38368",
3344
+ "38371",
3345
+ "38394",
3346
+ "38412",
3347
+ "38438",
3348
+ "38449",
3349
+ "38450",
3350
+ "38499",
3351
+ "38507",
3352
+ "38511",
3353
+ "38562",
3354
+ "38570",
3355
+ "38573",
3356
+ "38579",
3357
+ "38595",
3358
+ "38599",
3359
+ "38609",
3360
+ "38690",
3361
+ "38716",
3362
+ "38734",
3363
+ "38752",
3364
+ "38876",
3365
+ "38897",
3366
+ "38907",
3367
+ "39000",
3368
+ "39082",
3369
+ "39156",
3370
+ "39182",
3371
+ "39183",
3372
+ "39184",
3373
+ "39187",
3374
+ "39190",
3375
+ "39201",
3376
+ "39371",
3377
+ "39394",
3378
+ "39424",
3379
+ "39426",
3380
+ "39427",
3381
+ "39429",
3382
+ "39430",
3383
+ "39431",
3384
+ "39432",
3385
+ "39694",
3386
+ "39714",
3387
+ "39715",
3388
+ "39716",
3389
+ "39790",
3390
+ "39794",
3391
+ "39796",
3392
+ "39798",
3393
+ "39864",
3394
+ "39910",
3395
+ "39913",
3396
+ "39914",
3397
+ "39932",
3398
+ "39942",
3399
+ "39956",
3400
+ "40213",
3401
+ "40218",
3402
+ "40224",
3403
+ "40351",
3404
+ "40352",
3405
+ "40353",
3406
+ "40354",
3407
+ "40356",
3408
+ "40357",
3409
+ "40358",
3410
+ "40359",
3411
+ "40361",
3412
+ "40362",
3413
+ "40363",
3414
+ "40364",
3415
+ "40401",
3416
+ "40402",
3417
+ "40403",
3418
+ "40418",
3419
+ "40421",
3420
+ "40448",
3421
+ "40476",
3422
+ "40480",
3423
+ "40509",
3424
+ "40518",
3425
+ "40538",
3426
+ "40539",
3427
+ "40540",
3428
+ "40545",
3429
+ "40547",
3430
+ "40549",
3431
+ "40554",
3432
+ "40701",
3433
+ "40702",
3434
+ "40703",
3435
+ "40704",
3436
+ "40769",
3437
+ "40786",
3438
+ "40787",
3439
+ "40788",
3440
+ "40789",
3441
+ "40790",
3442
+ "40791",
3443
+ "40793",
3444
+ "40966",
3445
+ "40969",
3446
+ "40970",
3447
+ "40994",
3448
+ "41016",
3449
+ "41059",
3450
+ "41158",
3451
+ "41182",
3452
+ "41184",
3453
+ "41194",
3454
+ "41195",
3455
+ "41264",
3456
+ "41622",
3457
+ "41632",
3458
+ "41757",
3459
+ "41761",
3460
+ "41762",
3461
+ "41763",
3462
+ "41764",
3463
+ "41939",
3464
+ "41976",
3465
+ "43574",
3466
+ "43935",
3467
+ "43998",
3468
+ "44023",
3469
+ "44294",
3470
+ "44468",
3471
+ "44572",
3472
+ "46603",
3473
+ "49239",
3474
+ "49594",
3475
+ "49597",
3476
+ "49691",
3477
+ "49909",
3478
+ "49958",
3479
+ "49959",
3480
+ "49961",
3481
+ "49965",
3482
+ "49966",
3483
+ "49972",
3484
+ "49973",
3485
+ "50219",
3486
+ "51782",
3487
+ "54492",
3488
+ "54493",
3489
+ "54494",
3490
+ "54495",
3491
+ "54496",
3492
+ "54497",
3493
+ "54498",
3494
+ "54499",
3495
+ "54501",
3496
+ "57433",
3497
+ "58139",
3498
+ "58840",
3499
+ "59375",
3500
+ "59377",
3501
+ "59413",
3502
+ "59439",
3503
+ "60031",
3504
+ "60500",
3505
+ "61013",
3506
+ "61014",
3507
+ "61015",
3508
+ "61016",
3509
+ "61017",
3510
+ "61018",
3511
+ "61019",
3512
+ "61020",
3513
+ "61021",
3514
+ "61022",
3515
+ "61023",
3516
+ "61024",
3517
+ "61025",
3518
+ "61026",
3519
+ "61027",
3520
+ "61028",
3521
+ "61030",
3522
+ "61031",
3523
+ "61032",
3524
+ "61033",
3525
+ "61034",
3526
+ "61035",
3527
+ "61036",
3528
+ "61037",
3529
+ "61038",
3530
+ "61039",
3531
+ "61040",
3532
+ "61041",
3533
+ "61042",
3534
+ "61043",
3535
+ "61044",
3536
+ "61383",
3537
+ "61384",
3538
+ "61385",
3539
+ "61624",
3540
+ "63876",
3541
+ "64093",
3542
+ "64603",
3543
+ "64793",
3544
+ "64794",
3545
+ "64797",
3546
+ "64799",
3547
+ "64800",
3548
+ "64802",
3549
+ "64804",
3550
+ "65501",
3551
+ "65504",
3552
+ "65514",
3553
+ "65516",
3554
+ "65520",
3555
+ "65636",
3556
+ "65847",
3557
+ "65848",
3558
+ "66263",
3559
+ "67307",
3560
+ "67310",
3561
+ "69557",
3562
+ "71376",
3563
+ "71378",
3564
+ "71382",
3565
+ "71414",
3566
+ "72401",
3567
+ "75232",
3568
+ "75363",
3569
+ "77050",
3570
+ "77052",
3571
+ "77756",
3572
+ "78412",
3573
+ "79137",
3574
+ "79937",
3575
+ "79945",
3576
+ "79947",
3577
+ "79948",
3578
+ "79949",
3579
+ "80479",
3580
+ "80721",
3581
+ "81494",
3582
+ "82210",
3583
+ "82992",
3584
+ "83065",
3585
+ "84352",
3586
+ "84403",
3587
+ "85590",
3588
+ "86246",
3589
+ "86815",
3590
+ "87136",
3591
+ "87137",
3592
+ "88286",
3593
+ "88287",
3594
+ "89186",
3595
+ "91259",
3596
+ "91260",
3597
+ "91261",
3598
+ "91277",
3599
+ "91882",
3600
+ "92796",
3601
+ "92825",
3602
+ "92829",
3603
+ "94033",
3604
+ "95280",
3605
+ "95303",
3606
+ "96879",
3607
+ "98489",
3608
+ "98490",
3609
+ "99927",
3610
+ "99930",
3611
+ "100018",
3612
+ "100383",
3613
+ "100730",
3614
+ "100749",
3615
+ "100750",
3616
+ "100751",
3617
+ "100753",
3618
+ "100754",
3619
+ "100755",
3620
+ "101448",
3621
+ "101464",
3622
+ "101479",
3623
+ "101481",
3624
+ "101484",
3625
+ "101488",
3626
+ "101492",
3627
+ "101495",
3628
+ "101497",
3629
+ "101499",
3630
+ "101500",
3631
+ "101678",
3632
+ "102773",
3633
+ "102774",
3634
+ "102778",
3635
+ "102790",
3636
+ "102791",
3637
+ "102792",
3638
+ "102793",
3639
+ "102794",
3640
+ "102795",
3641
+ "102796",
3642
+ "102797",
3643
+ "102798",
3644
+ "102801",
3645
+ "102802",
3646
+ "102806",
3647
+ "102807",
3648
+ "102817",
3649
+ "103024",
3650
+ "103026",
3651
+ "103027",
3652
+ "103029",
3653
+ "103976",
3654
+ "105430",
3655
+ "105431",
3656
+ "106870",
3657
+ "108401",
3658
+ "111390",
3659
+ "111591",
3660
+ "112237",
3661
+ "112238",
3662
+ "112240",
3663
+ "112241",
3664
+ "112400",
3665
+ "112401",
3666
+ "113222",
3667
+ "113613",
3668
+ "113791",
3669
+ "113999",
3670
+ "114001",
3671
+ "114002",
3672
+ "114228",
3673
+ "114348",
3674
+ "114730",
3675
+ "114936",
3676
+ "116115",
3677
+ "116949",
3678
+ "118111",
3679
+ "119456",
3680
+ "119457",
3681
+ "119460",
3682
+ "119461",
3683
+ "119551",
3684
+ "119557",
3685
+ "119582",
3686
+ "119701",
3687
+ "120490",
3688
+ "121102",
3689
+ "121122",
3690
+ "121289",
3691
+ "121305",
3692
+ "121307",
3693
+ "121942",
3694
+ "121952",
3695
+ "122454",
3696
+ "122678",
3697
+ "122681",
3698
+ "125021",
3699
+ "126618",
3700
+ "126619",
3701
+ "127414",
3702
+ "127661",
3703
+ "127664",
3704
+ "127684",
3705
+ "127706",
3706
+ "128132",
3707
+ "128182",
3708
+ "128189",
3709
+ "128549",
3710
+ "128589",
3711
+ "128590",
3712
+ "128591",
3713
+ "128724",
3714
+ "128727",
3715
+ "128730",
3716
+ "128735",
3717
+ "128739",
3718
+ "128742",
3719
+ "128764",
3720
+ "128771",
3721
+ "128773",
3722
+ "128774",
3723
+ "128776",
3724
+ "128777",
3725
+ "129930",
3726
+ "129945",
3727
+ "130144",
3728
+ "130151",
3729
+ "130153",
3730
+ "130156",
3731
+ "130426",
3732
+ "130428",
3733
+ "130430",
3734
+ "131257",
3735
+ "131261",
3736
+ "131264",
3737
+ "131265",
3738
+ "131270",
3739
+ "131275",
3740
+ "131278",
3741
+ "131282",
3742
+ "131286",
3743
+ "131411",
3744
+ "131435",
3745
+ "131498",
3746
+ "131841",
3747
+ "131842",
3748
+ "131846",
3749
+ "131859",
3750
+ "131872",
3751
+ "131875",
3752
+ "131876",
3753
+ "131885",
3754
+ "132063",
3755
+ "132066",
3756
+ "132067",
3757
+ "132074",
3758
+ "132082",
3759
+ "132085",
3760
+ "132088",
3761
+ "132090",
3762
+ "132092",
3763
+ "132107",
3764
+ "132108",
3765
+ "132122",
3766
+ "132131",
3767
+ "132135",
3768
+ "132137",
3769
+ "132143",
3770
+ "132153",
3771
+ "132430",
3772
+ "132433",
3773
+ "132461",
3774
+ "132462",
3775
+ "133571",
3776
+ "133852",
3777
+ "134138",
3778
+ "134208",
3779
+ "134346",
3780
+ "134347",
3781
+ "134349",
3782
+ "134409",
3783
+ "134416",
3784
+ "134577",
3785
+ "134579",
3786
+ "134605",
3787
+ "134896",
3788
+ "135095",
3789
+ "135102",
3790
+ "135117",
3791
+ "135247",
3792
+ "135271",
3793
+ "136485",
3794
+ "136490",
3795
+ "136779",
3796
+ "137612",
3797
+ "138033",
3798
+ "138038",
3799
+ "138156",
3800
+ "138750",
3801
+ "138753",
3802
+ "138761",
3803
+ "139545",
3804
+ "139808",
3805
+ "140001",
3806
+ "140010",
3807
+ "140016",
3808
+ "140031",
3809
+ "140112",
3810
+ "140144",
3811
+ "140147",
3812
+ "140152",
3813
+ "140296",
3814
+ "140980",
3815
+ "141303",
3816
+ "141308",
3817
+ "141314",
3818
+ "141453",
3819
+ "141458",
3820
+ "141460",
3821
+ "141466",
3822
+ "141473",
3823
+ "141486",
3824
+ "141802",
3825
+ "142073",
3826
+ "142077",
3827
+ "142224",
3828
+ "142240",
3829
+ "142662",
3830
+ "142676",
3831
+ "142678",
3832
+ "142681",
3833
+ "142806",
3834
+ "142807",
3835
+ "142813",
3836
+ "143810",
3837
+ "143833",
3838
+ "143837",
3839
+ "143838",
3840
+ "143846",
3841
+ "144067",
3842
+ "144203",
3843
+ "144206",
3844
+ "144213",
3845
+ "144220",
3846
+ "144260",
3847
+ "144285",
3848
+ "144287",
3849
+ "144385",
3850
+ "144588",
3851
+ "144598",
3852
+ "144600",
3853
+ "144601",
3854
+ "144602",
3855
+ "144605",
3856
+ "144610",
3857
+ "144612",
3858
+ "144613",
3859
+ "144623",
3860
+ "146480",
3861
+ "147857",
3862
+ "154293",
3863
+ "154664",
3864
+ "157312",
3865
+ "166777",
3866
+ "168303",
3867
+ "170709",
3868
+ "171299",
3869
+ "171330",
3870
+ "171808",
3871
+ "172820",
3872
+ "172827",
3873
+ "178189",
3874
+ "178198",
3875
+ "178258",
3876
+ "178259",
3877
+ "178342",
3878
+ "183314",
3879
+ "183316",
3880
+ "183317",
3881
+ "183318",
3882
+ "183319",
3883
+ "183320",
3884
+ "183321",
3885
+ "183322",
3886
+ "185365",
3887
+ "185366",
3888
+ "185367",
3889
+ "185369",
3890
+ "185370",
3891
+ "185371",
3892
+ "185373",
3893
+ "185375",
3894
+ "185376",
3895
+ "185377",
3896
+ "185389",
3897
+ "185392",
3898
+ "185395",
3899
+ "185398",
3900
+ "188729",
3901
+ "194130",
3902
+ "194147",
3903
+ "195847",
3904
+ "200008",
3905
+ "200311",
3906
+ "200312",
3907
+ "200569",
3908
+ "200784",
3909
+ "202638",
3910
+ "202979",
3911
+ "202980",
3912
+ "207143",
3913
+ "211241",
3914
+ "211255",
3915
+ "211850",
3916
+ "212059",
3917
+ "212075",
3918
+ "212087",
3919
+ "212330",
3920
+ "212331",
3921
+ "212332",
3922
+ "212336",
3923
+ "212337",
3924
+ "212338",
3925
+ "213494",
3926
+ "213498",
3927
+ "213499",
3928
+ "213505",
3929
+ "218616",
3930
+ "219225",
3931
+ "220486",
3932
+ "224789",
3933
+ "226656",
3934
+ "228483",
3935
+ "230640",
3936
+ "236574",
3937
+ "236575",
3938
+ "236576",
3939
+ "236577",
3940
+ "237161",
3941
+ "237287",
3942
+ "243622",
3943
+ "244326",
3944
+ "245154",
3945
+ "245156",
3946
+ "245167",
3947
+ "246386",
3948
+ "246462",
3949
+ "246814",
3950
+ "246832",
3951
+ "247842",
3952
+ "247962",
3953
+ "247963",
3954
+ "247977",
3955
+ "250256",
3956
+ "250504",
3957
+ "250819",
3958
+ "250835",
3959
+ "253489",
3960
+ "255130",
3961
+ "257252",
3962
+ "270231",
3963
+ "270633",
3964
+ "270744",
3965
+ "271336",
3966
+ "271460",
3967
+ "271840",
3968
+ "271874",
3969
+ "272152",
3970
+ "274678",
3971
+ "275275",
3972
+ "275299",
3973
+ "275368",
3974
+ "275469",
3975
+ "276132",
3976
+ "276359",
3977
+ "277378",
3978
+ "279920",
3979
+ "280289",
3980
+ "280804",
3981
+ "280817",
3982
+ "280820",
3983
+ "280852",
3984
+ "280915",
3985
+ "280925",
3986
+ "280926",
3987
+ "280927",
3988
+ "280928",
3989
+ "280929",
3990
+ "281165",
3991
+ "281167",
3992
+ "281173",
3993
+ "281178",
3994
+ "281182",
3995
+ "281183",
3996
+ "281184",
3997
+ "281188",
3998
+ "281278",
3999
+ "281339",
4000
+ "281479",
4001
+ "283680",
4002
+ "285045",
4003
+ "285432",
4004
+ "286087",
4005
+ "287867",
4006
+ "288497",
4007
+ "290001",
4008
+ "290518",
4009
+ "290519",
4010
+ "290525",
4011
+ "290527",
4012
+ "290532",
4013
+ "291892",
4014
+ "292507",
4015
+ "293833",
4016
+ "293834",
4017
+ "303273",
4018
+ "307604",
4019
+ "307605",
4020
+ "315481",
4021
+ "317223",
4022
+ "317226",
4023
+ "317228",
4024
+ "317230",
4025
+ "317494",
4026
+ "317535",
4027
+ "317544",
4028
+ "317545",
4029
+ "317546",
4030
+ "317547",
4031
+ "317548",
4032
+ "317952",
4033
+ "320030",
4034
+ "320051",
4035
+ "325770",
4036
+ "325771",
4037
+ "326604",
4038
+ "328228",
4039
+ "329557",
4040
+ "336531",
4041
+ "336551",
4042
+ "346017",
4043
+ "351788",
4044
+ "351790",
4045
+ "351791",
4046
+ "351792",
4047
+ "351793",
4048
+ "351794",
4049
+ "351800",
4050
+ "351801",
4051
+ "352024",
4052
+ "352096",
4053
+ "352101",
4054
+ "352102",
4055
+ "352257",
4056
+ "352258",
4057
+ "353857",
4058
+ "355493",
4059
+ "356356",
4060
+ "356823",
4061
+ "357185",
4062
+ "357186",
4063
+ "357187",
4064
+ "357191",
4065
+ "357192",
4066
+ "357193",
4067
+ "357199",
4068
+ "357201",
4069
+ "357203",
4070
+ "357204",
4071
+ "357205",
4072
+ "357206",
4073
+ "357320",
4074
+ "357333",
4075
+ "358867",
4076
+ "359095",
4077
+ "361830",
4078
+ "361838",
4079
+ "361840",
4080
+ "361841",
4081
+ "362059",
4082
+ "362067",
4083
+ "362096",
4084
+ "362260",
4085
+ "362630",
4086
+ "362638",
4087
+ "362639",
4088
+ "362640",
4089
+ "362641",
4090
+ "363283",
4091
+ "363284",
4092
+ "363495",
4093
+ "363529",
4094
+ "363536",
4095
+ "364217",
4096
+ "368146",
4097
+ "368147",
4098
+ "368661",
4099
+ "368662",
4100
+ "368663",
4101
+ "368664",
4102
+ "368666",
4103
+ "368667",
4104
+ "368668",
4105
+ "368669",
4106
+ "368670",
4107
+ "368671",
4108
+ "368672",
4109
+ "368673",
4110
+ "376600",
4111
+ "376822",
4112
+ "380802",
4113
+ "390801",
4114
+ "392279",
4115
+ "393638",
4116
+ "394165",
4117
+ "399647",
4118
+ "399679",
4119
+ "401319",
4120
+ "402444",
4121
+ "402785",
4122
+ "403302",
4123
+ "403750",
4124
+ "404819",
4125
+ "405082",
4126
+ "421084",
4127
+ "424010",
4128
+ "424423",
4129
+ "424978",
4130
+ "425197",
4131
+ "425199",
4132
+ "425785",
4133
+ "426976",
4134
+ "430651",
4135
+ "431497",
4136
+ "431597",
4137
+ "433064",
4138
+ "433070",
4139
+ "433071",
4140
+ "436904",
4141
+ "437205",
4142
+ "437208",
4143
+ "440373",
4144
+ "444434",
4145
+ "445937",
4146
+ "445938",
4147
+ "445939",
4148
+ "445942",
4149
+ "448015",
4150
+ "452972",
4151
+ "454828",
4152
+ "458927",
4153
+ "460374",
4154
+ "461873",
4155
+ "461882",
4156
+ "464544",
4157
+ "465521",
4158
+ "467268",
4159
+ "467270",
4160
+ "467272",
4161
+ "467276",
4162
+ "467277",
4163
+ "467278",
4164
+ "467280",
4165
+ "470110",
4166
+ "470300",
4167
+ "470307",
4168
+ "470315",
4169
+ "470319",
4170
+ "470322",
4171
+ "473561",
4172
+ "473617",
4173
+ "473731",
4174
+ "474471",
4175
+ "474476",
4176
+ "475094",
4177
+ "475097",
4178
+ "475098",
4179
+ "475104",
4180
+ "475107",
4181
+ "475109",
4182
+ "475110",
4183
+ "478646",
4184
+ "480810",
4185
+ "480819",
4186
+ "480836",
4187
+ "483598",
4188
+ "485956",
4189
+ "485958",
4190
+ "485959",
4191
+ "485961",
4192
+ "485962",
4193
+ "485963",
4194
+ "485964",
4195
+ "485965",
4196
+ "485966",
4197
+ "485967",
4198
+ "485968",
4199
+ "486005",
4200
+ "486012",
4201
+ "486021",
4202
+ "488779",
4203
+ "489934",
4204
+ "490158",
4205
+ "490497",
4206
+ "491275",
4207
+ "491276",
4208
+ "498636",
4209
+ "500300",
4210
+ "500315",
4211
+ "501913",
4212
+ "504772",
4213
+ "504773",
4214
+ "504929",
4215
+ "506216",
4216
+ "506219",
4217
+ "506220",
4218
+ "506221",
4219
+ "506222",
4220
+ "506223",
4221
+ "506224",
4222
+ "506232",
4223
+ "506233",
4224
+ "506234",
4225
+ "506235",
4226
+ "506236",
4227
+ "506237",
4228
+ "506238",
4229
+ "506551",
4230
+ "506553",
4231
+ "506554",
4232
+ "506555",
4233
+ "506556",
4234
+ "506557",
4235
+ "506558",
4236
+ "507376",
4237
+ "508771",
4238
+ "510361",
4239
+ "510886",
4240
+ "510911",
4241
+ "510949",
4242
+ "510957",
4243
+ "510958",
4244
+ "510959",
4245
+ "510960",
4246
+ "510961",
4247
+ "510962",
4248
+ "510968",
4249
+ "510969",
4250
+ "510970",
4251
+ "510971",
4252
+ "510972",
4253
+ "510973",
4254
+ "510974",
4255
+ "510975",
4256
+ "510976",
4257
+ "510980",
4258
+ "510981",
4259
+ "510982",
4260
+ "510983",
4261
+ "513572",
4262
+ "514161",
4263
+ "515569",
4264
+ "516090",
4265
+ "518359",
4266
+ "523938",
4267
+ "529831",
4268
+ "529842",
4269
+ "529843",
4270
+ "531453",
4271
+ "531454",
4272
+ "531455",
4273
+ "531895",
4274
+ "531896",
4275
+ "531898",
4276
+ "531900",
4277
+ "531901",
4278
+ "532123",
4279
+ "532127",
4280
+ "533907",
4281
+ "533931",
4282
+ "535181",
4283
+ "535259",
4284
+ "535265",
4285
+ "535433",
4286
+ "535443",
4287
+ "537066",
4288
+ "537077",
4289
+ "537086",
4290
+ "537087",
4291
+ "537088",
4292
+ "537089",
4293
+ "537090",
4294
+ "537092",
4295
+ "537093",
4296
+ "537094",
4297
+ "537504",
4298
+ "537507",
4299
+ "537511",
4300
+ "537514",
4301
+ "537516",
4302
+ "537529",
4303
+ "537535",
4304
+ "537537",
4305
+ "537538",
4306
+ "537551",
4307
+ "537557",
4308
+ "537569",
4309
+ "537570",
4310
+ "537575",
4311
+ "537578",
4312
+ "537579",
4313
+ "537581",
4314
+ "537584",
4315
+ "537587",
4316
+ "537588",
4317
+ "537595",
4318
+ "537598",
4319
+ "537600",
4320
+ "537606",
4321
+ "537613",
4322
+ "537620",
4323
+ "537632",
4324
+ "537636",
4325
+ "537855",
4326
+ "543923",
4327
+ "543934",
4328
+ "544946",
4329
+ "544948",
4330
+ "545459",
4331
+ "545462",
4332
+ "546761",
4333
+ "549329",
4334
+ "549459",
4335
+ "549558",
4336
+ "549628",
4337
+ "549684",
4338
+ "552086",
4339
+ "552783",
4340
+ "552802",
4341
+ "552805",
4342
+ "552807",
4343
+ "552808",
4344
+ "552815",
4345
+ "552822",
4346
+ "552825",
4347
+ "552827",
4348
+ "552832",
4349
+ "552833",
4350
+ "552834",
4351
+ "553222",
4352
+ "553227",
4353
+ "553231",
4354
+ "553233",
4355
+ "553234",
4356
+ "553236",
4357
+ "553241",
4358
+ "553246",
4359
+ "553247",
4360
+ "553250",
4361
+ "553252",
4362
+ "553823",
4363
+ "557121",
4364
+ "557160",
4365
+ "559954",
4366
+ "568107",
4367
+ "568110",
4368
+ "568149",
4369
+ "568631",
4370
+ "569486",
4371
+ "571358",
4372
+ "571371",
4373
+ "579187",
4374
+ "582432",
4375
+ "582434",
4376
+ "588386",
4377
+ "593071",
4378
+ "593072",
4379
+ "593073",
4380
+ "593074",
4381
+ "593076",
4382
+ "593077",
4383
+ "593078",
4384
+ "593079",
4385
+ "593080",
4386
+ "593083",
4387
+ "593086",
4388
+ "593087",
4389
+ "593088",
4390
+ "593089",
4391
+ "593091",
4392
+ "593092",
4393
+ "593093",
4394
+ "593094",
4395
+ "593095",
4396
+ "593096",
4397
+ "593098",
4398
+ "593101",
4399
+ "593102",
4400
+ "593103",
4401
+ "593104",
4402
+ "593105",
4403
+ "593107",
4404
+ "593108",
4405
+ "593109",
4406
+ "593110",
4407
+ "593111",
4408
+ "593112",
4409
+ "593113",
4410
+ "593114",
4411
+ "593115",
4412
+ "593116",
4413
+ "593117",
4414
+ "593118",
4415
+ "593120",
4416
+ "593121",
4417
+ "593123",
4418
+ "593124",
4419
+ "593126",
4420
+ "593127",
4421
+ "593128",
4422
+ "593129",
4423
+ "593130",
4424
+ "593131",
4425
+ "593132",
4426
+ "593134",
4427
+ "593136",
4428
+ "593383",
4429
+ "593384",
4430
+ "593385",
4431
+ "593386",
4432
+ "593387",
4433
+ "596193",
4434
+ "596194",
4435
+ "596195",
4436
+ "596197",
4437
+ "596199",
4438
+ "596201",
4439
+ "596202",
4440
+ "596203",
4441
+ "596204",
4442
+ "596205",
4443
+ "596207",
4444
+ "596208",
4445
+ "596209",
4446
+ "596210",
4447
+ "596211",
4448
+ "596212",
4449
+ "596213",
4450
+ "596214",
4451
+ "596215",
4452
+ "596216",
4453
+ "596218",
4454
+ "596219",
4455
+ "596220",
4456
+ "596221",
4457
+ "596222",
4458
+ "596226",
4459
+ "596227",
4460
+ "596228",
4461
+ "596229",
4462
+ "596230",
4463
+ "596231",
4464
+ "596232",
4465
+ "596233",
4466
+ "596234",
4467
+ "596235",
4468
+ "596237",
4469
+ "596238",
4470
+ "596239",
4471
+ "596240",
4472
+ "596241",
4473
+ "596243",
4474
+ "596245",
4475
+ "596246",
4476
+ "596247",
4477
+ "596248",
4478
+ "596532",
4479
+ "596670",
4480
+ "596672",
4481
+ "596673",
4482
+ "596675",
4483
+ "596676",
4484
+ "596677",
4485
+ "596679",
4486
+ "596705",
4487
+ "599323",
4488
+ "599439",
4489
+ "603363",
4490
+ "607864",
4491
+ "611148"
4492
+ ]
image_generation/train/targets.json ADDED
The diff for this file is too large to render. See raw diff
 
property_prediction/.DS_Store ADDED
Binary file (6.15 kB). View file
 
property_prediction/README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Property Prediction Benchmark
2
+
3
+ This subfolder contains the canonical fixed split for the glaze property prediction benchmark.
4
+
5
+ ## Files
6
+
7
+ - `train/targets.json`
8
+ - `train/recipes.json`
9
+ - `train/metadata.json`
10
+ - `test/targets.json`
11
+ - `test/recipes.json`
12
+ - `test/metadata.json`
13
+ - `test_ids.json`
14
+
15
+ ## Tasks
16
+
17
+ ### Transparency
18
+
19
+ - Type: 4-class classification
20
+ - Labels: `Opaque`, `Semi-opaque`, `Translucent`, `Transparent`
21
+
22
+ ### Surface
23
+
24
+ - Type: 9-class classification
25
+ - Labels: `Glossy`, `Semi-glossy`, `Satin`, `Satin-matte`, `Matte`, `Semi-matte`, `Smooth Matte`, `Dry Matte`, `Stony Matte`
26
+
27
+ ### Color family
28
+
29
+ - Type: 9-class classification
30
+ - Labels: `Black`, `Blue`, `Gray`, `Green`, `Orange`, `Purple`, `Red`, `White`, `Yellow`
31
+
32
+ ### Color RGB
33
+
34
+ - Type: 3-target regression
35
+ - Fields: `color_rgb.r`, `color_rgb.g`, `color_rgb.b`
36
+
37
+ ## Current canonical counts
38
+
39
+ - Train total: 16,781
40
+ - Test total: 4,903
41
+ - Train transparency labels: 9,023
42
+ - Test transparency labels: 3,322
43
+ - Train surface labels: 9,378
44
+ - Test surface labels: 3,730
45
+ - Train color family labels: 16,781
46
+ - Test color family labels: 4,903
47
+
48
+ ## Notes
49
+
50
+ - This export intentionally uses `targets.json` as the canonical target file.
51
+ - In this shared package, `train/recipes.json` and `train/metadata.json` are filtered to the canonical target IDs so the split is internally aligned.
52
+ - Historical or intermediate variants are excluded from this package.
53
+ - The split is fixed and should not be regenerated when reporting benchmark results.
54
+ - `metadata.json` is included for traceability and optional multimodal extensions, but the benchmark labels live in `targets.json`.
55
+ - A minimal executable reference is provided in `../baselines/property_prediction_baseline.py`.
property_prediction/test/metadata.json ADDED
The diff for this file is too large to render. See raw diff
 
property_prediction/test/recipes.json ADDED
The diff for this file is too large to render. See raw diff
 
property_prediction/test/targets.json ADDED
The diff for this file is too large to render. See raw diff
 
property_prediction/test_ids.json ADDED
@@ -0,0 +1,4905 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "100018",
3
+ "10023",
4
+ "100383",
5
+ "1004",
6
+ "100730",
7
+ "100749",
8
+ "100750",
9
+ "100751",
10
+ "100753",
11
+ "100754",
12
+ "100755",
13
+ "10093",
14
+ "1014",
15
+ "101448",
16
+ "10146",
17
+ "101464",
18
+ "10147",
19
+ "101479",
20
+ "101481",
21
+ "101484",
22
+ "101488",
23
+ "101492",
24
+ "101495",
25
+ "101497",
26
+ "101499",
27
+ "1015",
28
+ "10150",
29
+ "101500",
30
+ "10156",
31
+ "1016",
32
+ "101678",
33
+ "10173",
34
+ "10174",
35
+ "10175",
36
+ "10176",
37
+ "10177",
38
+ "10178",
39
+ "10179",
40
+ "10180",
41
+ "10181",
42
+ "10183",
43
+ "10185",
44
+ "1020",
45
+ "1023",
46
+ "10232",
47
+ "10233",
48
+ "10234",
49
+ "10236",
50
+ "10255",
51
+ "10260",
52
+ "10261",
53
+ "10265",
54
+ "102773",
55
+ "102774",
56
+ "102778",
57
+ "102790",
58
+ "102791",
59
+ "102792",
60
+ "102793",
61
+ "102794",
62
+ "102795",
63
+ "102796",
64
+ "102797",
65
+ "102798",
66
+ "102801",
67
+ "102802",
68
+ "102804",
69
+ "102806",
70
+ "102807",
71
+ "102817",
72
+ "103024",
73
+ "103026",
74
+ "103027",
75
+ "103029",
76
+ "10304",
77
+ "10346",
78
+ "10351",
79
+ "10364",
80
+ "1038",
81
+ "10380",
82
+ "10389",
83
+ "103976",
84
+ "10404",
85
+ "10433",
86
+ "10448",
87
+ "10449",
88
+ "10496",
89
+ "105",
90
+ "1052",
91
+ "1054",
92
+ "10542",
93
+ "10543",
94
+ "105430",
95
+ "105431",
96
+ "10544",
97
+ "10551",
98
+ "10564",
99
+ "10570",
100
+ "10576",
101
+ "10585",
102
+ "10621",
103
+ "10628",
104
+ "10660",
105
+ "10668",
106
+ "10677",
107
+ "106804",
108
+ "10684",
109
+ "106870",
110
+ "1069",
111
+ "10691",
112
+ "1071",
113
+ "10710",
114
+ "10765",
115
+ "10770",
116
+ "10771",
117
+ "10772",
118
+ "10786",
119
+ "1079",
120
+ "10793",
121
+ "10808",
122
+ "10811",
123
+ "10813",
124
+ "10820",
125
+ "10827",
126
+ "10828",
127
+ "10829",
128
+ "10834",
129
+ "10838",
130
+ "108401",
131
+ "1086",
132
+ "10867",
133
+ "10869",
134
+ "1087",
135
+ "10884",
136
+ "10885",
137
+ "10886",
138
+ "10887",
139
+ "10890",
140
+ "10891",
141
+ "10895",
142
+ "10911",
143
+ "10931",
144
+ "10932",
145
+ "10937",
146
+ "10938",
147
+ "10939",
148
+ "1096",
149
+ "10962",
150
+ "10967",
151
+ "10968",
152
+ "10969",
153
+ "10970",
154
+ "10971",
155
+ "10972",
156
+ "10973",
157
+ "10974",
158
+ "10975",
159
+ "10981",
160
+ "10983",
161
+ "10989",
162
+ "10990",
163
+ "10991",
164
+ "10993",
165
+ "10994",
166
+ "10995",
167
+ "10997",
168
+ "10998",
169
+ "10999",
170
+ "11000",
171
+ "11001",
172
+ "11002",
173
+ "11003",
174
+ "110035",
175
+ "11004",
176
+ "110043",
177
+ "11005",
178
+ "11007",
179
+ "11008",
180
+ "11009",
181
+ "11010",
182
+ "11014",
183
+ "11023",
184
+ "11043",
185
+ "11045",
186
+ "11051",
187
+ "11062",
188
+ "11090",
189
+ "111067",
190
+ "111070",
191
+ "111155",
192
+ "11126",
193
+ "111390",
194
+ "11144",
195
+ "11145",
196
+ "11146",
197
+ "11147",
198
+ "11158",
199
+ "11159",
200
+ "111591",
201
+ "11161",
202
+ "11177",
203
+ "11193",
204
+ "11202",
205
+ "112237",
206
+ "112238",
207
+ "112240",
208
+ "112241",
209
+ "11229",
210
+ "11233",
211
+ "112400",
212
+ "112401",
213
+ "11284",
214
+ "11305",
215
+ "11307",
216
+ "11317",
217
+ "11318",
218
+ "11320",
219
+ "113222",
220
+ "11324",
221
+ "11336",
222
+ "113613",
223
+ "113617",
224
+ "11372",
225
+ "113791",
226
+ "113999",
227
+ "114001",
228
+ "114002",
229
+ "11405",
230
+ "11420",
231
+ "114228",
232
+ "11423",
233
+ "11424",
234
+ "11426",
235
+ "11432",
236
+ "114348",
237
+ "11435",
238
+ "11436",
239
+ "1144",
240
+ "11445",
241
+ "11453",
242
+ "11459",
243
+ "11469",
244
+ "1147",
245
+ "114730",
246
+ "114936",
247
+ "11521",
248
+ "11548",
249
+ "11580",
250
+ "116",
251
+ "116115",
252
+ "11616",
253
+ "11617",
254
+ "11631",
255
+ "11632",
256
+ "11633",
257
+ "11659",
258
+ "11661",
259
+ "11679",
260
+ "11680",
261
+ "11681",
262
+ "11690",
263
+ "116949",
264
+ "11723",
265
+ "11734",
266
+ "1175",
267
+ "11767",
268
+ "1177",
269
+ "118111",
270
+ "118118",
271
+ "11869",
272
+ "1187",
273
+ "11877",
274
+ "11878",
275
+ "11879",
276
+ "1189",
277
+ "11907",
278
+ "11908",
279
+ "11913",
280
+ "11944",
281
+ "119456",
282
+ "119457",
283
+ "119460",
284
+ "119461",
285
+ "11949",
286
+ "11950",
287
+ "11951",
288
+ "11954",
289
+ "119551",
290
+ "119557",
291
+ "119582",
292
+ "119701",
293
+ "11986",
294
+ "11988",
295
+ "12018",
296
+ "12049",
297
+ "120490",
298
+ "12097",
299
+ "12098",
300
+ "12099",
301
+ "121102",
302
+ "121106",
303
+ "121119",
304
+ "121122",
305
+ "12118",
306
+ "121289",
307
+ "121305",
308
+ "121307",
309
+ "12159",
310
+ "1219",
311
+ "121942",
312
+ "121943",
313
+ "121944",
314
+ "121945",
315
+ "121946",
316
+ "121947",
317
+ "121949",
318
+ "121950",
319
+ "121951",
320
+ "121952",
321
+ "121953",
322
+ "121954",
323
+ "121955",
324
+ "121956",
325
+ "121957",
326
+ "121960",
327
+ "12207",
328
+ "122454",
329
+ "1226",
330
+ "122678",
331
+ "122681",
332
+ "12270",
333
+ "12275",
334
+ "12285",
335
+ "1229",
336
+ "12291",
337
+ "12296",
338
+ "1233",
339
+ "12341",
340
+ "12352",
341
+ "1237",
342
+ "123757",
343
+ "12385",
344
+ "12393",
345
+ "12445",
346
+ "1246",
347
+ "12466",
348
+ "12467",
349
+ "125021",
350
+ "12561",
351
+ "12563",
352
+ "12564",
353
+ "12565",
354
+ "12566",
355
+ "12581",
356
+ "12659",
357
+ "126618",
358
+ "126619",
359
+ "126620",
360
+ "12706",
361
+ "12723",
362
+ "12732",
363
+ "12739",
364
+ "127414",
365
+ "12750",
366
+ "127661",
367
+ "127664",
368
+ "127684",
369
+ "127706",
370
+ "12798",
371
+ "12806",
372
+ "12811",
373
+ "128132",
374
+ "128182",
375
+ "128189",
376
+ "128549",
377
+ "128589",
378
+ "128590",
379
+ "128591",
380
+ "128724",
381
+ "128727",
382
+ "128730",
383
+ "128735",
384
+ "128739",
385
+ "128742",
386
+ "128764",
387
+ "128771",
388
+ "128773",
389
+ "128774",
390
+ "128776",
391
+ "128777",
392
+ "12938",
393
+ "12940",
394
+ "12941",
395
+ "12942",
396
+ "12943",
397
+ "12944",
398
+ "12949",
399
+ "12952",
400
+ "12970",
401
+ "12974",
402
+ "12978",
403
+ "129930",
404
+ "129945",
405
+ "12996",
406
+ "12997",
407
+ "13003",
408
+ "13011",
409
+ "13012",
410
+ "130144",
411
+ "130151",
412
+ "130153",
413
+ "130156",
414
+ "13035",
415
+ "13036",
416
+ "130426",
417
+ "130428",
418
+ "130430",
419
+ "13107",
420
+ "13113",
421
+ "13114",
422
+ "13119",
423
+ "13122",
424
+ "131257",
425
+ "131261",
426
+ "131264",
427
+ "131265",
428
+ "131270",
429
+ "131275",
430
+ "131278",
431
+ "131282",
432
+ "131286",
433
+ "13137",
434
+ "131411",
435
+ "131435",
436
+ "13149",
437
+ "131498",
438
+ "13158",
439
+ "13160",
440
+ "13161",
441
+ "13177",
442
+ "13178",
443
+ "131841",
444
+ "131842",
445
+ "131846",
446
+ "131859",
447
+ "13186",
448
+ "13187",
449
+ "131872",
450
+ "131875",
451
+ "131876",
452
+ "131885",
453
+ "1319",
454
+ "132063",
455
+ "132066",
456
+ "132067",
457
+ "132074",
458
+ "132082",
459
+ "132085",
460
+ "132088",
461
+ "132090",
462
+ "132092",
463
+ "132107",
464
+ "132108",
465
+ "132122",
466
+ "132131",
467
+ "132135",
468
+ "132137",
469
+ "132143",
470
+ "132153",
471
+ "13219",
472
+ "132430",
473
+ "132433",
474
+ "13245",
475
+ "132461",
476
+ "132462",
477
+ "1328",
478
+ "133571",
479
+ "133852",
480
+ "133881",
481
+ "134138",
482
+ "1342",
483
+ "134208",
484
+ "134346",
485
+ "134347",
486
+ "134349",
487
+ "1344",
488
+ "134409",
489
+ "134416",
490
+ "134577",
491
+ "134579",
492
+ "134605",
493
+ "1348",
494
+ "134896",
495
+ "135095",
496
+ "135102",
497
+ "135117",
498
+ "135247",
499
+ "135271",
500
+ "136",
501
+ "136485",
502
+ "136490",
503
+ "1366",
504
+ "136779",
505
+ "137",
506
+ "1371",
507
+ "1373",
508
+ "137612",
509
+ "1377",
510
+ "138033",
511
+ "138038",
512
+ "138156",
513
+ "138750",
514
+ "138753",
515
+ "138761",
516
+ "1390",
517
+ "1391",
518
+ "139545",
519
+ "139808",
520
+ "1399",
521
+ "140001",
522
+ "140010",
523
+ "140016",
524
+ "140031",
525
+ "140112",
526
+ "140144",
527
+ "140147",
528
+ "140152",
529
+ "140296",
530
+ "140980",
531
+ "141303",
532
+ "141308",
533
+ "141314",
534
+ "141453",
535
+ "141458",
536
+ "141460",
537
+ "141466",
538
+ "141473",
539
+ "141486",
540
+ "141802",
541
+ "1420",
542
+ "142073",
543
+ "142077",
544
+ "142224",
545
+ "142240",
546
+ "142662",
547
+ "142676",
548
+ "142678",
549
+ "142681",
550
+ "142806",
551
+ "142807",
552
+ "142813",
553
+ "143810",
554
+ "143833",
555
+ "143837",
556
+ "143838",
557
+ "143846",
558
+ "144067",
559
+ "1441",
560
+ "144203",
561
+ "144206",
562
+ "144213",
563
+ "144220",
564
+ "144260",
565
+ "144285",
566
+ "144287",
567
+ "1443",
568
+ "144385",
569
+ "1445",
570
+ "144588",
571
+ "144598",
572
+ "1446",
573
+ "144600",
574
+ "144601",
575
+ "144602",
576
+ "144605",
577
+ "144610",
578
+ "144612",
579
+ "144613",
580
+ "144623",
581
+ "1447",
582
+ "1452",
583
+ "1455",
584
+ "1458",
585
+ "146480",
586
+ "1466",
587
+ "1467",
588
+ "1473",
589
+ "1475",
590
+ "147857",
591
+ "1481",
592
+ "1486",
593
+ "1506",
594
+ "1524",
595
+ "153498",
596
+ "154293",
597
+ "154664",
598
+ "1547",
599
+ "1549",
600
+ "155350",
601
+ "1563",
602
+ "1564",
603
+ "1566",
604
+ "1570",
605
+ "1573",
606
+ "157312",
607
+ "15834",
608
+ "15835",
609
+ "1585",
610
+ "159927",
611
+ "159932",
612
+ "161812",
613
+ "16226",
614
+ "1627",
615
+ "16277",
616
+ "16304",
617
+ "16305",
618
+ "16306",
619
+ "16328",
620
+ "16330",
621
+ "16337",
622
+ "16338",
623
+ "16342",
624
+ "16390",
625
+ "16394",
626
+ "164",
627
+ "16423",
628
+ "16426",
629
+ "16427",
630
+ "16475",
631
+ "16483",
632
+ "1650",
633
+ "16500",
634
+ "16503",
635
+ "1651",
636
+ "16543",
637
+ "16544",
638
+ "16568",
639
+ "16570",
640
+ "16573",
641
+ "16579",
642
+ "16584",
643
+ "16587",
644
+ "16643",
645
+ "16646",
646
+ "16664",
647
+ "166777",
648
+ "16712",
649
+ "16750",
650
+ "16752",
651
+ "16753",
652
+ "16755",
653
+ "16757",
654
+ "16767",
655
+ "16770",
656
+ "167769",
657
+ "16778",
658
+ "16785",
659
+ "16814",
660
+ "16817",
661
+ "16827",
662
+ "16829",
663
+ "16830",
664
+ "168303",
665
+ "16831",
666
+ "16845",
667
+ "16857",
668
+ "16861",
669
+ "16946",
670
+ "16950",
671
+ "16959",
672
+ "16962",
673
+ "16988",
674
+ "16989",
675
+ "16996",
676
+ "17018",
677
+ "17033",
678
+ "17048",
679
+ "17049",
680
+ "17050",
681
+ "17057",
682
+ "17068",
683
+ "17070",
684
+ "170709",
685
+ "17072",
686
+ "17083",
687
+ "17086",
688
+ "17089",
689
+ "17110",
690
+ "17118",
691
+ "171299",
692
+ "171330",
693
+ "171808",
694
+ "17200",
695
+ "17204",
696
+ "17221",
697
+ "17222",
698
+ "17228",
699
+ "17248",
700
+ "17262",
701
+ "17265",
702
+ "17271",
703
+ "17282",
704
+ "172820",
705
+ "172827",
706
+ "17332",
707
+ "17334",
708
+ "17337",
709
+ "17339",
710
+ "17340",
711
+ "17343",
712
+ "17354",
713
+ "17356",
714
+ "17357",
715
+ "17358",
716
+ "17359",
717
+ "17361",
718
+ "17362",
719
+ "17363",
720
+ "17364",
721
+ "17365",
722
+ "17366",
723
+ "17367",
724
+ "17368",
725
+ "17369",
726
+ "17370",
727
+ "17371",
728
+ "17372",
729
+ "17374",
730
+ "17375",
731
+ "17376",
732
+ "17377",
733
+ "17378",
734
+ "17379",
735
+ "174",
736
+ "17429",
737
+ "17452",
738
+ "17453",
739
+ "17467",
740
+ "17468",
741
+ "17476",
742
+ "17479",
743
+ "17482",
744
+ "17545",
745
+ "17546",
746
+ "17547",
747
+ "17548",
748
+ "17549",
749
+ "17573",
750
+ "17576",
751
+ "17580",
752
+ "17631",
753
+ "17633",
754
+ "17637",
755
+ "17642",
756
+ "17645",
757
+ "17685",
758
+ "17711",
759
+ "17715",
760
+ "177713",
761
+ "178",
762
+ "17804",
763
+ "17815",
764
+ "178189",
765
+ "178198",
766
+ "17820",
767
+ "178258",
768
+ "178259",
769
+ "17827",
770
+ "17829",
771
+ "17832",
772
+ "17833",
773
+ "178342",
774
+ "17835",
775
+ "17846",
776
+ "17887",
777
+ "17897",
778
+ "17919",
779
+ "17924",
780
+ "17927",
781
+ "17928",
782
+ "17936",
783
+ "17937",
784
+ "18",
785
+ "18032",
786
+ "18035",
787
+ "18047",
788
+ "18049",
789
+ "18050",
790
+ "18053",
791
+ "18056",
792
+ "18057",
793
+ "18075",
794
+ "18076",
795
+ "18077",
796
+ "18117",
797
+ "18122",
798
+ "18129",
799
+ "18137",
800
+ "18150",
801
+ "18151",
802
+ "18179",
803
+ "18183",
804
+ "18184",
805
+ "18187",
806
+ "18235",
807
+ "1824",
808
+ "18266",
809
+ "18268",
810
+ "18289",
811
+ "18299",
812
+ "18310",
813
+ "18313",
814
+ "183314",
815
+ "183316",
816
+ "183317",
817
+ "183318",
818
+ "183319",
819
+ "183320",
820
+ "183321",
821
+ "183322",
822
+ "18343",
823
+ "18344",
824
+ "18345",
825
+ "18346",
826
+ "18347",
827
+ "18348",
828
+ "18354",
829
+ "18373",
830
+ "18374",
831
+ "18445",
832
+ "1851",
833
+ "18520",
834
+ "185365",
835
+ "185366",
836
+ "185367",
837
+ "185369",
838
+ "185370",
839
+ "185371",
840
+ "185373",
841
+ "185375",
842
+ "185376",
843
+ "185377",
844
+ "185389",
845
+ "185392",
846
+ "185395",
847
+ "185398",
848
+ "18551",
849
+ "18553",
850
+ "1858",
851
+ "18586",
852
+ "18741",
853
+ "18742",
854
+ "18743",
855
+ "18744",
856
+ "18745",
857
+ "18747",
858
+ "18748",
859
+ "18749",
860
+ "18750",
861
+ "18751",
862
+ "18753",
863
+ "18754",
864
+ "18755",
865
+ "18756",
866
+ "18757",
867
+ "18758",
868
+ "18759",
869
+ "18760",
870
+ "18761",
871
+ "18762",
872
+ "18769",
873
+ "18774",
874
+ "18776",
875
+ "18790",
876
+ "18806",
877
+ "18809",
878
+ "18839",
879
+ "188729",
880
+ "18951",
881
+ "18964",
882
+ "19010",
883
+ "19011",
884
+ "19012",
885
+ "19039",
886
+ "19106",
887
+ "19139",
888
+ "19140",
889
+ "19143",
890
+ "19163",
891
+ "19281",
892
+ "19299",
893
+ "19334",
894
+ "19340",
895
+ "19342",
896
+ "19343",
897
+ "19345",
898
+ "19346",
899
+ "19350",
900
+ "19354",
901
+ "19358",
902
+ "19359",
903
+ "19362",
904
+ "19366",
905
+ "19377",
906
+ "19390",
907
+ "19393",
908
+ "194130",
909
+ "194147",
910
+ "19421",
911
+ "19428",
912
+ "19438",
913
+ "1949",
914
+ "19496",
915
+ "19505",
916
+ "19531",
917
+ "19539",
918
+ "19540",
919
+ "195847",
920
+ "19639",
921
+ "19648",
922
+ "197",
923
+ "19759",
924
+ "19762",
925
+ "19787",
926
+ "19815",
927
+ "19819",
928
+ "19820",
929
+ "19846",
930
+ "19894",
931
+ "19931",
932
+ "19998",
933
+ "200008",
934
+ "20020",
935
+ "200311",
936
+ "200312",
937
+ "200569",
938
+ "200784",
939
+ "20085",
940
+ "20086",
941
+ "20093",
942
+ "20098",
943
+ "20099",
944
+ "201",
945
+ "20100",
946
+ "20101",
947
+ "20113",
948
+ "20140",
949
+ "2018",
950
+ "20213",
951
+ "20243",
952
+ "20244",
953
+ "20246",
954
+ "202638",
955
+ "202979",
956
+ "202980",
957
+ "20304",
958
+ "20314",
959
+ "20355",
960
+ "20395",
961
+ "20401",
962
+ "20402",
963
+ "20403",
964
+ "20466",
965
+ "20474",
966
+ "20490",
967
+ "20546",
968
+ "20547",
969
+ "20642",
970
+ "20670",
971
+ "207143",
972
+ "20716",
973
+ "20731",
974
+ "20754",
975
+ "20780",
976
+ "20812",
977
+ "20822",
978
+ "20843",
979
+ "20847",
980
+ "2085",
981
+ "20873",
982
+ "20874",
983
+ "20875",
984
+ "20876",
985
+ "20880",
986
+ "20882",
987
+ "20904",
988
+ "20923",
989
+ "20924",
990
+ "20926",
991
+ "20935",
992
+ "20960",
993
+ "20962",
994
+ "21018",
995
+ "21032",
996
+ "21100",
997
+ "21102",
998
+ "21114",
999
+ "211241",
1000
+ "211255",
1001
+ "21133",
1002
+ "21137",
1003
+ "21138",
1004
+ "21139",
1005
+ "21163",
1006
+ "21182",
1007
+ "21183",
1008
+ "21184",
1009
+ "211850",
1010
+ "212059",
1011
+ "212075",
1012
+ "212087",
1013
+ "212330",
1014
+ "212331",
1015
+ "212332",
1016
+ "212336",
1017
+ "212337",
1018
+ "212338",
1019
+ "21247",
1020
+ "21261",
1021
+ "21305",
1022
+ "21306",
1023
+ "21307",
1024
+ "21309",
1025
+ "21311",
1026
+ "21315",
1027
+ "21317",
1028
+ "21318",
1029
+ "21319",
1030
+ "21320",
1031
+ "21321",
1032
+ "21327",
1033
+ "21338",
1034
+ "21341",
1035
+ "21344",
1036
+ "21345",
1037
+ "213494",
1038
+ "213498",
1039
+ "213499",
1040
+ "213505",
1041
+ "21362",
1042
+ "21369",
1043
+ "21371",
1044
+ "21372",
1045
+ "21373",
1046
+ "21374",
1047
+ "21381",
1048
+ "21383",
1049
+ "21384",
1050
+ "2139",
1051
+ "21422",
1052
+ "21430",
1053
+ "21443",
1054
+ "21477",
1055
+ "21500",
1056
+ "21544",
1057
+ "21545",
1058
+ "21546",
1059
+ "21555",
1060
+ "21571",
1061
+ "21572",
1062
+ "21573",
1063
+ "21580",
1064
+ "21658",
1065
+ "21703",
1066
+ "21706",
1067
+ "21740",
1068
+ "21757",
1069
+ "21760",
1070
+ "21774",
1071
+ "21776",
1072
+ "21777",
1073
+ "21778",
1074
+ "21779",
1075
+ "21781",
1076
+ "21782",
1077
+ "21785",
1078
+ "21786",
1079
+ "21790",
1080
+ "21841",
1081
+ "218616",
1082
+ "21871",
1083
+ "21891",
1084
+ "21895",
1085
+ "21897",
1086
+ "21898",
1087
+ "21902",
1088
+ "21905",
1089
+ "219225",
1090
+ "21968",
1091
+ "22014",
1092
+ "220486",
1093
+ "22128",
1094
+ "22137",
1095
+ "22157",
1096
+ "2219",
1097
+ "2222",
1098
+ "22227",
1099
+ "22228",
1100
+ "22229",
1101
+ "22230",
1102
+ "22231",
1103
+ "22232",
1104
+ "22233",
1105
+ "22234",
1106
+ "22236",
1107
+ "22248",
1108
+ "22287",
1109
+ "22289",
1110
+ "22290",
1111
+ "22291",
1112
+ "22300",
1113
+ "22303",
1114
+ "22305",
1115
+ "22318",
1116
+ "22322",
1117
+ "22327",
1118
+ "2233",
1119
+ "22380",
1120
+ "22382",
1121
+ "22384",
1122
+ "22388",
1123
+ "22390",
1124
+ "22391",
1125
+ "22417",
1126
+ "22418",
1127
+ "22420",
1128
+ "22425",
1129
+ "224789",
1130
+ "2254",
1131
+ "2255",
1132
+ "22585",
1133
+ "22614",
1134
+ "2263",
1135
+ "22641",
1136
+ "22643",
1137
+ "226656",
1138
+ "22716",
1139
+ "22737",
1140
+ "22749",
1141
+ "22750",
1142
+ "22751",
1143
+ "22756",
1144
+ "22765",
1145
+ "22785",
1146
+ "22796",
1147
+ "22797",
1148
+ "22821",
1149
+ "228483",
1150
+ "22857",
1151
+ "22870",
1152
+ "22885",
1153
+ "22886",
1154
+ "22887",
1155
+ "22929",
1156
+ "22933",
1157
+ "22934",
1158
+ "22939",
1159
+ "22946",
1160
+ "22960",
1161
+ "230",
1162
+ "23030",
1163
+ "23061",
1164
+ "230640",
1165
+ "231",
1166
+ "23134",
1167
+ "23135",
1168
+ "23322",
1169
+ "23329",
1170
+ "23331",
1171
+ "23405",
1172
+ "23474",
1173
+ "23484",
1174
+ "23489",
1175
+ "23490",
1176
+ "23495",
1177
+ "2350",
1178
+ "2352",
1179
+ "23526",
1180
+ "2353",
1181
+ "23531",
1182
+ "23532",
1183
+ "23549",
1184
+ "23550",
1185
+ "23551",
1186
+ "23579",
1187
+ "23604",
1188
+ "23611",
1189
+ "236574",
1190
+ "236575",
1191
+ "236576",
1192
+ "236577",
1193
+ "2366",
1194
+ "2370",
1195
+ "23709",
1196
+ "237161",
1197
+ "237287",
1198
+ "23733",
1199
+ "23752",
1200
+ "2376",
1201
+ "2378",
1202
+ "23780",
1203
+ "23782",
1204
+ "2379",
1205
+ "23790",
1206
+ "23791",
1207
+ "2380",
1208
+ "23803",
1209
+ "2381",
1210
+ "23811",
1211
+ "23812",
1212
+ "23814",
1213
+ "23819",
1214
+ "2382",
1215
+ "23820",
1216
+ "23835",
1217
+ "23838",
1218
+ "2386",
1219
+ "23901",
1220
+ "23903",
1221
+ "23904",
1222
+ "23923",
1223
+ "23924",
1224
+ "23929",
1225
+ "23939",
1226
+ "23944",
1227
+ "2400",
1228
+ "24002",
1229
+ "2401",
1230
+ "24013",
1231
+ "2402",
1232
+ "24040",
1233
+ "24041",
1234
+ "24042",
1235
+ "24043",
1236
+ "24045",
1237
+ "24046",
1238
+ "2410",
1239
+ "2411",
1240
+ "24116",
1241
+ "2415",
1242
+ "24154",
1243
+ "2417",
1244
+ "2418",
1245
+ "2419",
1246
+ "2420",
1247
+ "24208",
1248
+ "2422",
1249
+ "24266",
1250
+ "2427",
1251
+ "24289",
1252
+ "24307",
1253
+ "2433",
1254
+ "24339",
1255
+ "2434",
1256
+ "2436",
1257
+ "243622",
1258
+ "244326",
1259
+ "2444",
1260
+ "2445",
1261
+ "2446",
1262
+ "24487",
1263
+ "245154",
1264
+ "245156",
1265
+ "245167",
1266
+ "2452",
1267
+ "2453",
1268
+ "2456",
1269
+ "24565",
1270
+ "2460",
1271
+ "2462",
1272
+ "24631",
1273
+ "246386",
1274
+ "24643",
1275
+ "246462",
1276
+ "2465",
1277
+ "2467",
1278
+ "24671",
1279
+ "24678",
1280
+ "24679",
1281
+ "2468",
1282
+ "24680",
1283
+ "24681",
1284
+ "246814",
1285
+ "24682",
1286
+ "246832",
1287
+ "24684",
1288
+ "24685",
1289
+ "24686",
1290
+ "2472",
1291
+ "2473",
1292
+ "2474",
1293
+ "2475",
1294
+ "247842",
1295
+ "247962",
1296
+ "247963",
1297
+ "247977",
1298
+ "24804",
1299
+ "24811",
1300
+ "24872",
1301
+ "24873",
1302
+ "2490",
1303
+ "24902",
1304
+ "24905",
1305
+ "2492",
1306
+ "24924",
1307
+ "24927",
1308
+ "24937",
1309
+ "24988",
1310
+ "24989",
1311
+ "24996",
1312
+ "25001",
1313
+ "25006",
1314
+ "250256",
1315
+ "250312",
1316
+ "2505",
1317
+ "250504",
1318
+ "25063",
1319
+ "25064",
1320
+ "25065",
1321
+ "25066",
1322
+ "25067",
1323
+ "25068",
1324
+ "25069",
1325
+ "25070",
1326
+ "25071",
1327
+ "25072",
1328
+ "25073",
1329
+ "25074",
1330
+ "25075",
1331
+ "25076",
1332
+ "25081",
1333
+ "250819",
1334
+ "250835",
1335
+ "25092",
1336
+ "25094",
1337
+ "2514",
1338
+ "2515",
1339
+ "25161",
1340
+ "2521",
1341
+ "2523",
1342
+ "2524",
1343
+ "25245",
1344
+ "25267",
1345
+ "25288",
1346
+ "25289",
1347
+ "2529",
1348
+ "25296",
1349
+ "25313",
1350
+ "25314",
1351
+ "253489",
1352
+ "2538",
1353
+ "254",
1354
+ "25405",
1355
+ "25408",
1356
+ "25416",
1357
+ "25423",
1358
+ "25489",
1359
+ "255130",
1360
+ "25522",
1361
+ "25523",
1362
+ "25543",
1363
+ "25546",
1364
+ "25547",
1365
+ "25552",
1366
+ "25553",
1367
+ "25559",
1368
+ "25570",
1369
+ "25571",
1370
+ "25578",
1371
+ "25602",
1372
+ "25635",
1373
+ "25637",
1374
+ "25638",
1375
+ "25642",
1376
+ "25655",
1377
+ "25657",
1378
+ "25673",
1379
+ "25675",
1380
+ "25681",
1381
+ "25686",
1382
+ "25690",
1383
+ "25692",
1384
+ "25693",
1385
+ "2570",
1386
+ "25723",
1387
+ "257252",
1388
+ "25730",
1389
+ "25733",
1390
+ "25777",
1391
+ "2579",
1392
+ "25807",
1393
+ "25809",
1394
+ "25813",
1395
+ "25815",
1396
+ "25827",
1397
+ "25829",
1398
+ "25845",
1399
+ "25846",
1400
+ "258634",
1401
+ "25919",
1402
+ "2592",
1403
+ "25920",
1404
+ "25921",
1405
+ "2594",
1406
+ "25951",
1407
+ "25961",
1408
+ "2597",
1409
+ "25971",
1410
+ "25974",
1411
+ "25975",
1412
+ "25976",
1413
+ "25979",
1414
+ "25980",
1415
+ "25985",
1416
+ "25987",
1417
+ "25992",
1418
+ "25995",
1419
+ "26018",
1420
+ "26030",
1421
+ "26034",
1422
+ "26036",
1423
+ "26037",
1424
+ "26039",
1425
+ "26043",
1426
+ "26044",
1427
+ "26056",
1428
+ "261",
1429
+ "26129",
1430
+ "26130",
1431
+ "26131",
1432
+ "26132",
1433
+ "26133",
1434
+ "26134",
1435
+ "26136",
1436
+ "26137",
1437
+ "26139",
1438
+ "2617",
1439
+ "26203",
1440
+ "26213",
1441
+ "26216",
1442
+ "26224",
1443
+ "26242",
1444
+ "26243",
1445
+ "26248",
1446
+ "26283",
1447
+ "26286",
1448
+ "26312",
1449
+ "2632",
1450
+ "26320",
1451
+ "26328",
1452
+ "26330",
1453
+ "26331",
1454
+ "26334",
1455
+ "26343",
1456
+ "26370",
1457
+ "26373",
1458
+ "26379",
1459
+ "26383",
1460
+ "26388",
1461
+ "26390",
1462
+ "26396",
1463
+ "26399",
1464
+ "26402",
1465
+ "26403",
1466
+ "26441",
1467
+ "2646",
1468
+ "26517",
1469
+ "26547",
1470
+ "26563",
1471
+ "26564",
1472
+ "26565",
1473
+ "26626",
1474
+ "26630",
1475
+ "26631",
1476
+ "26657",
1477
+ "2671",
1478
+ "26735",
1479
+ "26760",
1480
+ "26790",
1481
+ "2690",
1482
+ "269156",
1483
+ "2692",
1484
+ "2693",
1485
+ "26974",
1486
+ "26983",
1487
+ "26984",
1488
+ "26985",
1489
+ "2699",
1490
+ "270231",
1491
+ "27036",
1492
+ "27037",
1493
+ "27039",
1494
+ "2704",
1495
+ "27043",
1496
+ "27045",
1497
+ "27046",
1498
+ "27047",
1499
+ "2705",
1500
+ "270633",
1501
+ "2707",
1502
+ "270744",
1503
+ "2708",
1504
+ "27087",
1505
+ "27093",
1506
+ "27094",
1507
+ "27100",
1508
+ "27126",
1509
+ "27127",
1510
+ "27128",
1511
+ "271336",
1512
+ "27141",
1513
+ "271460",
1514
+ "27150",
1515
+ "27162",
1516
+ "27163",
1517
+ "27166",
1518
+ "27175",
1519
+ "27179",
1520
+ "2718",
1521
+ "271840",
1522
+ "271874",
1523
+ "27188",
1524
+ "2719",
1525
+ "27190",
1526
+ "27191",
1527
+ "27198",
1528
+ "2720",
1529
+ "27200",
1530
+ "27201",
1531
+ "27203",
1532
+ "27207",
1533
+ "27208",
1534
+ "27209",
1535
+ "2721",
1536
+ "272152",
1537
+ "27216",
1538
+ "27220",
1539
+ "2723",
1540
+ "27234",
1541
+ "27263",
1542
+ "27308",
1543
+ "27369",
1544
+ "27371",
1545
+ "27372",
1546
+ "27373",
1547
+ "27374",
1548
+ "27412",
1549
+ "27442",
1550
+ "27443",
1551
+ "27445",
1552
+ "27447",
1553
+ "27449",
1554
+ "27456",
1555
+ "27457",
1556
+ "27458",
1557
+ "27459",
1558
+ "27460",
1559
+ "27461",
1560
+ "27462",
1561
+ "27463",
1562
+ "27464",
1563
+ "27465",
1564
+ "27467",
1565
+ "274678",
1566
+ "27470",
1567
+ "27471",
1568
+ "27472",
1569
+ "27476",
1570
+ "2750",
1571
+ "27509",
1572
+ "275275",
1573
+ "275299",
1574
+ "275368",
1575
+ "275469",
1576
+ "276132",
1577
+ "27629",
1578
+ "276359",
1579
+ "27670",
1580
+ "27695",
1581
+ "27726",
1582
+ "277378",
1583
+ "277597",
1584
+ "27786",
1585
+ "27788",
1586
+ "27789",
1587
+ "27798",
1588
+ "27799",
1589
+ "27920",
1590
+ "2793",
1591
+ "27930",
1592
+ "27933",
1593
+ "27988",
1594
+ "279920",
1595
+ "280289",
1596
+ "280804",
1597
+ "280817",
1598
+ "280820",
1599
+ "28084",
1600
+ "280852",
1601
+ "280915",
1602
+ "280925",
1603
+ "280926",
1604
+ "280927",
1605
+ "280928",
1606
+ "280929",
1607
+ "2810",
1608
+ "28104",
1609
+ "281165",
1610
+ "281167",
1611
+ "281173",
1612
+ "281178",
1613
+ "281182",
1614
+ "281183",
1615
+ "281184",
1616
+ "281188",
1617
+ "281278",
1618
+ "281339",
1619
+ "281479",
1620
+ "2818",
1621
+ "28182",
1622
+ "2819",
1623
+ "28222",
1624
+ "28238",
1625
+ "28239",
1626
+ "2829",
1627
+ "28291",
1628
+ "28293",
1629
+ "28296",
1630
+ "2830",
1631
+ "2831",
1632
+ "2833",
1633
+ "2834",
1634
+ "28347",
1635
+ "2835",
1636
+ "2836",
1637
+ "283680",
1638
+ "2837",
1639
+ "28378",
1640
+ "2838",
1641
+ "2839",
1642
+ "28423",
1643
+ "28426",
1644
+ "2843",
1645
+ "2844",
1646
+ "28447",
1647
+ "28494",
1648
+ "285045",
1649
+ "2851",
1650
+ "2852",
1651
+ "28530",
1652
+ "28531",
1653
+ "285432",
1654
+ "28572",
1655
+ "286087",
1656
+ "2862",
1657
+ "2866",
1658
+ "28701",
1659
+ "28708",
1660
+ "28755",
1661
+ "2878",
1662
+ "287867",
1663
+ "28806",
1664
+ "288497",
1665
+ "28863",
1666
+ "2888",
1667
+ "2889",
1668
+ "28892",
1669
+ "28898",
1670
+ "2895",
1671
+ "28968",
1672
+ "290001",
1673
+ "29008",
1674
+ "29011",
1675
+ "29031",
1676
+ "290518",
1677
+ "290519",
1678
+ "290525",
1679
+ "290527",
1680
+ "290532",
1681
+ "29077",
1682
+ "29079",
1683
+ "29080",
1684
+ "29098",
1685
+ "2911",
1686
+ "29131",
1687
+ "29132",
1688
+ "29133",
1689
+ "29135",
1690
+ "29159",
1691
+ "29161",
1692
+ "29162",
1693
+ "29171",
1694
+ "29174",
1695
+ "29178",
1696
+ "291892",
1697
+ "29218",
1698
+ "29241",
1699
+ "29245",
1700
+ "29246",
1701
+ "2925",
1702
+ "292507",
1703
+ "29252",
1704
+ "2927",
1705
+ "29273",
1706
+ "29281",
1707
+ "2929",
1708
+ "29293",
1709
+ "29298",
1710
+ "2930",
1711
+ "29319",
1712
+ "293833",
1713
+ "293834",
1714
+ "29420",
1715
+ "29467",
1716
+ "29472",
1717
+ "29488",
1718
+ "29489",
1719
+ "29494",
1720
+ "29495",
1721
+ "29510",
1722
+ "29511",
1723
+ "29517",
1724
+ "29519",
1725
+ "2955",
1726
+ "29574",
1727
+ "29615",
1728
+ "29616",
1729
+ "2965",
1730
+ "29657",
1731
+ "2966",
1732
+ "2967",
1733
+ "2968",
1734
+ "29704",
1735
+ "2971",
1736
+ "29721",
1737
+ "29746",
1738
+ "2975",
1739
+ "2976",
1740
+ "2977",
1741
+ "2978",
1742
+ "29835",
1743
+ "29837",
1744
+ "29841",
1745
+ "29842",
1746
+ "29843",
1747
+ "29844",
1748
+ "29845",
1749
+ "29846",
1750
+ "29850",
1751
+ "29853",
1752
+ "29856",
1753
+ "29858",
1754
+ "29861",
1755
+ "29862",
1756
+ "29863",
1757
+ "29864",
1758
+ "29865",
1759
+ "29866",
1760
+ "29867",
1761
+ "29868",
1762
+ "29869",
1763
+ "29870",
1764
+ "29875",
1765
+ "2991",
1766
+ "3000",
1767
+ "3001",
1768
+ "30014",
1769
+ "3002",
1770
+ "30026",
1771
+ "3004",
1772
+ "3005",
1773
+ "3008",
1774
+ "30086",
1775
+ "30087",
1776
+ "30088",
1777
+ "30089",
1778
+ "3009",
1779
+ "30090",
1780
+ "30091",
1781
+ "30092",
1782
+ "30093",
1783
+ "30094",
1784
+ "30095",
1785
+ "30096",
1786
+ "30097",
1787
+ "30098",
1788
+ "30128",
1789
+ "3013",
1790
+ "3014",
1791
+ "3015",
1792
+ "3016",
1793
+ "30163",
1794
+ "30164",
1795
+ "30165",
1796
+ "3017",
1797
+ "30170",
1798
+ "30179",
1799
+ "3018",
1800
+ "30188",
1801
+ "3019",
1802
+ "30194",
1803
+ "30195",
1804
+ "30196",
1805
+ "30198",
1806
+ "3020",
1807
+ "30200",
1808
+ "30201",
1809
+ "30203",
1810
+ "30206",
1811
+ "3021",
1812
+ "3022",
1813
+ "3023",
1814
+ "3024",
1815
+ "3025",
1816
+ "3026",
1817
+ "3028",
1818
+ "30282",
1819
+ "3029",
1820
+ "3030",
1821
+ "3031",
1822
+ "3032",
1823
+ "30320",
1824
+ "303273",
1825
+ "3033",
1826
+ "3034",
1827
+ "3035",
1828
+ "3036",
1829
+ "30375",
1830
+ "30376",
1831
+ "3038",
1832
+ "30389",
1833
+ "3040",
1834
+ "3041",
1835
+ "30410",
1836
+ "3042",
1837
+ "3045",
1838
+ "3047",
1839
+ "3048",
1840
+ "30482",
1841
+ "30483",
1842
+ "30484",
1843
+ "30485",
1844
+ "30486",
1845
+ "30489",
1846
+ "3049",
1847
+ "30490",
1848
+ "30492",
1849
+ "30494",
1850
+ "30495",
1851
+ "30497",
1852
+ "3050",
1853
+ "3051",
1854
+ "30518",
1855
+ "3052",
1856
+ "3053",
1857
+ "30538",
1858
+ "3054",
1859
+ "3055",
1860
+ "30559",
1861
+ "3056",
1862
+ "30561",
1863
+ "3057",
1864
+ "3058",
1865
+ "3059",
1866
+ "3060",
1867
+ "3061",
1868
+ "30616",
1869
+ "3062",
1870
+ "30624",
1871
+ "3063",
1872
+ "3064",
1873
+ "3066",
1874
+ "3067",
1875
+ "3068",
1876
+ "3069",
1877
+ "3070",
1878
+ "30706",
1879
+ "30707",
1880
+ "30708",
1881
+ "30709",
1882
+ "3071",
1883
+ "30710",
1884
+ "30711",
1885
+ "30713",
1886
+ "3072",
1887
+ "3073",
1888
+ "30735",
1889
+ "3074",
1890
+ "3075",
1891
+ "3076",
1892
+ "307604",
1893
+ "307605",
1894
+ "3078",
1895
+ "30786",
1896
+ "30787",
1897
+ "30788",
1898
+ "3079",
1899
+ "30798",
1900
+ "3080",
1901
+ "30809",
1902
+ "3081",
1903
+ "3082",
1904
+ "3083",
1905
+ "3084",
1906
+ "3085",
1907
+ "30858",
1908
+ "30859",
1909
+ "3086",
1910
+ "30860",
1911
+ "30861",
1912
+ "30862",
1913
+ "30864",
1914
+ "30865",
1915
+ "30869",
1916
+ "3087",
1917
+ "30871",
1918
+ "30874",
1919
+ "30876",
1920
+ "30878",
1921
+ "3088",
1922
+ "30881",
1923
+ "30884",
1924
+ "30886",
1925
+ "30889",
1926
+ "3089",
1927
+ "30890",
1928
+ "30892",
1929
+ "30893",
1930
+ "30899",
1931
+ "3090",
1932
+ "30900",
1933
+ "30903",
1934
+ "30904",
1935
+ "30905",
1936
+ "30908",
1937
+ "3091",
1938
+ "3092",
1939
+ "30924",
1940
+ "3093",
1941
+ "30937",
1942
+ "30938",
1943
+ "3094",
1944
+ "30940",
1945
+ "30948",
1946
+ "3095",
1947
+ "30958",
1948
+ "3096",
1949
+ "3097",
1950
+ "30973",
1951
+ "3098",
1952
+ "3099",
1953
+ "31",
1954
+ "3100",
1955
+ "3101",
1956
+ "3102",
1957
+ "3103",
1958
+ "3104",
1959
+ "3105",
1960
+ "31053",
1961
+ "31054",
1962
+ "31056",
1963
+ "31058",
1964
+ "31059",
1965
+ "3106",
1966
+ "31060",
1967
+ "31062",
1968
+ "31063",
1969
+ "31064",
1970
+ "31065",
1971
+ "31066",
1972
+ "31067",
1973
+ "31068",
1974
+ "31069",
1975
+ "3107",
1976
+ "31070",
1977
+ "31071",
1978
+ "31072",
1979
+ "31073",
1980
+ "31074",
1981
+ "31075",
1982
+ "31076",
1983
+ "31077",
1984
+ "31078",
1985
+ "31079",
1986
+ "3108",
1987
+ "31080",
1988
+ "3109",
1989
+ "3110",
1990
+ "31100",
1991
+ "31103",
1992
+ "31105",
1993
+ "3111",
1994
+ "3112",
1995
+ "3113",
1996
+ "3114",
1997
+ "31143",
1998
+ "3115",
1999
+ "31163",
2000
+ "3117",
2001
+ "3118",
2002
+ "3119",
2003
+ "31190",
2004
+ "3120",
2005
+ "31207",
2006
+ "3121",
2007
+ "31212",
2008
+ "31219",
2009
+ "3122",
2010
+ "3123",
2011
+ "31239",
2012
+ "3124",
2013
+ "3125",
2014
+ "31254",
2015
+ "3126",
2016
+ "3127",
2017
+ "31290",
2018
+ "31292",
2019
+ "3130",
2020
+ "3131",
2021
+ "3132",
2022
+ "31321",
2023
+ "31338",
2024
+ "31339",
2025
+ "31340",
2026
+ "31341",
2027
+ "31342",
2028
+ "31343",
2029
+ "31345",
2030
+ "31348",
2031
+ "3135",
2032
+ "3136",
2033
+ "31363",
2034
+ "3137",
2035
+ "3138",
2036
+ "3139",
2037
+ "3140",
2038
+ "3141",
2039
+ "3142",
2040
+ "3143",
2041
+ "3144",
2042
+ "31446",
2043
+ "3146",
2044
+ "3147",
2045
+ "3148",
2046
+ "3149",
2047
+ "31490",
2048
+ "31491",
2049
+ "31492",
2050
+ "31493",
2051
+ "31494",
2052
+ "31496",
2053
+ "31497",
2054
+ "3150",
2055
+ "3151",
2056
+ "31519",
2057
+ "3152",
2058
+ "3153",
2059
+ "31537",
2060
+ "3154",
2061
+ "31540",
2062
+ "31546",
2063
+ "31548",
2064
+ "315481",
2065
+ "3155",
2066
+ "31550",
2067
+ "31558",
2068
+ "3156",
2069
+ "3157",
2070
+ "31575",
2071
+ "3158",
2072
+ "31582",
2073
+ "31586",
2074
+ "3159",
2075
+ "3160",
2076
+ "3162",
2077
+ "3163",
2078
+ "3164",
2079
+ "31640",
2080
+ "31643",
2081
+ "3165",
2082
+ "31657",
2083
+ "31658",
2084
+ "3166",
2085
+ "31660",
2086
+ "31661",
2087
+ "31662",
2088
+ "31664",
2089
+ "31665",
2090
+ "31666",
2091
+ "31668",
2092
+ "31669",
2093
+ "3167",
2094
+ "31670",
2095
+ "31671",
2096
+ "31673",
2097
+ "31674",
2098
+ "31677",
2099
+ "31678",
2100
+ "31679",
2101
+ "3168",
2102
+ "31680",
2103
+ "31681",
2104
+ "31682",
2105
+ "31683",
2106
+ "31684",
2107
+ "31685",
2108
+ "31686",
2109
+ "3169",
2110
+ "31690",
2111
+ "31691",
2112
+ "31696",
2113
+ "31699",
2114
+ "3170",
2115
+ "31702",
2116
+ "31704",
2117
+ "31705",
2118
+ "31706",
2119
+ "3171",
2120
+ "31710",
2121
+ "31713",
2122
+ "31715",
2123
+ "317223",
2124
+ "317226",
2125
+ "317228",
2126
+ "317230",
2127
+ "3173",
2128
+ "31732",
2129
+ "317494",
2130
+ "3175",
2131
+ "317535",
2132
+ "317544",
2133
+ "317545",
2134
+ "317546",
2135
+ "317547",
2136
+ "317548",
2137
+ "3176",
2138
+ "3177",
2139
+ "31772",
2140
+ "317952",
2141
+ "31809",
2142
+ "3181",
2143
+ "3183",
2144
+ "3187",
2145
+ "31878",
2146
+ "3188",
2147
+ "3189",
2148
+ "3190",
2149
+ "3191",
2150
+ "3192",
2151
+ "3193",
2152
+ "3194",
2153
+ "3195",
2154
+ "3196",
2155
+ "3197",
2156
+ "3198",
2157
+ "31986",
2158
+ "3199",
2159
+ "31991",
2160
+ "31998",
2161
+ "3200",
2162
+ "320030",
2163
+ "320051",
2164
+ "3201",
2165
+ "3202",
2166
+ "32024",
2167
+ "3203",
2168
+ "32034",
2169
+ "3204",
2170
+ "3205",
2171
+ "32057",
2172
+ "32058",
2173
+ "32059",
2174
+ "32060",
2175
+ "3207",
2176
+ "3208",
2177
+ "3209",
2178
+ "3210",
2179
+ "32100",
2180
+ "32101",
2181
+ "32102",
2182
+ "32103",
2183
+ "32105",
2184
+ "32107",
2185
+ "32108",
2186
+ "32109",
2187
+ "3211",
2188
+ "32110",
2189
+ "32112",
2190
+ "32113",
2191
+ "32114",
2192
+ "32115",
2193
+ "3212",
2194
+ "3213",
2195
+ "3214",
2196
+ "3215",
2197
+ "32156",
2198
+ "32158",
2199
+ "3216",
2200
+ "3217",
2201
+ "32178",
2202
+ "32179",
2203
+ "3218",
2204
+ "32181",
2205
+ "3219",
2206
+ "322",
2207
+ "3220",
2208
+ "3221",
2209
+ "32215",
2210
+ "32217",
2211
+ "3222",
2212
+ "3223",
2213
+ "3224",
2214
+ "32241",
2215
+ "3225",
2216
+ "32258",
2217
+ "3226",
2218
+ "3227",
2219
+ "3228",
2220
+ "3229",
2221
+ "32290",
2222
+ "3230",
2223
+ "3231",
2224
+ "32310",
2225
+ "32311",
2226
+ "3232",
2227
+ "32321",
2228
+ "32326",
2229
+ "3233",
2230
+ "3234",
2231
+ "3235",
2232
+ "32352",
2233
+ "32355",
2234
+ "3236",
2235
+ "3237",
2236
+ "32371",
2237
+ "3238",
2238
+ "3239",
2239
+ "3240",
2240
+ "3241",
2241
+ "32416",
2242
+ "3242",
2243
+ "3243",
2244
+ "3244",
2245
+ "3245",
2246
+ "3246",
2247
+ "3247",
2248
+ "3248",
2249
+ "3250",
2250
+ "32506",
2251
+ "3251",
2252
+ "3252",
2253
+ "3253",
2254
+ "3254",
2255
+ "3255",
2256
+ "32554",
2257
+ "3256",
2258
+ "32567",
2259
+ "32569",
2260
+ "3257",
2261
+ "32571",
2262
+ "325770",
2263
+ "325771",
2264
+ "3258",
2265
+ "3259",
2266
+ "3260",
2267
+ "32605",
2268
+ "32608",
2269
+ "3261",
2270
+ "32617",
2271
+ "32618",
2272
+ "32619",
2273
+ "3262",
2274
+ "32620",
2275
+ "32622",
2276
+ "32623",
2277
+ "3263",
2278
+ "3264",
2279
+ "3265",
2280
+ "3266",
2281
+ "326604",
2282
+ "32666",
2283
+ "3267",
2284
+ "3268",
2285
+ "3269",
2286
+ "3270",
2287
+ "3271",
2288
+ "3272",
2289
+ "3273",
2290
+ "3274",
2291
+ "32747",
2292
+ "3275",
2293
+ "32750",
2294
+ "32751",
2295
+ "3276",
2296
+ "3277",
2297
+ "3278",
2298
+ "3279",
2299
+ "3280",
2300
+ "3281",
2301
+ "32816",
2302
+ "3282",
2303
+ "328228",
2304
+ "32823",
2305
+ "3283",
2306
+ "3284",
2307
+ "3285",
2308
+ "3286",
2309
+ "3287",
2310
+ "32871",
2311
+ "32872",
2312
+ "32879",
2313
+ "3288",
2314
+ "32888",
2315
+ "3289",
2316
+ "3290",
2317
+ "3291",
2318
+ "3292",
2319
+ "32926",
2320
+ "3293",
2321
+ "3294",
2322
+ "3295",
2323
+ "32952",
2324
+ "329557",
2325
+ "3296",
2326
+ "3297",
2327
+ "3298",
2328
+ "3299",
2329
+ "3300",
2330
+ "3301",
2331
+ "3302",
2332
+ "33027",
2333
+ "3303",
2334
+ "33031",
2335
+ "3304",
2336
+ "33043",
2337
+ "33045",
2338
+ "33046",
2339
+ "3305",
2340
+ "3306",
2341
+ "33064",
2342
+ "3307",
2343
+ "33074",
2344
+ "3308",
2345
+ "33080",
2346
+ "3309",
2347
+ "3310",
2348
+ "3311",
2349
+ "33113",
2350
+ "3312",
2351
+ "3313",
2352
+ "3314",
2353
+ "3315",
2354
+ "3316",
2355
+ "3317",
2356
+ "3318",
2357
+ "3319",
2358
+ "3320",
2359
+ "33203",
2360
+ "3321",
2361
+ "33211",
2362
+ "33212",
2363
+ "3322",
2364
+ "3323",
2365
+ "33230",
2366
+ "3324",
2367
+ "33247",
2368
+ "3326",
2369
+ "33312",
2370
+ "33352",
2371
+ "3337",
2372
+ "3338",
2373
+ "33389",
2374
+ "3339",
2375
+ "33390",
2376
+ "33391",
2377
+ "33392",
2378
+ "3340",
2379
+ "33405",
2380
+ "3341",
2381
+ "3342",
2382
+ "3343",
2383
+ "3344",
2384
+ "3345",
2385
+ "33458",
2386
+ "3346",
2387
+ "3347",
2388
+ "3348",
2389
+ "3349",
2390
+ "3350",
2391
+ "33504",
2392
+ "3351",
2393
+ "3352",
2394
+ "3353",
2395
+ "3354",
2396
+ "3355",
2397
+ "33556",
2398
+ "3356",
2399
+ "3357",
2400
+ "3358",
2401
+ "33587",
2402
+ "3359",
2403
+ "33591",
2404
+ "33592",
2405
+ "3360",
2406
+ "3361",
2407
+ "3362",
2408
+ "33629",
2409
+ "3363",
2410
+ "3364",
2411
+ "3365",
2412
+ "33652",
2413
+ "33653",
2414
+ "336531",
2415
+ "336551",
2416
+ "3366",
2417
+ "3367",
2418
+ "3368",
2419
+ "3369",
2420
+ "3370",
2421
+ "3371",
2422
+ "3372",
2423
+ "33720",
2424
+ "33722",
2425
+ "3373",
2426
+ "33734",
2427
+ "33739",
2428
+ "3374",
2429
+ "3375",
2430
+ "33753",
2431
+ "3376",
2432
+ "3377",
2433
+ "33779",
2434
+ "3378",
2435
+ "3379",
2436
+ "338",
2437
+ "3380",
2438
+ "33801",
2439
+ "3381",
2440
+ "3382",
2441
+ "3383",
2442
+ "33833",
2443
+ "33834",
2444
+ "33835",
2445
+ "33836",
2446
+ "33838",
2447
+ "33839",
2448
+ "3384",
2449
+ "33840",
2450
+ "33842",
2451
+ "33843",
2452
+ "3385",
2453
+ "3386",
2454
+ "3387",
2455
+ "3388",
2456
+ "3389",
2457
+ "3390",
2458
+ "3391",
2459
+ "3392",
2460
+ "3393",
2461
+ "3394",
2462
+ "3397",
2463
+ "3400",
2464
+ "3401",
2465
+ "34015",
2466
+ "3402",
2467
+ "34020",
2468
+ "34021",
2469
+ "3404",
2470
+ "3405",
2471
+ "3406",
2472
+ "3407",
2473
+ "3408",
2474
+ "3409",
2475
+ "3410",
2476
+ "34101",
2477
+ "34102",
2478
+ "34105",
2479
+ "34107",
2480
+ "34117",
2481
+ "3416",
2482
+ "3417",
2483
+ "34189",
2484
+ "34231",
2485
+ "34264",
2486
+ "34339",
2487
+ "34342",
2488
+ "34343",
2489
+ "34344",
2490
+ "34345",
2491
+ "34346",
2492
+ "34347",
2493
+ "34348",
2494
+ "34349",
2495
+ "34350",
2496
+ "34351",
2497
+ "34352",
2498
+ "34353",
2499
+ "34354",
2500
+ "34355",
2501
+ "34356",
2502
+ "34357",
2503
+ "34370",
2504
+ "3438",
2505
+ "34381",
2506
+ "3439",
2507
+ "34412",
2508
+ "34415",
2509
+ "3443",
2510
+ "3444",
2511
+ "34450",
2512
+ "34455",
2513
+ "34475",
2514
+ "34478",
2515
+ "34483",
2516
+ "34485",
2517
+ "34515",
2518
+ "34522",
2519
+ "34523",
2520
+ "34524",
2521
+ "34525",
2522
+ "34526",
2523
+ "34527",
2524
+ "3453",
2525
+ "3454",
2526
+ "34568",
2527
+ "34576",
2528
+ "34586",
2529
+ "34592",
2530
+ "346017",
2531
+ "34606",
2532
+ "34626",
2533
+ "34630",
2534
+ "34632",
2535
+ "34633",
2536
+ "34635",
2537
+ "34637",
2538
+ "34702",
2539
+ "34706",
2540
+ "34707",
2541
+ "34708",
2542
+ "34710",
2543
+ "34713",
2544
+ "34714",
2545
+ "34715",
2546
+ "34716",
2547
+ "34717",
2548
+ "34718",
2549
+ "34719",
2550
+ "34720",
2551
+ "34721",
2552
+ "34722",
2553
+ "34731",
2554
+ "34743",
2555
+ "34745",
2556
+ "34751",
2557
+ "34755",
2558
+ "34756",
2559
+ "34757",
2560
+ "34758",
2561
+ "34759",
2562
+ "34760",
2563
+ "34761",
2564
+ "34762",
2565
+ "34763",
2566
+ "34764",
2567
+ "34765",
2568
+ "34766",
2569
+ "34767",
2570
+ "34768",
2571
+ "34769",
2572
+ "34770",
2573
+ "34771",
2574
+ "34772",
2575
+ "34773",
2576
+ "34774",
2577
+ "34775",
2578
+ "34776",
2579
+ "34777",
2580
+ "34778",
2581
+ "34787",
2582
+ "34788",
2583
+ "34789",
2584
+ "3488",
2585
+ "34904",
2586
+ "3491",
2587
+ "3493",
2588
+ "34938",
2589
+ "3494",
2590
+ "34954",
2591
+ "34955",
2592
+ "34956",
2593
+ "34957",
2594
+ "34958",
2595
+ "34959",
2596
+ "34960",
2597
+ "34961",
2598
+ "34962",
2599
+ "34963",
2600
+ "34964",
2601
+ "34965",
2602
+ "34966",
2603
+ "34967",
2604
+ "34968",
2605
+ "34969",
2606
+ "34970",
2607
+ "34971",
2608
+ "34972",
2609
+ "34973",
2610
+ "34974",
2611
+ "34975",
2612
+ "34976",
2613
+ "34977",
2614
+ "34978",
2615
+ "34979",
2616
+ "34980",
2617
+ "34981",
2618
+ "34982",
2619
+ "34983",
2620
+ "34984",
2621
+ "34985",
2622
+ "34986",
2623
+ "34987",
2624
+ "34988",
2625
+ "34989",
2626
+ "34990",
2627
+ "34991",
2628
+ "34992",
2629
+ "34993",
2630
+ "34994",
2631
+ "34995",
2632
+ "34996",
2633
+ "3500",
2634
+ "35001",
2635
+ "35004",
2636
+ "35005",
2637
+ "35010",
2638
+ "3508",
2639
+ "3509",
2640
+ "3510",
2641
+ "3511",
2642
+ "35113",
2643
+ "3512",
2644
+ "3513",
2645
+ "3514",
2646
+ "3515",
2647
+ "3516",
2648
+ "3517",
2649
+ "351788",
2650
+ "351790",
2651
+ "351791",
2652
+ "351792",
2653
+ "351793",
2654
+ "351794",
2655
+ "3518",
2656
+ "351800",
2657
+ "351801",
2658
+ "3519",
2659
+ "3520",
2660
+ "352024",
2661
+ "352096",
2662
+ "3521",
2663
+ "352101",
2664
+ "352102",
2665
+ "3522",
2666
+ "352257",
2667
+ "352258",
2668
+ "3523",
2669
+ "3524",
2670
+ "3525",
2671
+ "3526",
2672
+ "3527",
2673
+ "3528",
2674
+ "3531",
2675
+ "3532",
2676
+ "35328",
2677
+ "3533",
2678
+ "3534",
2679
+ "35348",
2680
+ "3535",
2681
+ "3536",
2682
+ "3537",
2683
+ "35374",
2684
+ "3538",
2685
+ "353857",
2686
+ "3539",
2687
+ "3540",
2688
+ "3541",
2689
+ "3542",
2690
+ "3547",
2691
+ "3548",
2692
+ "35488",
2693
+ "3549",
2694
+ "35497",
2695
+ "3550",
2696
+ "3551",
2697
+ "3552",
2698
+ "3553",
2699
+ "35532",
2700
+ "3554",
2701
+ "355493",
2702
+ "35558",
2703
+ "3556",
2704
+ "35560",
2705
+ "35562",
2706
+ "3557",
2707
+ "3558",
2708
+ "3559",
2709
+ "3560",
2710
+ "3561",
2711
+ "3562",
2712
+ "35635",
2713
+ "356356",
2714
+ "35637",
2715
+ "35638",
2716
+ "35639",
2717
+ "35640",
2718
+ "35641",
2719
+ "35642",
2720
+ "35643",
2721
+ "3565",
2722
+ "3568",
2723
+ "356823",
2724
+ "357185",
2725
+ "357186",
2726
+ "357187",
2727
+ "357191",
2728
+ "357192",
2729
+ "357193",
2730
+ "357199",
2731
+ "35720",
2732
+ "357201",
2733
+ "357203",
2734
+ "357204",
2735
+ "357205",
2736
+ "357206",
2737
+ "357320",
2738
+ "357333",
2739
+ "3574",
2740
+ "3579",
2741
+ "3580",
2742
+ "3581",
2743
+ "35833",
2744
+ "35835",
2745
+ "3586",
2746
+ "358867",
2747
+ "359095",
2748
+ "35928",
2749
+ "35939",
2750
+ "3597",
2751
+ "35970",
2752
+ "35987",
2753
+ "3599",
2754
+ "35999",
2755
+ "3601",
2756
+ "3602",
2757
+ "3603",
2758
+ "36039",
2759
+ "3604",
2760
+ "3605",
2761
+ "3607",
2762
+ "36077",
2763
+ "36079",
2764
+ "3608",
2765
+ "36081",
2766
+ "3609",
2767
+ "36095",
2768
+ "3610",
2769
+ "36104",
2770
+ "3611",
2771
+ "36118",
2772
+ "3612",
2773
+ "36127",
2774
+ "36128",
2775
+ "36130",
2776
+ "36141",
2777
+ "36142",
2778
+ "361830",
2779
+ "361838",
2780
+ "361840",
2781
+ "361841",
2782
+ "362059",
2783
+ "362067",
2784
+ "362096",
2785
+ "362260",
2786
+ "362296",
2787
+ "362630",
2788
+ "362638",
2789
+ "362639",
2790
+ "362640",
2791
+ "362641",
2792
+ "36291",
2793
+ "36296",
2794
+ "36314",
2795
+ "36321",
2796
+ "363283",
2797
+ "363284",
2798
+ "36337",
2799
+ "36338",
2800
+ "36340",
2801
+ "36342",
2802
+ "36343",
2803
+ "36345",
2804
+ "363495",
2805
+ "363529",
2806
+ "363536",
2807
+ "36387",
2808
+ "36389",
2809
+ "36391",
2810
+ "36407",
2811
+ "36410",
2812
+ "36414",
2813
+ "36416",
2814
+ "364217",
2815
+ "36467",
2816
+ "36488",
2817
+ "36515",
2818
+ "36518",
2819
+ "36521",
2820
+ "36523",
2821
+ "36525",
2822
+ "36526",
2823
+ "36529",
2824
+ "36530",
2825
+ "36542",
2826
+ "36561",
2827
+ "36562",
2828
+ "36563",
2829
+ "36567",
2830
+ "36568",
2831
+ "36569",
2832
+ "36570",
2833
+ "36571",
2834
+ "36572",
2835
+ "36574",
2836
+ "36577",
2837
+ "36578",
2838
+ "36579",
2839
+ "3658",
2840
+ "36581",
2841
+ "36582",
2842
+ "3661",
2843
+ "36619",
2844
+ "36623",
2845
+ "36625",
2846
+ "36638",
2847
+ "36660",
2848
+ "36661",
2849
+ "36662",
2850
+ "36663",
2851
+ "36666",
2852
+ "36667",
2853
+ "36668",
2854
+ "3667",
2855
+ "36672",
2856
+ "36673",
2857
+ "36679",
2858
+ "3668",
2859
+ "3669",
2860
+ "3670",
2861
+ "36713",
2862
+ "36746",
2863
+ "3675",
2864
+ "3676",
2865
+ "3677",
2866
+ "36770",
2867
+ "36771",
2868
+ "36778",
2869
+ "3678",
2870
+ "36780",
2871
+ "36783",
2872
+ "36794",
2873
+ "3681",
2874
+ "368146",
2875
+ "368147",
2876
+ "3682",
2877
+ "3683",
2878
+ "3684",
2879
+ "3685",
2880
+ "368661",
2881
+ "368662",
2882
+ "368663",
2883
+ "368664",
2884
+ "368666",
2885
+ "368667",
2886
+ "368668",
2887
+ "368669",
2888
+ "368670",
2889
+ "368671",
2890
+ "368672",
2891
+ "368673",
2892
+ "3688",
2893
+ "3690",
2894
+ "3691",
2895
+ "3692",
2896
+ "3693",
2897
+ "3694",
2898
+ "36940",
2899
+ "3695",
2900
+ "3696",
2901
+ "3697",
2902
+ "36974",
2903
+ "3698",
2904
+ "36988",
2905
+ "3699",
2906
+ "37",
2907
+ "3700",
2908
+ "37005",
2909
+ "3701",
2910
+ "3702",
2911
+ "3703",
2912
+ "37049",
2913
+ "3706",
2914
+ "3707",
2915
+ "37080",
2916
+ "3709",
2917
+ "3710",
2918
+ "3711",
2919
+ "3712",
2920
+ "37123",
2921
+ "3713",
2922
+ "37141",
2923
+ "37142",
2924
+ "37149",
2925
+ "3716",
2926
+ "3717",
2927
+ "3718",
2928
+ "3719",
2929
+ "3720",
2930
+ "37205",
2931
+ "3721",
2932
+ "3723",
2933
+ "37245",
2934
+ "37247",
2935
+ "37248",
2936
+ "3725",
2937
+ "3726",
2938
+ "3727",
2939
+ "37275",
2940
+ "3728",
2941
+ "37319",
2942
+ "37333",
2943
+ "3736",
2944
+ "37367",
2945
+ "37368",
2946
+ "3737",
2947
+ "37370",
2948
+ "3738",
2949
+ "37385",
2950
+ "37396",
2951
+ "37408",
2952
+ "37440",
2953
+ "37483",
2954
+ "37484",
2955
+ "37492",
2956
+ "37521",
2957
+ "3754",
2958
+ "3755",
2959
+ "37578",
2960
+ "37592",
2961
+ "37612",
2962
+ "37620",
2963
+ "376600",
2964
+ "376822",
2965
+ "3769",
2966
+ "3771",
2967
+ "37718",
2968
+ "3772",
2969
+ "3773",
2970
+ "3774",
2971
+ "37741",
2972
+ "3775",
2973
+ "3776",
2974
+ "3778",
2975
+ "3779",
2976
+ "3780",
2977
+ "3781",
2978
+ "37814",
2979
+ "3782",
2980
+ "37828",
2981
+ "3783",
2982
+ "3784",
2983
+ "3785",
2984
+ "3787",
2985
+ "3788",
2986
+ "3789",
2987
+ "3790",
2988
+ "3791",
2989
+ "3792",
2990
+ "3793",
2991
+ "3794",
2992
+ "3795",
2993
+ "37954",
2994
+ "3796",
2995
+ "3797",
2996
+ "3798",
2997
+ "3799",
2998
+ "3800",
2999
+ "3802",
3000
+ "3803",
3001
+ "3805",
3002
+ "3806",
3003
+ "38063",
3004
+ "38064",
3005
+ "38065",
3006
+ "38067",
3007
+ "3807",
3008
+ "3808",
3009
+ "380802",
3010
+ "3809",
3011
+ "38105",
3012
+ "3812",
3013
+ "38147",
3014
+ "38148",
3015
+ "38149",
3016
+ "3818",
3017
+ "38204",
3018
+ "38218",
3019
+ "38225",
3020
+ "38229",
3021
+ "38238",
3022
+ "38239",
3023
+ "3825",
3024
+ "3826",
3025
+ "38268",
3026
+ "3827",
3027
+ "38278",
3028
+ "3828",
3029
+ "3829",
3030
+ "3830",
3031
+ "3831",
3032
+ "3832",
3033
+ "38340",
3034
+ "38341",
3035
+ "38342",
3036
+ "3836",
3037
+ "38368",
3038
+ "3837",
3039
+ "38371",
3040
+ "3838",
3041
+ "3839",
3042
+ "38394",
3043
+ "3840",
3044
+ "3841",
3045
+ "38412",
3046
+ "3842",
3047
+ "38438",
3048
+ "38449",
3049
+ "38450",
3050
+ "38474",
3051
+ "38499",
3052
+ "3850",
3053
+ "38507",
3054
+ "3851",
3055
+ "38511",
3056
+ "3852",
3057
+ "3853",
3058
+ "3854",
3059
+ "3855",
3060
+ "3856",
3061
+ "38562",
3062
+ "38570",
3063
+ "38573",
3064
+ "38579",
3065
+ "3858",
3066
+ "38580",
3067
+ "38581",
3068
+ "38583",
3069
+ "38584",
3070
+ "38586",
3071
+ "38588",
3072
+ "38589",
3073
+ "3859",
3074
+ "38591",
3075
+ "38592",
3076
+ "38593",
3077
+ "38594",
3078
+ "38595",
3079
+ "38599",
3080
+ "3860",
3081
+ "38609",
3082
+ "3861",
3083
+ "3862",
3084
+ "3863",
3085
+ "3864",
3086
+ "3865",
3087
+ "3866",
3088
+ "3867",
3089
+ "38690",
3090
+ "38716",
3091
+ "38734",
3092
+ "38752",
3093
+ "3886",
3094
+ "3887",
3095
+ "38876",
3096
+ "3888",
3097
+ "38897",
3098
+ "389",
3099
+ "3891",
3100
+ "3897",
3101
+ "3900",
3102
+ "39000",
3103
+ "3903",
3104
+ "3904",
3105
+ "3907",
3106
+ "390801",
3107
+ "39082",
3108
+ "3915",
3109
+ "39156",
3110
+ "3916",
3111
+ "3917",
3112
+ "3918",
3113
+ "39182",
3114
+ "39183",
3115
+ "39184",
3116
+ "39187",
3117
+ "3919",
3118
+ "39190",
3119
+ "39211",
3120
+ "39212",
3121
+ "39213",
3122
+ "39214",
3123
+ "39215",
3124
+ "39216",
3125
+ "39220",
3126
+ "39224",
3127
+ "392279",
3128
+ "39231",
3129
+ "39232",
3130
+ "3930",
3131
+ "3931",
3132
+ "3932",
3133
+ "3933",
3134
+ "3934",
3135
+ "3935",
3136
+ "3936",
3137
+ "393638",
3138
+ "3937",
3139
+ "39371",
3140
+ "3938",
3141
+ "3939",
3142
+ "39394",
3143
+ "394165",
3144
+ "39478",
3145
+ "39482",
3146
+ "39694",
3147
+ "3970",
3148
+ "3971",
3149
+ "39714",
3150
+ "39715",
3151
+ "39716",
3152
+ "3972",
3153
+ "3977",
3154
+ "39790",
3155
+ "39794",
3156
+ "39796",
3157
+ "39798",
3158
+ "3984",
3159
+ "39864",
3160
+ "3990",
3161
+ "3991",
3162
+ "39910",
3163
+ "39913",
3164
+ "39914",
3165
+ "39932",
3166
+ "39942",
3167
+ "39956",
3168
+ "399647",
3169
+ "399679",
3170
+ "4002",
3171
+ "4003",
3172
+ "4004",
3173
+ "4005",
3174
+ "4006",
3175
+ "4008",
3176
+ "4009",
3177
+ "4010",
3178
+ "4013",
3179
+ "401319",
3180
+ "4014",
3181
+ "4016",
3182
+ "4018",
3183
+ "4020",
3184
+ "40213",
3185
+ "40218",
3186
+ "40224",
3187
+ "402444",
3188
+ "402785",
3189
+ "403302",
3190
+ "4034",
3191
+ "40351",
3192
+ "40352",
3193
+ "40353",
3194
+ "40354",
3195
+ "40356",
3196
+ "40357",
3197
+ "40358",
3198
+ "40359",
3199
+ "40361",
3200
+ "40362",
3201
+ "40363",
3202
+ "40364",
3203
+ "403750",
3204
+ "40401",
3205
+ "40402",
3206
+ "40403",
3207
+ "40418",
3208
+ "40421",
3209
+ "40448",
3210
+ "404632",
3211
+ "40476",
3212
+ "40480",
3213
+ "404819",
3214
+ "40482",
3215
+ "40489",
3216
+ "405082",
3217
+ "40509",
3218
+ "40518",
3219
+ "40520",
3220
+ "40535",
3221
+ "40536",
3222
+ "40538",
3223
+ "40539",
3224
+ "40540",
3225
+ "40545",
3226
+ "40547",
3227
+ "40548",
3228
+ "40549",
3229
+ "40550",
3230
+ "40551",
3231
+ "40552",
3232
+ "40553",
3233
+ "40554",
3234
+ "40555",
3235
+ "4063",
3236
+ "40699",
3237
+ "40700",
3238
+ "40701",
3239
+ "40702",
3240
+ "40703",
3241
+ "40704",
3242
+ "40769",
3243
+ "4078",
3244
+ "40786",
3245
+ "40787",
3246
+ "40788",
3247
+ "40789",
3248
+ "40790",
3249
+ "40791",
3250
+ "40792",
3251
+ "40793",
3252
+ "4094",
3253
+ "4095",
3254
+ "4096",
3255
+ "40969",
3256
+ "4097",
3257
+ "40970",
3258
+ "4098",
3259
+ "4099",
3260
+ "40994",
3261
+ "4100",
3262
+ "4101",
3263
+ "41016",
3264
+ "4102",
3265
+ "4103",
3266
+ "4104",
3267
+ "4105",
3268
+ "41059",
3269
+ "4106",
3270
+ "4107",
3271
+ "4108",
3272
+ "4109",
3273
+ "4110",
3274
+ "4111",
3275
+ "4112",
3276
+ "4113",
3277
+ "4114",
3278
+ "4115",
3279
+ "41158",
3280
+ "4116",
3281
+ "4117",
3282
+ "4118",
3283
+ "41182",
3284
+ "41184",
3285
+ "41187",
3286
+ "41194",
3287
+ "41195",
3288
+ "41212",
3289
+ "4123",
3290
+ "41264",
3291
+ "4131",
3292
+ "4133",
3293
+ "41347",
3294
+ "4136",
3295
+ "4137",
3296
+ "4138",
3297
+ "4139",
3298
+ "414",
3299
+ "4140",
3300
+ "4141",
3301
+ "4142",
3302
+ "4143",
3303
+ "4144",
3304
+ "4145",
3305
+ "4146",
3306
+ "4147",
3307
+ "4148",
3308
+ "4149",
3309
+ "4150",
3310
+ "4151",
3311
+ "4152",
3312
+ "4153",
3313
+ "4154",
3314
+ "4156",
3315
+ "4157",
3316
+ "4158",
3317
+ "4159",
3318
+ "4160",
3319
+ "4161",
3320
+ "4162",
3321
+ "41622",
3322
+ "4163",
3323
+ "41632",
3324
+ "4165",
3325
+ "4166",
3326
+ "4167",
3327
+ "4168",
3328
+ "4169",
3329
+ "4172",
3330
+ "4173",
3331
+ "4174",
3332
+ "4175",
3333
+ "41757",
3334
+ "41761",
3335
+ "41762",
3336
+ "41763",
3337
+ "41764",
3338
+ "4178",
3339
+ "4179",
3340
+ "4181",
3341
+ "4182",
3342
+ "4183",
3343
+ "4184",
3344
+ "4185",
3345
+ "4187",
3346
+ "4188",
3347
+ "4189",
3348
+ "4191",
3349
+ "41939",
3350
+ "41976",
3351
+ "421084",
3352
+ "4211",
3353
+ "4215",
3354
+ "4219",
3355
+ "4220",
3356
+ "4222",
3357
+ "4223",
3358
+ "4224",
3359
+ "4227",
3360
+ "4228",
3361
+ "42374",
3362
+ "42376",
3363
+ "424010",
3364
+ "424423",
3365
+ "4249",
3366
+ "424978",
3367
+ "4251",
3368
+ "425197",
3369
+ "425199",
3370
+ "4252",
3371
+ "4253",
3372
+ "4254",
3373
+ "4255",
3374
+ "4256",
3375
+ "4257",
3376
+ "425785",
3377
+ "4258",
3378
+ "4259",
3379
+ "4260",
3380
+ "4261",
3381
+ "4262",
3382
+ "4263",
3383
+ "4264",
3384
+ "4265",
3385
+ "4266",
3386
+ "4267",
3387
+ "4268",
3388
+ "4269",
3389
+ "426976",
3390
+ "4270",
3391
+ "4271",
3392
+ "4272",
3393
+ "4273",
3394
+ "4274",
3395
+ "4275",
3396
+ "4276",
3397
+ "4277",
3398
+ "4278",
3399
+ "4279",
3400
+ "4280",
3401
+ "4281",
3402
+ "4282",
3403
+ "4283",
3404
+ "4284",
3405
+ "4285",
3406
+ "4287",
3407
+ "4288",
3408
+ "4289",
3409
+ "4293",
3410
+ "4294",
3411
+ "4295",
3412
+ "4296",
3413
+ "4297",
3414
+ "4298",
3415
+ "4299",
3416
+ "430",
3417
+ "4300",
3418
+ "4301",
3419
+ "4302",
3420
+ "4303",
3421
+ "4304",
3422
+ "4305",
3423
+ "430651",
3424
+ "4314",
3425
+ "431497",
3426
+ "431597",
3427
+ "4318",
3428
+ "4319",
3429
+ "4321",
3430
+ "4326",
3431
+ "433064",
3432
+ "433070",
3433
+ "433071",
3434
+ "4338",
3435
+ "4339",
3436
+ "4340",
3437
+ "4341",
3438
+ "4342",
3439
+ "4343",
3440
+ "4344",
3441
+ "4345",
3442
+ "4346",
3443
+ "4347",
3444
+ "43574",
3445
+ "436904",
3446
+ "437",
3447
+ "437205",
3448
+ "437208",
3449
+ "4376",
3450
+ "4377",
3451
+ "4378",
3452
+ "4379",
3453
+ "4380",
3454
+ "4382",
3455
+ "43935",
3456
+ "43936",
3457
+ "43998",
3458
+ "44023",
3459
+ "440373",
3460
+ "4407",
3461
+ "4411",
3462
+ "44294",
3463
+ "444",
3464
+ "444434",
3465
+ "44468",
3466
+ "44572",
3467
+ "445937",
3468
+ "445938",
3469
+ "445939",
3470
+ "445942",
3471
+ "4465",
3472
+ "4479",
3473
+ "448015",
3474
+ "4510",
3475
+ "4529",
3476
+ "452972",
3477
+ "4530",
3478
+ "4542",
3479
+ "454828",
3480
+ "455",
3481
+ "4562",
3482
+ "4569",
3483
+ "4571",
3484
+ "4576",
3485
+ "4580",
3486
+ "4581",
3487
+ "4582",
3488
+ "4583",
3489
+ "4587",
3490
+ "4588",
3491
+ "458927",
3492
+ "4590",
3493
+ "4594",
3494
+ "460061",
3495
+ "460067",
3496
+ "460070",
3497
+ "460074",
3498
+ "460075",
3499
+ "460078",
3500
+ "460080",
3501
+ "4601",
3502
+ "460101",
3503
+ "460112",
3504
+ "460116",
3505
+ "4602",
3506
+ "460374",
3507
+ "460661",
3508
+ "460663",
3509
+ "461873",
3510
+ "461882",
3511
+ "4631",
3512
+ "464544",
3513
+ "46507",
3514
+ "465521",
3515
+ "46603",
3516
+ "467268",
3517
+ "467270",
3518
+ "467272",
3519
+ "467276",
3520
+ "467277",
3521
+ "467278",
3522
+ "467280",
3523
+ "468",
3524
+ "470110",
3525
+ "470300",
3526
+ "470307",
3527
+ "470315",
3528
+ "470319",
3529
+ "470322",
3530
+ "473561",
3531
+ "473567",
3532
+ "473617",
3533
+ "473667",
3534
+ "473678",
3535
+ "473687",
3536
+ "473691",
3537
+ "473701",
3538
+ "473722",
3539
+ "473728",
3540
+ "473731",
3541
+ "474054",
3542
+ "474471",
3543
+ "474476",
3544
+ "4746",
3545
+ "475094",
3546
+ "475097",
3547
+ "475098",
3548
+ "475104",
3549
+ "475107",
3550
+ "475109",
3551
+ "475110",
3552
+ "4783",
3553
+ "478646",
3554
+ "47969",
3555
+ "47970",
3556
+ "47971",
3557
+ "47972",
3558
+ "47973",
3559
+ "47974",
3560
+ "47975",
3561
+ "47976",
3562
+ "47977",
3563
+ "47978",
3564
+ "47979",
3565
+ "47980",
3566
+ "47981",
3567
+ "47982",
3568
+ "47983",
3569
+ "47985",
3570
+ "47986",
3571
+ "47987",
3572
+ "47988",
3573
+ "47990",
3574
+ "47991",
3575
+ "4800",
3576
+ "480810",
3577
+ "480819",
3578
+ "480836",
3579
+ "4820",
3580
+ "483",
3581
+ "483598",
3582
+ "485956",
3583
+ "485958",
3584
+ "485959",
3585
+ "485961",
3586
+ "485962",
3587
+ "485963",
3588
+ "485964",
3589
+ "485965",
3590
+ "485966",
3591
+ "485967",
3592
+ "485968",
3593
+ "486005",
3594
+ "486012",
3595
+ "486021",
3596
+ "4880",
3597
+ "488779",
3598
+ "489934",
3599
+ "490158",
3600
+ "490497",
3601
+ "491275",
3602
+ "491276",
3603
+ "49239",
3604
+ "4925",
3605
+ "49594",
3606
+ "49597",
3607
+ "49690",
3608
+ "49691",
3609
+ "49693",
3610
+ "49696",
3611
+ "49702",
3612
+ "49703",
3613
+ "49706",
3614
+ "49707",
3615
+ "49708",
3616
+ "49709",
3617
+ "49710",
3618
+ "49711",
3619
+ "49712",
3620
+ "49713",
3621
+ "49714",
3622
+ "49715",
3623
+ "49762",
3624
+ "498636",
3625
+ "49909",
3626
+ "49958",
3627
+ "49959",
3628
+ "49961",
3629
+ "49965",
3630
+ "49966",
3631
+ "49972",
3632
+ "49973",
3633
+ "500300",
3634
+ "500315",
3635
+ "5004",
3636
+ "501913",
3637
+ "50219",
3638
+ "504",
3639
+ "504772",
3640
+ "504773",
3641
+ "504929",
3642
+ "506216",
3643
+ "506219",
3644
+ "506220",
3645
+ "506221",
3646
+ "506222",
3647
+ "506223",
3648
+ "506224",
3649
+ "506232",
3650
+ "506233",
3651
+ "506234",
3652
+ "506235",
3653
+ "506236",
3654
+ "506237",
3655
+ "506238",
3656
+ "506551",
3657
+ "506553",
3658
+ "506554",
3659
+ "506555",
3660
+ "506556",
3661
+ "506557",
3662
+ "506558",
3663
+ "507376",
3664
+ "508771",
3665
+ "50999",
3666
+ "510361",
3667
+ "510886",
3668
+ "510911",
3669
+ "510949",
3670
+ "510957",
3671
+ "510958",
3672
+ "510959",
3673
+ "510960",
3674
+ "510961",
3675
+ "510962",
3676
+ "510968",
3677
+ "510969",
3678
+ "510970",
3679
+ "510971",
3680
+ "510972",
3681
+ "510973",
3682
+ "510974",
3683
+ "510975",
3684
+ "510976",
3685
+ "510980",
3686
+ "510981",
3687
+ "510982",
3688
+ "510983",
3689
+ "513572",
3690
+ "514161",
3691
+ "515569",
3692
+ "516090",
3693
+ "51782",
3694
+ "5183",
3695
+ "518359",
3696
+ "5187",
3697
+ "5188",
3698
+ "519",
3699
+ "5214",
3700
+ "5216",
3701
+ "5217",
3702
+ "5222",
3703
+ "5229",
3704
+ "523938",
3705
+ "5242",
3706
+ "5244",
3707
+ "5251",
3708
+ "5279",
3709
+ "5280",
3710
+ "5282",
3711
+ "5283",
3712
+ "529",
3713
+ "529831",
3714
+ "529842",
3715
+ "529843",
3716
+ "531453",
3717
+ "531454",
3718
+ "531455",
3719
+ "531895",
3720
+ "531896",
3721
+ "531898",
3722
+ "531900",
3723
+ "531901",
3724
+ "532123",
3725
+ "532127",
3726
+ "533907",
3727
+ "533931",
3728
+ "535181",
3729
+ "535259",
3730
+ "535265",
3731
+ "535433",
3732
+ "535443",
3733
+ "5355",
3734
+ "535697",
3735
+ "535703",
3736
+ "537066",
3737
+ "537077",
3738
+ "537086",
3739
+ "537087",
3740
+ "537088",
3741
+ "537089",
3742
+ "537090",
3743
+ "537092",
3744
+ "537093",
3745
+ "537094",
3746
+ "537504",
3747
+ "537507",
3748
+ "537511",
3749
+ "537514",
3750
+ "537516",
3751
+ "537529",
3752
+ "537535",
3753
+ "537537",
3754
+ "537538",
3755
+ "537551",
3756
+ "537557",
3757
+ "537569",
3758
+ "537570",
3759
+ "537575",
3760
+ "537578",
3761
+ "537579",
3762
+ "537581",
3763
+ "537584",
3764
+ "537587",
3765
+ "537588",
3766
+ "537595",
3767
+ "537598",
3768
+ "537600",
3769
+ "537606",
3770
+ "537613",
3771
+ "537620",
3772
+ "537632",
3773
+ "537636",
3774
+ "5378",
3775
+ "537855",
3776
+ "5387",
3777
+ "539",
3778
+ "5408",
3779
+ "541",
3780
+ "543",
3781
+ "543923",
3782
+ "543934",
3783
+ "54492",
3784
+ "54493",
3785
+ "54494",
3786
+ "544946",
3787
+ "544948",
3788
+ "54495",
3789
+ "54496",
3790
+ "54497",
3791
+ "54498",
3792
+ "54499",
3793
+ "54501",
3794
+ "545459",
3795
+ "545462",
3796
+ "545512",
3797
+ "545638",
3798
+ "545715",
3799
+ "54627",
3800
+ "54628",
3801
+ "54629",
3802
+ "54630",
3803
+ "546761",
3804
+ "5472",
3805
+ "5474",
3806
+ "547459",
3807
+ "5475",
3808
+ "549278",
3809
+ "549323",
3810
+ "549329",
3811
+ "549459",
3812
+ "549558",
3813
+ "549628",
3814
+ "549684",
3815
+ "5517",
3816
+ "5518",
3817
+ "552086",
3818
+ "552783",
3819
+ "552802",
3820
+ "552805",
3821
+ "552807",
3822
+ "552808",
3823
+ "552815",
3824
+ "552822",
3825
+ "552825",
3826
+ "552827",
3827
+ "552832",
3828
+ "552833",
3829
+ "552834",
3830
+ "553222",
3831
+ "553227",
3832
+ "553231",
3833
+ "553233",
3834
+ "553234",
3835
+ "553236",
3836
+ "553241",
3837
+ "553246",
3838
+ "553247",
3839
+ "553250",
3840
+ "553252",
3841
+ "5534",
3842
+ "5538",
3843
+ "553823",
3844
+ "5539",
3845
+ "5540",
3846
+ "55404",
3847
+ "55409",
3848
+ "5542",
3849
+ "5569",
3850
+ "5570",
3851
+ "557121",
3852
+ "557160",
3853
+ "5597",
3854
+ "559954",
3855
+ "56097",
3856
+ "56201",
3857
+ "5623",
3858
+ "56230",
3859
+ "56232",
3860
+ "56233",
3861
+ "56235",
3862
+ "56239",
3863
+ "56240",
3864
+ "56241",
3865
+ "56245",
3866
+ "56247",
3867
+ "5626",
3868
+ "5651",
3869
+ "565379",
3870
+ "5658",
3871
+ "5667",
3872
+ "5668",
3873
+ "5669",
3874
+ "568107",
3875
+ "568110",
3876
+ "568149",
3877
+ "568631",
3878
+ "569",
3879
+ "569011",
3880
+ "5692",
3881
+ "5694",
3882
+ "569486",
3883
+ "5698",
3884
+ "571358",
3885
+ "571371",
3886
+ "5734",
3887
+ "5742",
3888
+ "5743",
3889
+ "57433",
3890
+ "5744",
3891
+ "575",
3892
+ "5765",
3893
+ "5775",
3894
+ "5787",
3895
+ "5788",
3896
+ "579187",
3897
+ "5798",
3898
+ "58139",
3899
+ "5817",
3900
+ "5824",
3901
+ "582432",
3902
+ "582434",
3903
+ "5830",
3904
+ "5832",
3905
+ "5840",
3906
+ "5841",
3907
+ "588386",
3908
+ "5884",
3909
+ "58840",
3910
+ "5889",
3911
+ "5893",
3912
+ "5894",
3913
+ "5895",
3914
+ "5896",
3915
+ "5897",
3916
+ "5898",
3917
+ "5899",
3918
+ "593071",
3919
+ "593072",
3920
+ "593073",
3921
+ "593074",
3922
+ "593076",
3923
+ "593077",
3924
+ "593078",
3925
+ "593079",
3926
+ "593080",
3927
+ "593083",
3928
+ "593086",
3929
+ "593087",
3930
+ "593088",
3931
+ "593089",
3932
+ "593091",
3933
+ "593092",
3934
+ "593093",
3935
+ "593094",
3936
+ "593095",
3937
+ "593096",
3938
+ "593098",
3939
+ "593101",
3940
+ "593102",
3941
+ "593103",
3942
+ "593104",
3943
+ "593105",
3944
+ "593107",
3945
+ "593108",
3946
+ "593109",
3947
+ "593110",
3948
+ "593111",
3949
+ "593112",
3950
+ "593113",
3951
+ "593114",
3952
+ "593115",
3953
+ "593116",
3954
+ "593117",
3955
+ "593118",
3956
+ "593120",
3957
+ "593121",
3958
+ "593123",
3959
+ "593124",
3960
+ "593126",
3961
+ "593127",
3962
+ "593128",
3963
+ "593129",
3964
+ "593130",
3965
+ "593131",
3966
+ "593132",
3967
+ "593134",
3968
+ "593136",
3969
+ "593383",
3970
+ "593384",
3971
+ "593385",
3972
+ "593386",
3973
+ "593387",
3974
+ "59375",
3975
+ "59377",
3976
+ "59413",
3977
+ "59439",
3978
+ "596193",
3979
+ "596194",
3980
+ "596195",
3981
+ "596197",
3982
+ "596199",
3983
+ "596201",
3984
+ "596202",
3985
+ "596203",
3986
+ "596204",
3987
+ "596205",
3988
+ "596207",
3989
+ "596208",
3990
+ "596209",
3991
+ "596210",
3992
+ "596211",
3993
+ "596212",
3994
+ "596213",
3995
+ "596214",
3996
+ "596215",
3997
+ "596216",
3998
+ "596218",
3999
+ "596219",
4000
+ "596220",
4001
+ "596221",
4002
+ "596222",
4003
+ "596226",
4004
+ "596227",
4005
+ "596228",
4006
+ "596229",
4007
+ "596230",
4008
+ "596231",
4009
+ "596232",
4010
+ "596233",
4011
+ "596234",
4012
+ "596235",
4013
+ "596237",
4014
+ "596238",
4015
+ "596239",
4016
+ "596240",
4017
+ "596241",
4018
+ "596243",
4019
+ "596245",
4020
+ "596246",
4021
+ "596247",
4022
+ "596248",
4023
+ "5964",
4024
+ "596532",
4025
+ "596670",
4026
+ "596672",
4027
+ "596673",
4028
+ "596675",
4029
+ "596676",
4030
+ "596677",
4031
+ "596679",
4032
+ "5967",
4033
+ "596705",
4034
+ "5968",
4035
+ "5969",
4036
+ "597",
4037
+ "5970",
4038
+ "5971",
4039
+ "5974",
4040
+ "599323",
4041
+ "5994",
4042
+ "599439",
4043
+ "6",
4044
+ "6000",
4045
+ "60031",
4046
+ "6015",
4047
+ "6018",
4048
+ "6025",
4049
+ "6026",
4050
+ "6027",
4051
+ "6028",
4052
+ "6029",
4053
+ "6030",
4054
+ "6031",
4055
+ "6032",
4056
+ "603363",
4057
+ "6034",
4058
+ "6036",
4059
+ "6037",
4060
+ "6038",
4061
+ "6039",
4062
+ "6040",
4063
+ "6041",
4064
+ "6042",
4065
+ "6043",
4066
+ "6044",
4067
+ "6045",
4068
+ "6046",
4069
+ "6047",
4070
+ "6048",
4071
+ "6049",
4072
+ "6050",
4073
+ "60500",
4074
+ "6051",
4075
+ "6052",
4076
+ "6053",
4077
+ "6054",
4078
+ "6055",
4079
+ "6056",
4080
+ "6057",
4081
+ "6058",
4082
+ "6059",
4083
+ "6060",
4084
+ "6061",
4085
+ "6062",
4086
+ "6063",
4087
+ "6064",
4088
+ "6065",
4089
+ "6066",
4090
+ "6067",
4091
+ "6068",
4092
+ "6069",
4093
+ "6070",
4094
+ "6071",
4095
+ "6072",
4096
+ "6073",
4097
+ "6074",
4098
+ "6075",
4099
+ "6076",
4100
+ "6077",
4101
+ "6078",
4102
+ "607864",
4103
+ "6079",
4104
+ "6080",
4105
+ "6081",
4106
+ "6082",
4107
+ "6083",
4108
+ "6084",
4109
+ "6085",
4110
+ "6086",
4111
+ "609",
4112
+ "6099",
4113
+ "610",
4114
+ "6100",
4115
+ "6101",
4116
+ "61013",
4117
+ "61014",
4118
+ "61015",
4119
+ "61016",
4120
+ "61017",
4121
+ "61018",
4122
+ "61019",
4123
+ "6102",
4124
+ "61020",
4125
+ "61021",
4126
+ "61022",
4127
+ "61023",
4128
+ "61024",
4129
+ "61025",
4130
+ "61026",
4131
+ "61027",
4132
+ "61028",
4133
+ "6103",
4134
+ "61030",
4135
+ "61031",
4136
+ "61032",
4137
+ "61033",
4138
+ "61034",
4139
+ "61035",
4140
+ "61036",
4141
+ "61037",
4142
+ "61038",
4143
+ "61039",
4144
+ "6104",
4145
+ "61040",
4146
+ "61041",
4147
+ "61042",
4148
+ "61043",
4149
+ "61044",
4150
+ "6105",
4151
+ "6106",
4152
+ "6107",
4153
+ "6108",
4154
+ "611",
4155
+ "6110",
4156
+ "611148",
4157
+ "6112",
4158
+ "6113",
4159
+ "6114",
4160
+ "6128",
4161
+ "6130",
4162
+ "6131",
4163
+ "61383",
4164
+ "61384",
4165
+ "61385",
4166
+ "61386",
4167
+ "614",
4168
+ "6148",
4169
+ "61480",
4170
+ "61624",
4171
+ "6184",
4172
+ "6195",
4173
+ "62044",
4174
+ "62045",
4175
+ "6206",
4176
+ "6207",
4177
+ "6209",
4178
+ "6210",
4179
+ "6211",
4180
+ "6212",
4181
+ "6213",
4182
+ "6214",
4183
+ "6215",
4184
+ "6217",
4185
+ "6218",
4186
+ "6219",
4187
+ "6220",
4188
+ "6227",
4189
+ "6235",
4190
+ "6242",
4191
+ "6246",
4192
+ "6252",
4193
+ "6260",
4194
+ "6262",
4195
+ "6266",
4196
+ "6283",
4197
+ "6291",
4198
+ "6292",
4199
+ "6293",
4200
+ "6294",
4201
+ "6295",
4202
+ "6296",
4203
+ "6297",
4204
+ "6298",
4205
+ "6299",
4206
+ "6302",
4207
+ "6321",
4208
+ "6322",
4209
+ "6323",
4210
+ "6352",
4211
+ "6356",
4212
+ "6367",
4213
+ "6373",
4214
+ "6384",
4215
+ "6385",
4216
+ "6386",
4217
+ "6387",
4218
+ "63876",
4219
+ "6388",
4220
+ "6389",
4221
+ "6409",
4222
+ "64093",
4223
+ "6411",
4224
+ "6412",
4225
+ "6422",
4226
+ "64603",
4227
+ "6466",
4228
+ "64793",
4229
+ "64794",
4230
+ "64797",
4231
+ "64799",
4232
+ "64800",
4233
+ "64802",
4234
+ "64804",
4235
+ "650",
4236
+ "6500",
4237
+ "6505",
4238
+ "6506",
4239
+ "6509",
4240
+ "6511",
4241
+ "6512",
4242
+ "6513",
4243
+ "6516",
4244
+ "6517",
4245
+ "6518",
4246
+ "652",
4247
+ "6520",
4248
+ "6522",
4249
+ "6525",
4250
+ "6526",
4251
+ "6527",
4252
+ "6528",
4253
+ "65501",
4254
+ "65504",
4255
+ "65514",
4256
+ "65516",
4257
+ "65520",
4258
+ "6560",
4259
+ "6561",
4260
+ "6562",
4261
+ "6563",
4262
+ "65636",
4263
+ "6565",
4264
+ "6566",
4265
+ "6569",
4266
+ "6571",
4267
+ "65847",
4268
+ "65848",
4269
+ "6592",
4270
+ "6594",
4271
+ "6596",
4272
+ "6601",
4273
+ "6602",
4274
+ "66263",
4275
+ "6627",
4276
+ "6630",
4277
+ "6633",
4278
+ "664",
4279
+ "6660",
4280
+ "6661",
4281
+ "6662",
4282
+ "6663",
4283
+ "6664",
4284
+ "6665",
4285
+ "6679",
4286
+ "6686",
4287
+ "6693",
4288
+ "6694",
4289
+ "6695",
4290
+ "6723",
4291
+ "6724",
4292
+ "6726",
4293
+ "6729",
4294
+ "67301",
4295
+ "67303",
4296
+ "67305",
4297
+ "67306",
4298
+ "67307",
4299
+ "67310",
4300
+ "67313",
4301
+ "67315",
4302
+ "67317",
4303
+ "6736",
4304
+ "6738",
4305
+ "6755",
4306
+ "67664",
4307
+ "6769",
4308
+ "679",
4309
+ "6811",
4310
+ "6840",
4311
+ "6894",
4312
+ "6901",
4313
+ "6902",
4314
+ "6903",
4315
+ "6905",
4316
+ "6907",
4317
+ "6909",
4318
+ "6912",
4319
+ "6916",
4320
+ "6918",
4321
+ "6920",
4322
+ "6921",
4323
+ "6925",
4324
+ "6926",
4325
+ "6927",
4326
+ "6928",
4327
+ "6929",
4328
+ "6930",
4329
+ "6934",
4330
+ "6935",
4331
+ "6937",
4332
+ "6938",
4333
+ "6939",
4334
+ "6940",
4335
+ "6941",
4336
+ "6942",
4337
+ "6954",
4338
+ "6955",
4339
+ "69557",
4340
+ "6956",
4341
+ "6957",
4342
+ "6959",
4343
+ "6960",
4344
+ "6961",
4345
+ "6962",
4346
+ "6965",
4347
+ "6983",
4348
+ "6985",
4349
+ "6986",
4350
+ "6987",
4351
+ "6988",
4352
+ "6991",
4353
+ "6999",
4354
+ "7003",
4355
+ "7005",
4356
+ "7006",
4357
+ "7007",
4358
+ "7023",
4359
+ "7027",
4360
+ "7028",
4361
+ "7034",
4362
+ "7038",
4363
+ "7041",
4364
+ "7043",
4365
+ "7050",
4366
+ "7052",
4367
+ "7055",
4368
+ "7056",
4369
+ "7057",
4370
+ "7058",
4371
+ "7060",
4372
+ "7075",
4373
+ "7076",
4374
+ "7094",
4375
+ "7127",
4376
+ "7128",
4377
+ "7129",
4378
+ "7133",
4379
+ "7134",
4380
+ "7136",
4381
+ "71376",
4382
+ "71378",
4383
+ "7138",
4384
+ "71382",
4385
+ "7139",
4386
+ "7140",
4387
+ "71414",
4388
+ "7145",
4389
+ "7147",
4390
+ "7148",
4391
+ "7149",
4392
+ "7150",
4393
+ "7156",
4394
+ "7157",
4395
+ "7158",
4396
+ "7159",
4397
+ "7160",
4398
+ "7161",
4399
+ "7162",
4400
+ "7163",
4401
+ "7171",
4402
+ "7174",
4403
+ "7175",
4404
+ "7192",
4405
+ "7194",
4406
+ "7195",
4407
+ "7196",
4408
+ "7198",
4409
+ "7215",
4410
+ "7220",
4411
+ "7222",
4412
+ "7226",
4413
+ "7227",
4414
+ "7228",
4415
+ "7230",
4416
+ "7231",
4417
+ "7232",
4418
+ "7233",
4419
+ "7234",
4420
+ "7235",
4421
+ "7236",
4422
+ "72401",
4423
+ "72404",
4424
+ "72407",
4425
+ "72408",
4426
+ "72409",
4427
+ "7242",
4428
+ "7245",
4429
+ "7251",
4430
+ "7253",
4431
+ "7254",
4432
+ "7255",
4433
+ "7256",
4434
+ "7257",
4435
+ "7259",
4436
+ "7260",
4437
+ "7261",
4438
+ "7262",
4439
+ "7263",
4440
+ "7264",
4441
+ "7265",
4442
+ "7269",
4443
+ "7270",
4444
+ "7272",
4445
+ "7279",
4446
+ "7280",
4447
+ "7281",
4448
+ "7282",
4449
+ "7283",
4450
+ "7284",
4451
+ "7285",
4452
+ "7286",
4453
+ "7287",
4454
+ "7289",
4455
+ "7290",
4456
+ "7291",
4457
+ "7292",
4458
+ "7293",
4459
+ "7295",
4460
+ "7296",
4461
+ "7297",
4462
+ "7298",
4463
+ "7299",
4464
+ "7302",
4465
+ "7303",
4466
+ "7305",
4467
+ "7306",
4468
+ "7307",
4469
+ "7308",
4470
+ "7309",
4471
+ "7310",
4472
+ "7312",
4473
+ "7313",
4474
+ "7315",
4475
+ "7316",
4476
+ "7317",
4477
+ "7318",
4478
+ "7319",
4479
+ "7320",
4480
+ "7321",
4481
+ "7322",
4482
+ "7323",
4483
+ "7324",
4484
+ "7329",
4485
+ "7330",
4486
+ "7349",
4487
+ "7351",
4488
+ "7352",
4489
+ "7353",
4490
+ "7354",
4491
+ "7355",
4492
+ "7356",
4493
+ "7357",
4494
+ "7358",
4495
+ "7359",
4496
+ "7366",
4497
+ "7368",
4498
+ "7369",
4499
+ "7370",
4500
+ "73702",
4501
+ "7372",
4502
+ "7378",
4503
+ "7379",
4504
+ "7380",
4505
+ "7381",
4506
+ "7382",
4507
+ "7383",
4508
+ "7384",
4509
+ "7395",
4510
+ "7397",
4511
+ "7399",
4512
+ "7401",
4513
+ "7405",
4514
+ "7408",
4515
+ "7409",
4516
+ "7411",
4517
+ "7412",
4518
+ "7414",
4519
+ "7443",
4520
+ "7444",
4521
+ "7450",
4522
+ "7460",
4523
+ "7476",
4524
+ "75035",
4525
+ "75232",
4526
+ "7535",
4527
+ "7536",
4528
+ "75363",
4529
+ "7537",
4530
+ "7538",
4531
+ "7539",
4532
+ "7540",
4533
+ "7541",
4534
+ "7542",
4535
+ "7543",
4536
+ "7544",
4537
+ "7546",
4538
+ "7549",
4539
+ "7551",
4540
+ "7552",
4541
+ "7553",
4542
+ "7554",
4543
+ "7555",
4544
+ "7556",
4545
+ "7557",
4546
+ "7559",
4547
+ "756",
4548
+ "7564",
4549
+ "7566",
4550
+ "7567",
4551
+ "7568",
4552
+ "7569",
4553
+ "7572",
4554
+ "7573",
4555
+ "7574",
4556
+ "7575",
4557
+ "7578",
4558
+ "7580",
4559
+ "7581",
4560
+ "7582",
4561
+ "7583",
4562
+ "7584",
4563
+ "7585",
4564
+ "7586",
4565
+ "7587",
4566
+ "7590",
4567
+ "7592",
4568
+ "7593",
4569
+ "7594",
4570
+ "7595",
4571
+ "7596",
4572
+ "7597",
4573
+ "7598",
4574
+ "7599",
4575
+ "7600",
4576
+ "7601",
4577
+ "7606",
4578
+ "7607",
4579
+ "7608",
4580
+ "7609",
4581
+ "7610",
4582
+ "7611",
4583
+ "7612",
4584
+ "7613",
4585
+ "7614",
4586
+ "7624",
4587
+ "7633",
4588
+ "7636",
4589
+ "7638",
4590
+ "765",
4591
+ "7650",
4592
+ "7651",
4593
+ "7652",
4594
+ "7653",
4595
+ "7654",
4596
+ "7655",
4597
+ "7656",
4598
+ "7657",
4599
+ "7659",
4600
+ "7660",
4601
+ "7661",
4602
+ "7664",
4603
+ "7666",
4604
+ "7667",
4605
+ "7668",
4606
+ "7669",
4607
+ "7670",
4608
+ "7686",
4609
+ "7687",
4610
+ "7692",
4611
+ "7696",
4612
+ "7698",
4613
+ "7699",
4614
+ "770",
4615
+ "7700",
4616
+ "7701",
4617
+ "7702",
4618
+ "7705",
4619
+ "77050",
4620
+ "77052",
4621
+ "7706",
4622
+ "7707",
4623
+ "7708",
4624
+ "7709",
4625
+ "7710",
4626
+ "7711",
4627
+ "7712",
4628
+ "7713",
4629
+ "7715",
4630
+ "7716",
4631
+ "7717",
4632
+ "7718",
4633
+ "7719",
4634
+ "7720",
4635
+ "7721",
4636
+ "7722",
4637
+ "7724",
4638
+ "7731",
4639
+ "7732",
4640
+ "7734",
4641
+ "7735",
4642
+ "7741",
4643
+ "7768",
4644
+ "77756",
4645
+ "7791",
4646
+ "78409",
4647
+ "78410",
4648
+ "78411",
4649
+ "78412",
4650
+ "7871",
4651
+ "7884",
4652
+ "789",
4653
+ "79",
4654
+ "790",
4655
+ "79137",
4656
+ "7964",
4657
+ "7965",
4658
+ "7967",
4659
+ "7968",
4660
+ "7969",
4661
+ "7970",
4662
+ "7971",
4663
+ "7974",
4664
+ "7975",
4665
+ "7976",
4666
+ "7979",
4667
+ "7980",
4668
+ "7989",
4669
+ "7992",
4670
+ "7993",
4671
+ "79937",
4672
+ "7994",
4673
+ "79945",
4674
+ "79947",
4675
+ "79948",
4676
+ "79949",
4677
+ "7995",
4678
+ "7996",
4679
+ "8010",
4680
+ "8014",
4681
+ "8015",
4682
+ "8016",
4683
+ "8017",
4684
+ "8018",
4685
+ "8019",
4686
+ "8020",
4687
+ "8022",
4688
+ "8023",
4689
+ "8024",
4690
+ "8025",
4691
+ "8026",
4692
+ "8027",
4693
+ "8028",
4694
+ "80479",
4695
+ "8057",
4696
+ "80721",
4697
+ "80968",
4698
+ "81",
4699
+ "81494",
4700
+ "8207",
4701
+ "8208",
4702
+ "8209",
4703
+ "8210",
4704
+ "8212",
4705
+ "8213",
4706
+ "82210",
4707
+ "8225",
4708
+ "8227",
4709
+ "8228",
4710
+ "8232",
4711
+ "8233",
4712
+ "8234",
4713
+ "8236",
4714
+ "8237",
4715
+ "8238",
4716
+ "82992",
4717
+ "83065",
4718
+ "8313",
4719
+ "8316",
4720
+ "8317",
4721
+ "8318",
4722
+ "8319",
4723
+ "8320",
4724
+ "8321",
4725
+ "8323",
4726
+ "8324",
4727
+ "8329",
4728
+ "8358",
4729
+ "8367",
4730
+ "8371",
4731
+ "8378",
4732
+ "8379",
4733
+ "8382",
4734
+ "8413",
4735
+ "8414",
4736
+ "8415",
4737
+ "8416",
4738
+ "8417",
4739
+ "8418",
4740
+ "8419",
4741
+ "8421",
4742
+ "8422",
4743
+ "8423",
4744
+ "84352",
4745
+ "84403",
4746
+ "8453",
4747
+ "85",
4748
+ "8519",
4749
+ "85590",
4750
+ "858",
4751
+ "8590",
4752
+ "8610",
4753
+ "86246",
4754
+ "8644",
4755
+ "8664",
4756
+ "8670",
4757
+ "8671",
4758
+ "8677",
4759
+ "86815",
4760
+ "8712",
4761
+ "8713",
4762
+ "87136",
4763
+ "87137",
4764
+ "8714",
4765
+ "8724",
4766
+ "8755",
4767
+ "878",
4768
+ "8790",
4769
+ "8791",
4770
+ "8792",
4771
+ "8793",
4772
+ "8794",
4773
+ "8795",
4774
+ "8796",
4775
+ "8799",
4776
+ "8800",
4777
+ "8801",
4778
+ "8802",
4779
+ "8803",
4780
+ "8804",
4781
+ "881",
4782
+ "88286",
4783
+ "88287",
4784
+ "8841",
4785
+ "8852",
4786
+ "8892",
4787
+ "8893",
4788
+ "8894",
4789
+ "8898",
4790
+ "8899",
4791
+ "8908",
4792
+ "89186",
4793
+ "893",
4794
+ "9005",
4795
+ "9006",
4796
+ "9034",
4797
+ "9035",
4798
+ "90440",
4799
+ "90442",
4800
+ "90443",
4801
+ "9049",
4802
+ "9050",
4803
+ "9051",
4804
+ "9052",
4805
+ "9053",
4806
+ "9054",
4807
+ "9055",
4808
+ "9056",
4809
+ "90630",
4810
+ "90751",
4811
+ "9083",
4812
+ "9087",
4813
+ "911",
4814
+ "91162",
4815
+ "9118",
4816
+ "912",
4817
+ "9121",
4818
+ "91259",
4819
+ "91260",
4820
+ "91261",
4821
+ "91277",
4822
+ "9153",
4823
+ "9165",
4824
+ "91882",
4825
+ "9191",
4826
+ "9199",
4827
+ "9209",
4828
+ "9212",
4829
+ "92213",
4830
+ "9228",
4831
+ "9247",
4832
+ "9249",
4833
+ "9269",
4834
+ "92796",
4835
+ "92825",
4836
+ "92829",
4837
+ "9297",
4838
+ "9299",
4839
+ "9324",
4840
+ "9326",
4841
+ "9328",
4842
+ "9339",
4843
+ "9341",
4844
+ "9343",
4845
+ "9344",
4846
+ "9345",
4847
+ "9346",
4848
+ "938",
4849
+ "9399",
4850
+ "940",
4851
+ "94033",
4852
+ "9411",
4853
+ "9412",
4854
+ "9415",
4855
+ "9435",
4856
+ "9448",
4857
+ "9455",
4858
+ "9456",
4859
+ "9468",
4860
+ "9469",
4861
+ "947",
4862
+ "9472",
4863
+ "9490",
4864
+ "9491",
4865
+ "9493",
4866
+ "9496",
4867
+ "9518",
4868
+ "95280",
4869
+ "95303",
4870
+ "9584",
4871
+ "9621",
4872
+ "9622",
4873
+ "9639",
4874
+ "9642",
4875
+ "9649",
4876
+ "96879",
4877
+ "9693",
4878
+ "9696",
4879
+ "9704",
4880
+ "9709",
4881
+ "9723",
4882
+ "9747",
4883
+ "9773",
4884
+ "9792",
4885
+ "9793",
4886
+ "9808",
4887
+ "9816",
4888
+ "9820",
4889
+ "9824",
4890
+ "9828",
4891
+ "98489",
4892
+ "98490",
4893
+ "9868",
4894
+ "9884",
4895
+ "9894",
4896
+ "9895",
4897
+ "9896",
4898
+ "9898",
4899
+ "9905",
4900
+ "9909",
4901
+ "9910",
4902
+ "99927",
4903
+ "99930",
4904
+ "9998"
4905
+ ]
property_prediction/train/metadata.json ADDED
The diff for this file is too large to render. See raw diff
 
property_prediction/train/recipes.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6d332596cbdd4156cb3d96c63f99093243b545699a311dd834c7102fca03e7d
3
+ size 23320807
property_prediction/train/targets.json ADDED
The diff for this file is too large to render. See raw diff
 
raw_html.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d4df8b392352f90737c8338762d3920d5c6ee21cc7343cb2502a0b802c621e1
3
+ size 283040109
source_records/.DS_Store ADDED
Binary file (6.15 kB). View file
 
source_records/README.md ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Source Records
2
+
3
+ This folder stores supplemental source-side information for the packaged benchmark samples.
4
+
5
+ ## Contents
6
+
7
+ - `by_id/<id>.json`: one merged JSON record per packaged sample ID.
8
+ - `html_metadata.json`: filtered HTML-derived metadata for packaged sample IDs.
9
+ - `summary.json`: coverage summary for the supplemental export.
10
+
11
+ ## Why this exists
12
+
13
+ The canonical benchmark splits are intentionally task-oriented. They are good for training and evaluation, but some users may want richer provenance fields from the original Glazy pages, such as:
14
+
15
+ - page title
16
+ - author name
17
+ - author URL
18
+ - long-form description
19
+ - page-level status
20
+ - HTML-derived UMF and related ratios
21
+
22
+ The per-sample JSON files expose these fields without forcing users to parse the raw HTML themselves.
23
+
24
+ ## Relationship to canonical benchmark files
25
+
26
+ These files are supplemental. The benchmark-facing train/test splits remain the authoritative interface for evaluation.
27
+
28
+ ## Reader script
29
+
30
+ Use `../tools/read_source_record.py` to inspect the packaged source-side data without writing your own loader.
31
+
32
+ The script supports both quick one-off inspection and small batch exports.
33
+
34
+ ### What it can do
35
+
36
+ - Read one or many sample IDs.
37
+ - Read IDs from a text file.
38
+ - Return the full merged sample record.
39
+ - Return shortcuts such as `title`, `author`, `description`, `umf`, and `raw_html_path`.
40
+ - Drill into nested fields with a dotted `--path` lookup.
41
+ - Preview the raw HTML directly, with optional tag stripping.
42
+ - Export results as `json`, `jsonl`, or plain text.
43
+ - Save output to a file instead of stdout.
44
+
45
+ ### Common examples
46
+
47
+ Quick summary:
48
+
49
+ ```bash
50
+ python huggingface/tools/read_source_record.py --summary
51
+ ```
52
+
53
+ List the first 10 packaged sample IDs:
54
+
55
+ ```bash
56
+ python huggingface/tools/read_source_record.py --list-sample-ids 10
57
+ ```
58
+
59
+ Read the full merged record for one sample:
60
+
61
+ ```bash
62
+ python huggingface/tools/read_source_record.py --sample-id 100018 --field full
63
+ ```
64
+
65
+ Read a convenience field:
66
+
67
+ ```bash
68
+ python huggingface/tools/read_source_record.py --sample-id 100018 --field umf
69
+ python huggingface/tools/read_source_record.py --sample-id 100018 --field html_metadata
70
+ python huggingface/tools/read_source_record.py --sample-id 100018 --field title
71
+ python huggingface/tools/read_source_record.py --sample-id 100018 --field raw_html_path
72
+ ```
73
+
74
+ Read a nested path inside the selected field:
75
+
76
+ ```bash
77
+ python huggingface/tools/read_source_record.py --sample-id 100018 --field full --path property_prediction.test.recipe.umf
78
+ python huggingface/tools/read_source_record.py --sample-id 100018 --field full --path html_metadata.title
79
+ ```
80
+
81
+ Preview the raw HTML:
82
+
83
+ ```bash
84
+ python huggingface/tools/read_source_record.py --sample-id 100018 --html-preview-chars 500
85
+ python huggingface/tools/read_source_record.py --sample-id 100018 --html-preview-chars 500 --html-preview-strip-tags
86
+ ```
87
+
88
+ Read multiple samples at once:
89
+
90
+ ```bash
91
+ python huggingface/tools/read_source_record.py --sample-id 100018 10009 10023 --field title
92
+ ```
93
+
94
+ Read sample IDs from a file:
95
+
96
+ ```bash
97
+ python huggingface/tools/read_source_record.py --sample-id-file sample_ids.txt --field raw_html_path --output-format jsonl
98
+ ```
99
+
100
+ Export to a file:
101
+
102
+ ```bash
103
+ python huggingface/tools/read_source_record.py --sample-id 100018 10009 --field full --output-format jsonl --output out/source_records.jsonl
104
+ ```
105
+
106
+ ### Notes
107
+
108
+ - `--field umf` returns the first available UMF found in the merged sample record, preferring split-aligned recipe data and then HTML-derived metadata.
109
+ - `--path` is applied after `--field` selection, so `--field full --path image_generation.train.metadata.image_path` works as expected.
110
+ - For batch usage, `jsonl` is usually the easiest format to consume downstream.
source_records/by_id.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4e6d13739357c2ccf506fb21530928bb7546849eb74974ad28e8ef8557d2e49
3
+ size 42204886
source_records/html_metadata.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a621211d3e867aa48dacbbd7c3b02b057097b32113c4d0cbf6814fb0fb0f3e3
3
+ size 36608506
source_records/summary.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_unique_samples": 21691,
3
+ "copied_raw_html_count": 21691,
4
+ "missing_raw_html_count": 0,
5
+ "missing_raw_html_ids": [],
6
+ "html_metadata_count": 21684,
7
+ "source_records_count": 21691
8
+ }
tools/read_source_record.py ADDED
@@ -0,0 +1,352 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Convenience reader for the supplemental Hugging Face source bundle.
2
+
3
+ This script lives inside the published `huggingface/` folder so users can read
4
+ source-side data directly from the exported package without depending on the
5
+ rest of the repository layout.
6
+ """
7
+
8
+ import argparse
9
+ import json
10
+ import re
11
+ import sys
12
+ from pathlib import Path
13
+
14
+
15
+ HF_ROOT = Path(__file__).resolve().parents[1]
16
+ ROOT = HF_ROOT.parent
17
+ SOURCE_RECORDS_DIR = HF_ROOT / "source_records"
18
+ SOURCE_RECORDS_BY_ID_DIR = SOURCE_RECORDS_DIR / "by_id"
19
+ SUMMARY_PATH = SOURCE_RECORDS_DIR / "summary.json"
20
+
21
+
22
+ def flatten_sample_ids(sample_id_args):
23
+ sample_ids = []
24
+ for item in sample_id_args or []:
25
+ sample_ids.extend(item)
26
+ return [str(sample_id) for sample_id in sample_ids]
27
+
28
+
29
+ def load_json(path: Path):
30
+ with open(path, "r", encoding="utf-8") as handle:
31
+ return json.load(handle)
32
+
33
+
34
+ def load_sample_ids_from_file(path: Path):
35
+ sample_ids = []
36
+ with open(path, "r", encoding="utf-8") as handle:
37
+ for line in handle:
38
+ sample_id = line.strip()
39
+ if sample_id:
40
+ sample_ids.append(sample_id)
41
+ return sample_ids
42
+
43
+
44
+ def strip_html_tags(text: str):
45
+ text = re.sub(r"<script.*?</script>", " ", text, flags=re.IGNORECASE | re.DOTALL)
46
+ text = re.sub(r"<style.*?</style>", " ", text, flags=re.IGNORECASE | re.DOTALL)
47
+ text = re.sub(r"<[^>]+>", " ", text)
48
+ text = re.sub(r"\s+", " ", text)
49
+ return text.strip()
50
+
51
+
52
+ def walk_path(value, dotted_path: str):
53
+ current = value
54
+ for part in dotted_path.split("."):
55
+ if isinstance(current, dict):
56
+ if part not in current:
57
+ raise KeyError(part)
58
+ current = current[part]
59
+ continue
60
+ if isinstance(current, list):
61
+ index = int(part)
62
+ current = current[index]
63
+ continue
64
+ raise KeyError(part)
65
+ return current
66
+
67
+
68
+ def first_nonempty(values):
69
+ for value in values:
70
+ if value not in (None, "", [], {}):
71
+ return value
72
+ return None
73
+
74
+
75
+ def extract_preferred_umf(record):
76
+ candidates = []
77
+ for dataset_name in ("property_prediction", "image_generation"):
78
+ dataset_block = record.get(dataset_name, {})
79
+ for split_name in ("train", "test"):
80
+ split_block = dataset_block.get(split_name)
81
+ if not split_block:
82
+ continue
83
+ recipe = split_block.get("recipe") or {}
84
+ metadata = split_block.get("metadata") or {}
85
+ candidates.append(recipe.get("umf"))
86
+ candidates.append(metadata.get("umf"))
87
+ html_metadata = record.get("html_metadata") or {}
88
+ if isinstance(html_metadata, dict):
89
+ candidates.append(html_metadata.get("umf"))
90
+ return first_nonempty(candidates)
91
+
92
+
93
+ def extract_shortcut(record, field_name: str):
94
+ html_metadata = record.get("html_metadata") or {}
95
+ if field_name == "title":
96
+ return first_nonempty([
97
+ html_metadata.get("title") if isinstance(html_metadata, dict) else None,
98
+ ])
99
+ if field_name == "author":
100
+ return first_nonempty([
101
+ html_metadata.get("author") if isinstance(html_metadata, dict) else None,
102
+ ])
103
+ if field_name == "description":
104
+ return first_nonempty([
105
+ html_metadata.get("description") if isinstance(html_metadata, dict) else None,
106
+ html_metadata.get("notes") if isinstance(html_metadata, dict) else None,
107
+ ])
108
+ if field_name == "umf":
109
+ return extract_preferred_umf(record)
110
+ raise KeyError(field_name)
111
+
112
+
113
+ def parse_args():
114
+ parser = argparse.ArgumentParser(
115
+ description="Read supplemental GlazyBench source-side data from the Hugging Face export."
116
+ )
117
+ parser.add_argument(
118
+ "--sample-id",
119
+ nargs="+",
120
+ action="append",
121
+ help="One or more sample IDs to read from huggingface/source_records/by_id.",
122
+ )
123
+ parser.add_argument(
124
+ "--sample-id-file",
125
+ help="Optional text file with one sample ID per line for batch reading.",
126
+ )
127
+ parser.add_argument(
128
+ "--field",
129
+ choices=[
130
+ "full",
131
+ "memberships",
132
+ "property_prediction",
133
+ "image_generation",
134
+ "html_metadata",
135
+ "raw_html_path",
136
+ "title",
137
+ "author",
138
+ "description",
139
+ "umf",
140
+ ],
141
+ default="full",
142
+ help="Which part of the merged record to print.",
143
+ )
144
+ parser.add_argument(
145
+ "--dataset",
146
+ choices=["property_prediction", "image_generation"],
147
+ help="Optional dataset selector when printing dataset-specific content.",
148
+ )
149
+ parser.add_argument(
150
+ "--split",
151
+ choices=["train", "test"],
152
+ help="Optional split selector when printing dataset-specific content.",
153
+ )
154
+ parser.add_argument(
155
+ "--summary",
156
+ action="store_true",
157
+ help="Print source bundle summary instead of an individual sample.",
158
+ )
159
+ parser.add_argument(
160
+ "--list-sample-ids",
161
+ type=int,
162
+ default=0,
163
+ help="Print the first N sample IDs available in source_records/by_id.",
164
+ )
165
+ parser.add_argument(
166
+ "--list-fields",
167
+ action="store_true",
168
+ help="Print the top-level fields available in a sample record.",
169
+ )
170
+ parser.add_argument(
171
+ "--path",
172
+ help="Optional dotted path lookup inside the selected record value, for example property_prediction.test.recipe.umf.",
173
+ )
174
+ parser.add_argument(
175
+ "--html-preview-chars",
176
+ type=int,
177
+ default=0,
178
+ help="Also print the first N characters of the raw HTML file for the sample.",
179
+ )
180
+ parser.add_argument(
181
+ "--html-preview-strip-tags",
182
+ action="store_true",
183
+ help="When previewing HTML, strip tags into rough plain text.",
184
+ )
185
+ parser.add_argument(
186
+ "--output-format",
187
+ choices=["json", "jsonl", "text"],
188
+ default="json",
189
+ help="Output format for batch or single-sample exports.",
190
+ )
191
+ parser.add_argument(
192
+ "--output",
193
+ help="Optional output file path. If omitted, prints to stdout.",
194
+ )
195
+ parser.add_argument(
196
+ "--compact",
197
+ action="store_true",
198
+ help="Print compact JSON instead of pretty JSON.",
199
+ )
200
+ return parser.parse_args()
201
+
202
+
203
+ def render_json(value, compact: bool):
204
+ if compact:
205
+ return json.dumps(value, ensure_ascii=False, separators=(",", ":"))
206
+ return json.dumps(value, ensure_ascii=False, indent=2)
207
+
208
+
209
+ def write_output(text: str, output_path: str | None):
210
+ if output_path:
211
+ path = Path(output_path)
212
+ path.parent.mkdir(parents=True, exist_ok=True)
213
+ with open(path, "w", encoding="utf-8") as handle:
214
+ handle.write(text)
215
+ return
216
+ print(text)
217
+
218
+
219
+ def list_sample_ids(limit: int):
220
+ sample_ids = sorted(path.stem for path in SOURCE_RECORDS_BY_ID_DIR.glob("*.json"))
221
+ if limit > 0:
222
+ sample_ids = sample_ids[:limit]
223
+ return sample_ids
224
+
225
+
226
+ def get_record(sample_id: str):
227
+ path = SOURCE_RECORDS_BY_ID_DIR / f"{sample_id}.json"
228
+ if not path.exists():
229
+ raise FileNotFoundError(f"Sample record not found: {path}")
230
+ return load_json(path), path
231
+
232
+
233
+ def select_value(record, args):
234
+ if args.field == "full":
235
+ value = record
236
+ elif args.field == "memberships":
237
+ value = record.get("memberships", [])
238
+ elif args.field == "html_metadata":
239
+ value = record.get("html_metadata")
240
+ elif args.field == "raw_html_path":
241
+ raw_relpath = record.get("raw_html_relpath")
242
+ value = None if raw_relpath is None else str(HF_ROOT / raw_relpath)
243
+ elif args.field in {"title", "author", "description", "umf"}:
244
+ value = extract_shortcut(record, args.field)
245
+ else:
246
+ dataset_block = record.get(args.field, {})
247
+ if args.split:
248
+ value = dataset_block.get(args.split)
249
+ elif args.dataset and args.dataset != args.field:
250
+ value = record.get(args.dataset, {})
251
+ else:
252
+ value = dataset_block
253
+ if args.path:
254
+ value = walk_path(value, args.path)
255
+ return value
256
+
257
+
258
+ def maybe_get_html_preview(record, chars: int, strip_tags: bool):
259
+ if chars <= 0:
260
+ return None
261
+ raw_relpath = record.get("raw_html_relpath")
262
+ if raw_relpath is None:
263
+ return "<missing raw html>"
264
+ html_path = HF_ROOT / raw_relpath
265
+ if not html_path.exists():
266
+ return f"<file missing: {html_path}>"
267
+ with open(html_path, "r", encoding="utf-8", errors="ignore") as handle:
268
+ preview = handle.read(chars)
269
+ if strip_tags:
270
+ preview = strip_html_tags(preview)
271
+ return preview
272
+
273
+
274
+ def build_sample_payload(sample_id: str, args):
275
+ record, record_path = get_record(str(sample_id))
276
+
277
+ if args.list_fields:
278
+ payload = {
279
+ "sample_id": str(sample_id),
280
+ "record_path": str(record_path),
281
+ "top_level_fields": sorted(record.keys()),
282
+ "memberships": record.get("memberships", []),
283
+ }
284
+ else:
285
+ value = select_value(record, args)
286
+ payload = {
287
+ "sample_id": str(sample_id),
288
+ "record_path": str(record_path),
289
+ "selected_field": args.field,
290
+ "value": value,
291
+ }
292
+
293
+ html_preview = maybe_get_html_preview(record, args.html_preview_chars, args.html_preview_strip_tags)
294
+ if html_preview is not None:
295
+ payload["raw_html_preview"] = html_preview
296
+ return payload
297
+
298
+
299
+ def render_payloads(payloads, args):
300
+ if args.output_format == "jsonl":
301
+ return "\n".join(render_json(payload, compact=True) for payload in payloads)
302
+ if args.output_format == "text":
303
+ lines = []
304
+ for payload in payloads:
305
+ lines.append(f"sample_id={payload.get('sample_id')}")
306
+ lines.append(f"record_path={payload.get('record_path')}")
307
+ if "selected_field" in payload:
308
+ lines.append(f"selected_field={payload['selected_field']}")
309
+ lines.append(f"value={payload.get('value')}")
310
+ else:
311
+ lines.append(f"top_level_fields={payload.get('top_level_fields')}")
312
+ if "raw_html_preview" in payload:
313
+ lines.append("raw_html_preview=")
314
+ lines.append(str(payload["raw_html_preview"]))
315
+ lines.append("")
316
+ return "\n".join(lines).rstrip()
317
+ if len(payloads) == 1:
318
+ return render_json(payloads[0], args.compact)
319
+ return render_json(payloads, args.compact)
320
+
321
+
322
+ def main():
323
+ args = parse_args()
324
+
325
+ if args.summary:
326
+ write_output(render_json(load_json(SUMMARY_PATH), args.compact), args.output)
327
+ return
328
+
329
+ if args.list_sample_ids:
330
+ payload = {
331
+ "count": len(list_sample_ids(0)),
332
+ "sample_ids": list_sample_ids(args.list_sample_ids),
333
+ }
334
+ write_output(render_json(payload, args.compact), args.output)
335
+ return
336
+
337
+ sample_ids = flatten_sample_ids(args.sample_id)
338
+ if args.sample_id_file:
339
+ sample_ids.extend(load_sample_ids_from_file(Path(args.sample_id_file)))
340
+ if not sample_ids:
341
+ raise SystemExit("Provide --sample-id, --sample-id-file, --summary, or --list-sample-ids.")
342
+
343
+ payloads = [build_sample_payload(sample_id, args) for sample_id in sample_ids]
344
+ write_output(render_payloads(payloads, args), args.output)
345
+
346
+
347
+ if __name__ == "__main__":
348
+ try:
349
+ main()
350
+ except FileNotFoundError as exc:
351
+ print(str(exc), file=sys.stderr)
352
+ raise SystemExit(1)