HongGongLi commited on
Commit
4191e25
·
1 Parent(s): 7a5eac2

Upload parquet dataset files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README_windows_friendly_format.md +36 -0
  2. README_旧版格式参考.md +352 -0
  3. dedup_stats.json +14 -0
  4. grids.json +3827 -0
  5. manifest.json +745 -0
  6. materials_catalog.json +112 -0
  7. merged_stats.json +69 -0
  8. source_manifest.original.json +67 -0
  9. splits/selected_splits.json +7 -0
  10. splits/split_stats.json +13 -0
  11. test/test-00000.parquet +3 -0
  12. test/test-00001.parquet +3 -0
  13. test/test-00002.parquet +3 -0
  14. test/test-00003.parquet +3 -0
  15. test/test-00004.parquet +3 -0
  16. test/test-00005.parquet +3 -0
  17. test/test-00006.parquet +3 -0
  18. test/test-00007.parquet +3 -0
  19. test/test-00008.parquet +3 -0
  20. test/test-00009.parquet +3 -0
  21. test/test-00010.parquet +3 -0
  22. test/test-00011.parquet +3 -0
  23. test/test-00012.parquet +3 -0
  24. test/test-00013.parquet +3 -0
  25. test/test-00014.parquet +3 -0
  26. test/test-00015.parquet +3 -0
  27. train/train-00000.parquet +3 -0
  28. train/train-00001.parquet +3 -0
  29. train/train-00002.parquet +3 -0
  30. train/train-00003.parquet +3 -0
  31. train/train-00004.parquet +3 -0
  32. train/train-00005.parquet +3 -0
  33. train/train-00006.parquet +3 -0
  34. train/train-00007.parquet +3 -0
  35. train/train-00008.parquet +3 -0
  36. train/train-00009.parquet +3 -0
  37. train/train-00010.parquet +3 -0
  38. train/train-00011.parquet +3 -0
  39. train/train-00012.parquet +3 -0
  40. train/train-00013.parquet +3 -0
  41. train/train-00014.parquet +3 -0
  42. train/train-00015.parquet +3 -0
  43. train/train-00016.parquet +3 -0
  44. train/train-00017.parquet +3 -0
  45. train/train-00018.parquet +3 -0
  46. train/train-00019.parquet +3 -0
  47. train/train-00020.parquet +3 -0
  48. train/train-00021.parquet +3 -0
  49. train/train-00022.parquet +3 -0
  50. train/train-00023.parquet +3 -0
README_windows_friendly_format.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Windows-Friendly Prepared Dataset
2
+
3
+ This dataset root is generated from the original `new_data` and keeps the old dataset untouched.
4
+
5
+ ## Goals
6
+
7
+ - reduce file-count and random gzip/json parsing on Windows
8
+ - keep split data already laid out by split
9
+ - keep samples in source shard order so later training can stream sequentially
10
+ - avoid requiring the old `*_refs.npz` indirection during later training
11
+
12
+ ## Layout
13
+
14
+ - `manifest.json`: top-level dataset manifest for the new format
15
+ - `source_manifest.original.json`: copied manifest from the original dataset
16
+ - `grids.json`, `materials_catalog.json`, `merged_stats.json`, `dedup_stats.json`
17
+ - `windows_seq/<split>/manifest.json`
18
+ - `windows_seq/<split>/chunk_xxxxxx_target_field.npy`
19
+ - `windows_seq/<split>/chunk_xxxxxx_meta.npz`
20
+
21
+ ## Chunk schema
22
+
23
+ - `chunk_*_target_field.npy`
24
+ - dtype: `uint16`
25
+ - shape: `[N, 774]`
26
+ - decode later with `float32 = uint16 * 0.001`
27
+ - `chunk_*_meta.npz`
28
+ - fixed-size arrays for sample id, constraints, and structure labels
29
+ - variable-length sequences are padded to `max_layers=24`
30
+
31
+ ## Build config
32
+
33
+ - selected_splits: train, val, test
34
+ - chunk_size: 32768
35
+ - sample_order: source_shard_order
36
+ - recommended later train order: sequential, no extra shuffle
README_旧版格式参考.md ADDED
@@ -0,0 +1,352 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Prepared Training Dataset 使用说明
2
+
3
+ 本目录是已经整理好的统一训练数据集视图,不再是母本生成目录。
4
+
5
+ 公开仓库建议:
6
+ - 保留本说明文档和必要的数据协议说明
7
+ - 不直接提交 `shards/`、`splits/`、大体量 `npz/jsonl.gz` 数据文件
8
+ - 通过环境变量或本地路径在私有环境中挂载真实数据
9
+
10
+ 目标:
11
+ - 直接作为后续主模型训练输入
12
+ - 不再重复做多源合并、跨目录去重、目标场拼接
13
+ - 读取时动态采样条件模式
14
+
15
+ ## 1. 目录结构
16
+
17
+ 本目录下的主要文件:
18
+
19
+ - `manifest.json`
20
+ - 数据集总说明
21
+ - 记录输出根目录、源目录、split 比例、target field 顺序等
22
+ - `grids.json`
23
+ - 固定波长网格
24
+ - target field 的全局布局定义
25
+ - `materials_catalog.json`
26
+ - 14 种材料、角色映射、substrate 选项
27
+ - `merged_stats.json`
28
+ - 合并整理后的整体统计
29
+ - `dedup_stats.json`
30
+ - 跨目录去重统计
31
+ - `shards/`
32
+ - `shard_xxxxxx.jsonl.gz`
33
+ - 每条样本的结构标签、来源、约束、target field 引用
34
+ - `shard_xxxxxx_target_field.npz`
35
+ - 每条样本拼接后的统一目标场,存储格式 `uint16_x1000`
36
+ - `shard_xxxxxx_index.npz`
37
+ - 轻量索引,用于快速生成 split ref
38
+ - `splits/`
39
+ - `train_ids.txt / val_ids.txt / test_ids.txt`
40
+ - `hard_test_ids.txt / ood_test_ids.txt`
41
+ - `train_refs.npz / val_refs.npz / test_refs.npz`
42
+ - 推荐训练时直接用 `*_refs.npz`
43
+
44
+ ## 2. Split 比例
45
+
46
+ 当前整理后的正式 split 比例是:
47
+
48
+ - `train = 80%`
49
+ - `test = 15%`
50
+ - `val = 5%`
51
+
52
+ 额外还有:
53
+
54
+ - `hard_test`
55
+ - `ood_test`
56
+
57
+ 这两个不是从 `test` 中扣除,而是额外评估视图。
58
+
59
+ ## 3. 统一 target field 协议
60
+
61
+ 每条样本的目标场已经被统一拼接成一个一维序列:
62
+
63
+ 1. `visible R`
64
+ 2. `visible T`
65
+ 3. `nir R`
66
+ 4. `nir T`
67
+ 5. `ir E_normal`
68
+
69
+ 固定长度:
70
+
71
+ - `vis_R`: 101
72
+ - `vis_T`: 101
73
+ - `nir_R`: 173
74
+ - `nir_T`: 173
75
+ - `ir_E_normal`: 226
76
+ - 合计:`774`
77
+
78
+ 因此:
79
+
80
+ - `target_field.shape = [774]`
81
+
82
+ 数值存储:
83
+
84
+ - 磁盘上:`uint16_x1000`
85
+ - 读取后:`float32`,范围 `0~1`
86
+
87
+ ## 4. 读取时返回什么
88
+
89
+ 建议统一通过:
90
+
91
+ - `coolhouse3_diffusion/new_dataset_maker/dataset.py`
92
+
93
+ 中的:
94
+
95
+ - `PreparedTrainingDataset`
96
+
97
+ 读取。
98
+
99
+ ### 单条样本返回字段
100
+
101
+ `PreparedTrainingDataset[idx]` 返回:
102
+
103
+ - `sample_id`
104
+ - `target_field`
105
+ - `condition_mask`
106
+ - `objective_weights`
107
+ - `window_ids`
108
+ - `channel_ids`
109
+ - `position_ids`
110
+ - `constraint_field`
111
+ - `structure_labels`
112
+ - `condition_mode`
113
+
114
+ 其中:
115
+
116
+ - `target_field`
117
+ - `float32[774]`
118
+ - `condition_mask`
119
+ - `float32[774]`
120
+ - 1 表示该位置作为已知条件输入
121
+ - `objective_weights`
122
+ - `float32[774]`
123
+ - 默认与 `condition_mask` 同步
124
+ - `window_ids / channel_ids / position_ids`
125
+ - token 级辅助编码字段
126
+ - `constraint_field`
127
+ - 全局约束信息
128
+ - `structure_labels`
129
+ - 监督标签
130
+
131
+ ## 5. 条件模式怎么用
132
+
133
+ 读取时不需要把一个母本样本提前展开成很多份。
134
+
135
+ 正确用法是:
136
+ - 一个样本只存一份完整 `target_field`
137
+ - 训练时动态采样 condition mode
138
+ - 再生成 `condition_mask` 和 `objective_weights`
139
+
140
+ 当前支持:
141
+
142
+ - `full_condition`
143
+ - `vis_only`
144
+ - `nir_only`
145
+ - `ir_only`
146
+ - `vis_nir`
147
+ - `vis_ir`
148
+ - `nir_ir`
149
+ - `custom_channel_subset`
150
+ - `random`
151
+
152
+ 推荐:
153
+
154
+ - 训练阶段:`condition_mode="random"`
155
+ - 验证阶段:固定几种模式分别跑
156
+ - 测试阶段:按任务定义固定模式
157
+
158
+ ## 6. constraint_field 的用法
159
+
160
+ `constraint_field` 是全局条件,不是 token 级光谱。
161
+
162
+ 读取后至少包含:
163
+
164
+ - `allowed_material_mask`
165
+ - `allowed_layer_count_mask`
166
+ - `allow_top_metal`
167
+ - `allow_bottom_metal`
168
+ - `max_metal_layers`
169
+ - `substrate_id`
170
+ - `prototype_family_hint`
171
+
172
+ 说明:
173
+
174
+ - 即使磁盘中是 compact 版本,`dataset.py` 读取时也会自动补齐默认约束
175
+ - 所以后续训练代码统一按完整字段使用即可
176
+
177
+ ## 7. structure_labels 的用法
178
+
179
+ `structure_labels` 里包含:
180
+
181
+ - `layer_count`
182
+ - `material_sequence_ids`
183
+ - `material_role_sequence_ids`
184
+ - `coarse_thickness_bin_ids`
185
+ - `continuous_thickness_values`
186
+
187
+ 建议训练用途:
188
+
189
+ - 离散结构生成器
190
+ - 用 `material_sequence_ids`
191
+ - 用 `coarse_thickness_bin_ids`
192
+ - 连续厚度回归/微调头
193
+ - 用 `continuous_thickness_values`
194
+ - 长度监督
195
+ - 用 `layer_count`
196
+
197
+ 注意:
198
+
199
+ - `material_sequence_ids` 和厚度序列是变长的
200
+ - DataLoader 通常需要自定义 `collate_fn` 做 padding
201
+
202
+ ## 8. 条件场编码器怎么接
203
+
204
+ 建议用:
205
+
206
+ - `coolhouse3_diffusion/new_dataset_maker/encoder.py`
207
+
208
+ 中的:
209
+
210
+ - `ConditionFieldEncoder`
211
+
212
+ 输入:
213
+
214
+ - `target_field`
215
+ - `condition_mask`
216
+ - `objective_weights`
217
+ - `window_ids`
218
+ - `channel_ids`
219
+ - `position_ids`
220
+ - `constraint_field`
221
+
222
+ 输出:
223
+
224
+ - `condition_tokens`
225
+ - `global_condition_embedding`
226
+
227
+ 推荐接法:
228
+
229
+ - `condition_tokens`
230
+ - 给 token 级结构生成器做 cross-attention 或 concat conditioning
231
+ - `global_condition_embedding`
232
+ - 给长度头、全局先验头、或者 decoder 初始态使用
233
+
234
+ ## 9. 最小读取示例
235
+
236
+ ```python
237
+ from torch.utils.data import DataLoader
238
+
239
+ from new_dataset_maker.dataset import PreparedTrainingDataset
240
+
241
+ train_ds = PreparedTrainingDataset(
242
+ dataset_root="./new_data",
243
+ split="train",
244
+ condition_mode="random",
245
+ )
246
+
247
+ sample = train_ds[0]
248
+ print(sample["target_field"].shape) # (774,)
249
+ print(sample["condition_mask"].shape) # (774,)
250
+ print(sample["objective_weights"].shape) # (774,)
251
+ print(sample["structure_labels"]["layer_count"])
252
+
253
+ loader = DataLoader(
254
+ train_ds,
255
+ batch_size=16,
256
+ shuffle=True,
257
+ num_workers=4,
258
+ )
259
+ ```
260
+
261
+ ## 10. 最小 encoder 接入示例
262
+
263
+ ```python
264
+ import torch
265
+
266
+ from new_dataset_maker.dataset import PreparedTrainingDataset
267
+ from new_dataset_maker.encoder import ConditionFieldEncoder
268
+
269
+ ds = PreparedTrainingDataset(
270
+ dataset_root="./new_data",
271
+ split="train",
272
+ condition_mode="vis_ir",
273
+ )
274
+
275
+ sample = ds[0]
276
+
277
+ encoder = ConditionFieldEncoder(
278
+ target_length=sample["target_field"].shape[0],
279
+ num_window_ids=int(sample["window_ids"].max()) + 1,
280
+ num_channel_ids=int(sample["channel_ids"].max()) + 1,
281
+ num_position_ids=int(sample["position_ids"].max()) + 1,
282
+ num_materials=sample["constraint_field"]["allowed_material_mask"].shape[0],
283
+ num_layer_count_ids=sample["constraint_field"]["allowed_layer_count_mask"].shape[0],
284
+ num_substrates=2,
285
+ num_prototypes=8,
286
+ )
287
+
288
+ batch = {
289
+ "target_field": torch.from_numpy(sample["target_field"]).unsqueeze(0),
290
+ "condition_mask": torch.from_numpy(sample["condition_mask"]).unsqueeze(0),
291
+ "objective_weights": torch.from_numpy(sample["objective_weights"]).unsqueeze(0),
292
+ "window_ids": torch.from_numpy(sample["window_ids"]).unsqueeze(0),
293
+ "channel_ids": torch.from_numpy(sample["channel_ids"]).unsqueeze(0),
294
+ "position_ids": torch.from_numpy(sample["position_ids"]).unsqueeze(0),
295
+ "constraint_field": {
296
+ "allowed_material_mask": torch.from_numpy(sample["constraint_field"]["allowed_material_mask"]).unsqueeze(0),
297
+ "allowed_layer_count_mask": torch.from_numpy(sample["constraint_field"]["allowed_layer_count_mask"]).unsqueeze(0),
298
+ "allow_top_metal": torch.tensor([[sample["constraint_field"]["allow_top_metal"]]], dtype=torch.float32),
299
+ "allow_bottom_metal": torch.tensor([[sample["constraint_field"]["allow_bottom_metal"]]], dtype=torch.float32),
300
+ "max_metal_layers": torch.tensor([[sample["constraint_field"]["max_metal_layers"]]], dtype=torch.float32),
301
+ "substrate_id": torch.tensor([sample["constraint_field"]["substrate_id"]], dtype=torch.long),
302
+ "prototype_family_hint": torch.tensor([sample["constraint_field"]["prototype_family_hint"]], dtype=torch.long),
303
+ },
304
+ }
305
+
306
+ condition_tokens, global_condition_embedding = encoder(**batch)
307
+ print(condition_tokens.shape)
308
+ print(global_condition_embedding.shape)
309
+ ```
310
+
311
+ ## 11. 后续主模型训练建议
312
+
313
+ 推荐把训练链路分成这几层:
314
+
315
+ 1. `PreparedTrainingDataset`
316
+ - 负责读取整理后的统一样本协议
317
+ - 动态采样 condition mode
318
+
319
+ 2. `collate_fn`
320
+ - 负责对变长 `material_sequence_ids / thickness` 做 padding
321
+
322
+ 3. `ConditionFieldEncoder`
323
+ - 负责把目标光谱条件和全局约束编码成统一条件表示
324
+
325
+ 4. 主生成器
326
+ - 读取 `condition_tokens + global_condition_embedding`
327
+ - 预测 `layer_count / material_sequence / thickness`
328
+
329
+ ## 12. 不建议的用法
330
+
331
+ 不要这样做:
332
+
333
+ - 不要直接手写解析 `jsonl.gz + npz`
334
+ - 不要把 `condition_mask` 只放到 loss 里而不编码
335
+ - 不要把固定网格重复写进每条样本
336
+ - 不要预先把一个样本展开成多份条件模板写回磁盘
337
+
338
+ 正确做法是:
339
+
340
+ - 训练时动态采样条件模式
341
+ - 统一通过 `dataset.py` 读取
342
+ - 统一通过 `encoder.py` 做条件编码
343
+
344
+ ## 13. 当前 compact 版本说明
345
+
346
+ 为了节省空间,当前 prepared dataset 采用 compact 记录格式:
347
+
348
+ - 元数据:`jsonl.gz`
349
+ - target field:`npz(uint16_x1000)`
350
+ - 固定约束:读取时动态补全
351
+
352
+ 所以看到某些字段没有完整重复存储是正常的,不影响训练。
dedup_stats.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dedup_enabled": true,
3
+ "signature_tolerance_nm": 1.0,
4
+ "unique_count": 19831633,
5
+ "duplicate_count": 228367,
6
+ "source_duplicate_counts": {
7
+ "src_00_generated_dataset_full": 0,
8
+ "src_01_generated_dataset_full_2": 2017,
9
+ "src_02_generated_dataset_full_1": 5113,
10
+ "src_03_generated_dataset_full_2": 7860,
11
+ "src_04_generated_dataset_full_3": 13377,
12
+ "src_05_generated_dataset_full_4": 200000
13
+ }
14
+ }
grids.json ADDED
@@ -0,0 +1,3827 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vis_nm": [
3
+ 380.0,
4
+ 384.0,
5
+ 388.0,
6
+ 392.0,
7
+ 396.0,
8
+ 400.0,
9
+ 404.0,
10
+ 408.0,
11
+ 412.0,
12
+ 416.0,
13
+ 420.0,
14
+ 424.0,
15
+ 428.0,
16
+ 432.0,
17
+ 436.0,
18
+ 440.0,
19
+ 444.0,
20
+ 448.0,
21
+ 452.0,
22
+ 456.0,
23
+ 460.0,
24
+ 464.0,
25
+ 468.0,
26
+ 472.0,
27
+ 476.0,
28
+ 480.0,
29
+ 484.0,
30
+ 488.0,
31
+ 492.0,
32
+ 496.0,
33
+ 500.0,
34
+ 504.0,
35
+ 508.0,
36
+ 512.0,
37
+ 516.0,
38
+ 520.0,
39
+ 524.0,
40
+ 528.0,
41
+ 532.0,
42
+ 536.0,
43
+ 540.0,
44
+ 544.0,
45
+ 548.0,
46
+ 552.0,
47
+ 556.0,
48
+ 560.0,
49
+ 564.0,
50
+ 568.0,
51
+ 572.0,
52
+ 576.0,
53
+ 580.0,
54
+ 584.0,
55
+ 588.0,
56
+ 592.0,
57
+ 596.0,
58
+ 600.0,
59
+ 604.0,
60
+ 608.0,
61
+ 612.0,
62
+ 616.0,
63
+ 620.0,
64
+ 624.0,
65
+ 628.0,
66
+ 632.0,
67
+ 636.0,
68
+ 640.0,
69
+ 644.0,
70
+ 648.0,
71
+ 652.0,
72
+ 656.0,
73
+ 660.0,
74
+ 664.0,
75
+ 668.0,
76
+ 672.0,
77
+ 676.0,
78
+ 680.0,
79
+ 684.0,
80
+ 688.0,
81
+ 692.0,
82
+ 696.0,
83
+ 700.0,
84
+ 704.0,
85
+ 708.0,
86
+ 712.0,
87
+ 716.0,
88
+ 720.0,
89
+ 724.0,
90
+ 728.0,
91
+ 732.0,
92
+ 736.0,
93
+ 740.0,
94
+ 744.0,
95
+ 748.0,
96
+ 752.0,
97
+ 756.0,
98
+ 760.0,
99
+ 764.0,
100
+ 768.0,
101
+ 772.0,
102
+ 776.0,
103
+ 780.0
104
+ ],
105
+ "nir_nm": [
106
+ 780.0,
107
+ 790.0,
108
+ 800.0,
109
+ 810.0,
110
+ 820.0,
111
+ 830.0,
112
+ 840.0,
113
+ 850.0,
114
+ 860.0,
115
+ 870.0,
116
+ 880.0,
117
+ 890.0,
118
+ 900.0,
119
+ 910.0,
120
+ 920.0,
121
+ 930.0,
122
+ 940.0,
123
+ 950.0,
124
+ 960.0,
125
+ 970.0,
126
+ 980.0,
127
+ 990.0,
128
+ 1000.0,
129
+ 1010.0,
130
+ 1020.0,
131
+ 1030.0,
132
+ 1040.0,
133
+ 1050.0,
134
+ 1060.0,
135
+ 1070.0,
136
+ 1080.0,
137
+ 1090.0,
138
+ 1100.0,
139
+ 1110.0,
140
+ 1120.0,
141
+ 1130.0,
142
+ 1140.0,
143
+ 1150.0,
144
+ 1160.0,
145
+ 1170.0,
146
+ 1180.0,
147
+ 1190.0,
148
+ 1200.0,
149
+ 1210.0,
150
+ 1220.0,
151
+ 1230.0,
152
+ 1240.0,
153
+ 1250.0,
154
+ 1260.0,
155
+ 1270.0,
156
+ 1280.0,
157
+ 1290.0,
158
+ 1300.0,
159
+ 1310.0,
160
+ 1320.0,
161
+ 1330.0,
162
+ 1340.0,
163
+ 1350.0,
164
+ 1360.0,
165
+ 1370.0,
166
+ 1380.0,
167
+ 1390.0,
168
+ 1400.0,
169
+ 1410.0,
170
+ 1420.0,
171
+ 1430.0,
172
+ 1440.0,
173
+ 1450.0,
174
+ 1460.0,
175
+ 1470.0,
176
+ 1480.0,
177
+ 1490.0,
178
+ 1500.0,
179
+ 1510.0,
180
+ 1520.0,
181
+ 1530.0,
182
+ 1540.0,
183
+ 1550.0,
184
+ 1560.0,
185
+ 1570.0,
186
+ 1580.0,
187
+ 1590.0,
188
+ 1600.0,
189
+ 1610.0,
190
+ 1620.0,
191
+ 1630.0,
192
+ 1640.0,
193
+ 1650.0,
194
+ 1660.0,
195
+ 1670.0,
196
+ 1680.0,
197
+ 1690.0,
198
+ 1700.0,
199
+ 1710.0,
200
+ 1720.0,
201
+ 1730.0,
202
+ 1740.0,
203
+ 1750.0,
204
+ 1760.0,
205
+ 1770.0,
206
+ 1780.0,
207
+ 1790.0,
208
+ 1800.0,
209
+ 1810.0,
210
+ 1820.0,
211
+ 1830.0,
212
+ 1840.0,
213
+ 1850.0,
214
+ 1860.0,
215
+ 1870.0,
216
+ 1880.0,
217
+ 1890.0,
218
+ 1900.0,
219
+ 1910.0,
220
+ 1920.0,
221
+ 1930.0,
222
+ 1940.0,
223
+ 1950.0,
224
+ 1960.0,
225
+ 1970.0,
226
+ 1980.0,
227
+ 1990.0,
228
+ 2000.0,
229
+ 2010.0,
230
+ 2020.0,
231
+ 2030.0,
232
+ 2040.0,
233
+ 2050.0,
234
+ 2060.0,
235
+ 2070.0,
236
+ 2080.0,
237
+ 2090.0,
238
+ 2100.0,
239
+ 2110.0,
240
+ 2120.0,
241
+ 2130.0,
242
+ 2140.0,
243
+ 2150.0,
244
+ 2160.0,
245
+ 2170.0,
246
+ 2180.0,
247
+ 2190.0,
248
+ 2200.0,
249
+ 2210.0,
250
+ 2220.0,
251
+ 2230.0,
252
+ 2240.0,
253
+ 2250.0,
254
+ 2260.0,
255
+ 2270.0,
256
+ 2280.0,
257
+ 2290.0,
258
+ 2300.0,
259
+ 2310.0,
260
+ 2320.0,
261
+ 2330.0,
262
+ 2340.0,
263
+ 2350.0,
264
+ 2360.0,
265
+ 2370.0,
266
+ 2380.0,
267
+ 2390.0,
268
+ 2400.0,
269
+ 2410.0,
270
+ 2420.0,
271
+ 2430.0,
272
+ 2440.0,
273
+ 2450.0,
274
+ 2460.0,
275
+ 2470.0,
276
+ 2480.0,
277
+ 2490.0,
278
+ 2500.0
279
+ ],
280
+ "ir_nm": [
281
+ 2500.0,
282
+ 2600.0,
283
+ 2700.0,
284
+ 2800.0,
285
+ 2900.0,
286
+ 3000.0,
287
+ 3100.0,
288
+ 3200.0,
289
+ 3300.0,
290
+ 3400.0,
291
+ 3500.0,
292
+ 3600.0,
293
+ 3700.0,
294
+ 3800.0,
295
+ 3900.0,
296
+ 4000.0,
297
+ 4100.0,
298
+ 4200.0,
299
+ 4300.0,
300
+ 4400.0,
301
+ 4500.0,
302
+ 4600.0,
303
+ 4700.0,
304
+ 4800.0,
305
+ 4900.0,
306
+ 5000.0,
307
+ 5100.0,
308
+ 5200.0,
309
+ 5300.0,
310
+ 5400.0,
311
+ 5500.0,
312
+ 5600.0,
313
+ 5700.0,
314
+ 5800.0,
315
+ 5900.0,
316
+ 6000.0,
317
+ 6100.0,
318
+ 6200.0,
319
+ 6300.0,
320
+ 6400.0,
321
+ 6500.0,
322
+ 6600.0,
323
+ 6700.0,
324
+ 6800.0,
325
+ 6900.0,
326
+ 7000.0,
327
+ 7100.0,
328
+ 7200.0,
329
+ 7300.0,
330
+ 7400.0,
331
+ 7500.0,
332
+ 7600.0,
333
+ 7700.0,
334
+ 7800.0,
335
+ 7900.0,
336
+ 8000.0,
337
+ 8100.0,
338
+ 8200.0,
339
+ 8300.0,
340
+ 8400.0,
341
+ 8500.0,
342
+ 8600.0,
343
+ 8700.0,
344
+ 8800.0,
345
+ 8900.0,
346
+ 9000.0,
347
+ 9100.0,
348
+ 9200.0,
349
+ 9300.0,
350
+ 9400.0,
351
+ 9500.0,
352
+ 9600.0,
353
+ 9700.0,
354
+ 9800.0,
355
+ 9900.0,
356
+ 10000.0,
357
+ 10100.0,
358
+ 10200.0,
359
+ 10300.0,
360
+ 10400.0,
361
+ 10500.0,
362
+ 10600.0,
363
+ 10700.0,
364
+ 10800.0,
365
+ 10900.0,
366
+ 11000.0,
367
+ 11100.0,
368
+ 11200.0,
369
+ 11300.0,
370
+ 11400.0,
371
+ 11500.0,
372
+ 11600.0,
373
+ 11700.0,
374
+ 11800.0,
375
+ 11900.0,
376
+ 12000.0,
377
+ 12100.0,
378
+ 12200.0,
379
+ 12300.0,
380
+ 12400.0,
381
+ 12500.0,
382
+ 12600.0,
383
+ 12700.0,
384
+ 12800.0,
385
+ 12900.0,
386
+ 13000.0,
387
+ 13100.0,
388
+ 13200.0,
389
+ 13300.0,
390
+ 13400.0,
391
+ 13500.0,
392
+ 13600.0,
393
+ 13700.0,
394
+ 13800.0,
395
+ 13900.0,
396
+ 14000.0,
397
+ 14100.0,
398
+ 14200.0,
399
+ 14300.0,
400
+ 14400.0,
401
+ 14500.0,
402
+ 14600.0,
403
+ 14700.0,
404
+ 14800.0,
405
+ 14900.0,
406
+ 15000.0,
407
+ 15100.0,
408
+ 15200.0,
409
+ 15300.0,
410
+ 15400.0,
411
+ 15500.0,
412
+ 15600.0,
413
+ 15700.0,
414
+ 15800.0,
415
+ 15900.0,
416
+ 16000.0,
417
+ 16100.0,
418
+ 16200.0,
419
+ 16300.0,
420
+ 16400.0,
421
+ 16500.0,
422
+ 16600.0,
423
+ 16700.0,
424
+ 16800.0,
425
+ 16900.0,
426
+ 17000.0,
427
+ 17100.0,
428
+ 17200.0,
429
+ 17300.0,
430
+ 17400.0,
431
+ 17500.0,
432
+ 17600.0,
433
+ 17700.0,
434
+ 17800.0,
435
+ 17900.0,
436
+ 18000.0,
437
+ 18100.0,
438
+ 18200.0,
439
+ 18300.0,
440
+ 18400.0,
441
+ 18500.0,
442
+ 18600.0,
443
+ 18700.0,
444
+ 18800.0,
445
+ 18900.0,
446
+ 19000.0,
447
+ 19100.0,
448
+ 19200.0,
449
+ 19300.0,
450
+ 19400.0,
451
+ 19500.0,
452
+ 19600.0,
453
+ 19700.0,
454
+ 19800.0,
455
+ 19900.0,
456
+ 20000.0,
457
+ 20100.0,
458
+ 20200.0,
459
+ 20300.0,
460
+ 20400.0,
461
+ 20500.0,
462
+ 20600.0,
463
+ 20700.0,
464
+ 20800.0,
465
+ 20900.0,
466
+ 21000.0,
467
+ 21100.0,
468
+ 21200.0,
469
+ 21300.0,
470
+ 21400.0,
471
+ 21500.0,
472
+ 21600.0,
473
+ 21700.0,
474
+ 21800.0,
475
+ 21900.0,
476
+ 22000.0,
477
+ 22100.0,
478
+ 22200.0,
479
+ 22300.0,
480
+ 22400.0,
481
+ 22500.0,
482
+ 22600.0,
483
+ 22700.0,
484
+ 22800.0,
485
+ 22900.0,
486
+ 23000.0,
487
+ 23100.0,
488
+ 23200.0,
489
+ 23300.0,
490
+ 23400.0,
491
+ 23500.0,
492
+ 23600.0,
493
+ 23700.0,
494
+ 23800.0,
495
+ 23900.0,
496
+ 24000.0,
497
+ 24100.0,
498
+ 24200.0,
499
+ 24300.0,
500
+ 24400.0,
501
+ 24500.0,
502
+ 24600.0,
503
+ 24700.0,
504
+ 24800.0,
505
+ 24900.0,
506
+ 25000.0
507
+ ],
508
+ "spectra_storage": "uint16_x1000",
509
+ "spectra_decode_scale": 0.001,
510
+ "thickness_bin_edges_nm": [
511
+ 10.0,
512
+ 20.0,
513
+ 30.0,
514
+ 40.0,
515
+ 50.0,
516
+ 60.0,
517
+ 70.0,
518
+ 80.0,
519
+ 90.0,
520
+ 100.0,
521
+ 110.0,
522
+ 120.0,
523
+ 130.0,
524
+ 140.0,
525
+ 150.0,
526
+ 160.0,
527
+ 170.0,
528
+ 180.0,
529
+ 190.0,
530
+ 200.0,
531
+ 210.0,
532
+ 220.0,
533
+ 230.0,
534
+ 240.0,
535
+ 250.0,
536
+ 260.0,
537
+ 270.0,
538
+ 280.0,
539
+ 290.0,
540
+ 300.0,
541
+ 310.0,
542
+ 320.0,
543
+ 330.0,
544
+ 340.0,
545
+ 350.0,
546
+ 360.0,
547
+ 370.0,
548
+ 380.0,
549
+ 390.0,
550
+ 400.0,
551
+ 410.0,
552
+ 420.0,
553
+ 430.0,
554
+ 440.0,
555
+ 450.0,
556
+ 460.0,
557
+ 470.0,
558
+ 480.0,
559
+ 490.0,
560
+ 500.0,
561
+ 510.0,
562
+ 520.0,
563
+ 530.0,
564
+ 540.0,
565
+ 550.0,
566
+ 560.0,
567
+ 570.0,
568
+ 580.0,
569
+ 590.0,
570
+ 600.0,
571
+ 610.0,
572
+ 620.0,
573
+ 630.0,
574
+ 640.0,
575
+ 650.0,
576
+ 660.0,
577
+ 670.0,
578
+ 680.0,
579
+ 690.0,
580
+ 700.0,
581
+ 710.0,
582
+ 720.0,
583
+ 730.0,
584
+ 740.0,
585
+ 750.0,
586
+ 760.0,
587
+ 770.0,
588
+ 780.0,
589
+ 790.0,
590
+ 800.0
591
+ ],
592
+ "thickness_bin_centers_nm": [
593
+ 15.0,
594
+ 25.0,
595
+ 35.0,
596
+ 45.0,
597
+ 55.0,
598
+ 65.0,
599
+ 75.0,
600
+ 85.0,
601
+ 95.0,
602
+ 105.0,
603
+ 115.0,
604
+ 125.0,
605
+ 135.0,
606
+ 145.0,
607
+ 155.0,
608
+ 165.0,
609
+ 175.0,
610
+ 185.0,
611
+ 195.0,
612
+ 205.0,
613
+ 215.0,
614
+ 225.0,
615
+ 235.0,
616
+ 245.0,
617
+ 255.0,
618
+ 265.0,
619
+ 275.0,
620
+ 285.0,
621
+ 295.0,
622
+ 305.0,
623
+ 315.0,
624
+ 325.0,
625
+ 335.0,
626
+ 345.0,
627
+ 355.0,
628
+ 365.0,
629
+ 375.0,
630
+ 385.0,
631
+ 395.0,
632
+ 405.0,
633
+ 415.0,
634
+ 425.0,
635
+ 435.0,
636
+ 445.0,
637
+ 455.0,
638
+ 465.0,
639
+ 475.0,
640
+ 485.0,
641
+ 495.0,
642
+ 505.0,
643
+ 515.0,
644
+ 525.0,
645
+ 535.0,
646
+ 545.0,
647
+ 555.0,
648
+ 565.0,
649
+ 575.0,
650
+ 585.0,
651
+ 595.0,
652
+ 605.0,
653
+ 615.0,
654
+ 625.0,
655
+ 635.0,
656
+ 645.0,
657
+ 655.0,
658
+ 665.0,
659
+ 675.0,
660
+ 685.0,
661
+ 695.0,
662
+ 705.0,
663
+ 715.0,
664
+ 725.0,
665
+ 735.0,
666
+ 745.0,
667
+ 755.0,
668
+ 765.0,
669
+ 775.0,
670
+ 785.0,
671
+ 795.0
672
+ ],
673
+ "target_field_order": [
674
+ "vis_R",
675
+ "vis_T",
676
+ "nir_R",
677
+ "nir_T",
678
+ "ir_E_normal"
679
+ ],
680
+ "target_field_length": 774,
681
+ "target_slice_map": {
682
+ "vis_R": [
683
+ 0,
684
+ 101
685
+ ],
686
+ "vis_T": [
687
+ 101,
688
+ 202
689
+ ],
690
+ "nir_R": [
691
+ 202,
692
+ 375
693
+ ],
694
+ "nir_T": [
695
+ 375,
696
+ 548
697
+ ],
698
+ "ir_E_normal": [
699
+ 548,
700
+ 774
701
+ ]
702
+ },
703
+ "target_window_ids": [
704
+ 0,
705
+ 0,
706
+ 0,
707
+ 0,
708
+ 0,
709
+ 0,
710
+ 0,
711
+ 0,
712
+ 0,
713
+ 0,
714
+ 0,
715
+ 0,
716
+ 0,
717
+ 0,
718
+ 0,
719
+ 0,
720
+ 0,
721
+ 0,
722
+ 0,
723
+ 0,
724
+ 0,
725
+ 0,
726
+ 0,
727
+ 0,
728
+ 0,
729
+ 0,
730
+ 0,
731
+ 0,
732
+ 0,
733
+ 0,
734
+ 0,
735
+ 0,
736
+ 0,
737
+ 0,
738
+ 0,
739
+ 0,
740
+ 0,
741
+ 0,
742
+ 0,
743
+ 0,
744
+ 0,
745
+ 0,
746
+ 0,
747
+ 0,
748
+ 0,
749
+ 0,
750
+ 0,
751
+ 0,
752
+ 0,
753
+ 0,
754
+ 0,
755
+ 0,
756
+ 0,
757
+ 0,
758
+ 0,
759
+ 0,
760
+ 0,
761
+ 0,
762
+ 0,
763
+ 0,
764
+ 0,
765
+ 0,
766
+ 0,
767
+ 0,
768
+ 0,
769
+ 0,
770
+ 0,
771
+ 0,
772
+ 0,
773
+ 0,
774
+ 0,
775
+ 0,
776
+ 0,
777
+ 0,
778
+ 0,
779
+ 0,
780
+ 0,
781
+ 0,
782
+ 0,
783
+ 0,
784
+ 0,
785
+ 0,
786
+ 0,
787
+ 0,
788
+ 0,
789
+ 0,
790
+ 0,
791
+ 0,
792
+ 0,
793
+ 0,
794
+ 0,
795
+ 0,
796
+ 0,
797
+ 0,
798
+ 0,
799
+ 0,
800
+ 0,
801
+ 0,
802
+ 0,
803
+ 0,
804
+ 0,
805
+ 0,
806
+ 0,
807
+ 0,
808
+ 0,
809
+ 0,
810
+ 0,
811
+ 0,
812
+ 0,
813
+ 0,
814
+ 0,
815
+ 0,
816
+ 0,
817
+ 0,
818
+ 0,
819
+ 0,
820
+ 0,
821
+ 0,
822
+ 0,
823
+ 0,
824
+ 0,
825
+ 0,
826
+ 0,
827
+ 0,
828
+ 0,
829
+ 0,
830
+ 0,
831
+ 0,
832
+ 0,
833
+ 0,
834
+ 0,
835
+ 0,
836
+ 0,
837
+ 0,
838
+ 0,
839
+ 0,
840
+ 0,
841
+ 0,
842
+ 0,
843
+ 0,
844
+ 0,
845
+ 0,
846
+ 0,
847
+ 0,
848
+ 0,
849
+ 0,
850
+ 0,
851
+ 0,
852
+ 0,
853
+ 0,
854
+ 0,
855
+ 0,
856
+ 0,
857
+ 0,
858
+ 0,
859
+ 0,
860
+ 0,
861
+ 0,
862
+ 0,
863
+ 0,
864
+ 0,
865
+ 0,
866
+ 0,
867
+ 0,
868
+ 0,
869
+ 0,
870
+ 0,
871
+ 0,
872
+ 0,
873
+ 0,
874
+ 0,
875
+ 0,
876
+ 0,
877
+ 0,
878
+ 0,
879
+ 0,
880
+ 0,
881
+ 0,
882
+ 0,
883
+ 0,
884
+ 0,
885
+ 0,
886
+ 0,
887
+ 0,
888
+ 0,
889
+ 0,
890
+ 0,
891
+ 0,
892
+ 0,
893
+ 0,
894
+ 0,
895
+ 0,
896
+ 0,
897
+ 0,
898
+ 0,
899
+ 0,
900
+ 0,
901
+ 0,
902
+ 0,
903
+ 0,
904
+ 0,
905
+ 0,
906
+ 1,
907
+ 1,
908
+ 1,
909
+ 1,
910
+ 1,
911
+ 1,
912
+ 1,
913
+ 1,
914
+ 1,
915
+ 1,
916
+ 1,
917
+ 1,
918
+ 1,
919
+ 1,
920
+ 1,
921
+ 1,
922
+ 1,
923
+ 1,
924
+ 1,
925
+ 1,
926
+ 1,
927
+ 1,
928
+ 1,
929
+ 1,
930
+ 1,
931
+ 1,
932
+ 1,
933
+ 1,
934
+ 1,
935
+ 1,
936
+ 1,
937
+ 1,
938
+ 1,
939
+ 1,
940
+ 1,
941
+ 1,
942
+ 1,
943
+ 1,
944
+ 1,
945
+ 1,
946
+ 1,
947
+ 1,
948
+ 1,
949
+ 1,
950
+ 1,
951
+ 1,
952
+ 1,
953
+ 1,
954
+ 1,
955
+ 1,
956
+ 1,
957
+ 1,
958
+ 1,
959
+ 1,
960
+ 1,
961
+ 1,
962
+ 1,
963
+ 1,
964
+ 1,
965
+ 1,
966
+ 1,
967
+ 1,
968
+ 1,
969
+ 1,
970
+ 1,
971
+ 1,
972
+ 1,
973
+ 1,
974
+ 1,
975
+ 1,
976
+ 1,
977
+ 1,
978
+ 1,
979
+ 1,
980
+ 1,
981
+ 1,
982
+ 1,
983
+ 1,
984
+ 1,
985
+ 1,
986
+ 1,
987
+ 1,
988
+ 1,
989
+ 1,
990
+ 1,
991
+ 1,
992
+ 1,
993
+ 1,
994
+ 1,
995
+ 1,
996
+ 1,
997
+ 1,
998
+ 1,
999
+ 1,
1000
+ 1,
1001
+ 1,
1002
+ 1,
1003
+ 1,
1004
+ 1,
1005
+ 1,
1006
+ 1,
1007
+ 1,
1008
+ 1,
1009
+ 1,
1010
+ 1,
1011
+ 1,
1012
+ 1,
1013
+ 1,
1014
+ 1,
1015
+ 1,
1016
+ 1,
1017
+ 1,
1018
+ 1,
1019
+ 1,
1020
+ 1,
1021
+ 1,
1022
+ 1,
1023
+ 1,
1024
+ 1,
1025
+ 1,
1026
+ 1,
1027
+ 1,
1028
+ 1,
1029
+ 1,
1030
+ 1,
1031
+ 1,
1032
+ 1,
1033
+ 1,
1034
+ 1,
1035
+ 1,
1036
+ 1,
1037
+ 1,
1038
+ 1,
1039
+ 1,
1040
+ 1,
1041
+ 1,
1042
+ 1,
1043
+ 1,
1044
+ 1,
1045
+ 1,
1046
+ 1,
1047
+ 1,
1048
+ 1,
1049
+ 1,
1050
+ 1,
1051
+ 1,
1052
+ 1,
1053
+ 1,
1054
+ 1,
1055
+ 1,
1056
+ 1,
1057
+ 1,
1058
+ 1,
1059
+ 1,
1060
+ 1,
1061
+ 1,
1062
+ 1,
1063
+ 1,
1064
+ 1,
1065
+ 1,
1066
+ 1,
1067
+ 1,
1068
+ 1,
1069
+ 1,
1070
+ 1,
1071
+ 1,
1072
+ 1,
1073
+ 1,
1074
+ 1,
1075
+ 1,
1076
+ 1,
1077
+ 1,
1078
+ 1,
1079
+ 1,
1080
+ 1,
1081
+ 1,
1082
+ 1,
1083
+ 1,
1084
+ 1,
1085
+ 1,
1086
+ 1,
1087
+ 1,
1088
+ 1,
1089
+ 1,
1090
+ 1,
1091
+ 1,
1092
+ 1,
1093
+ 1,
1094
+ 1,
1095
+ 1,
1096
+ 1,
1097
+ 1,
1098
+ 1,
1099
+ 1,
1100
+ 1,
1101
+ 1,
1102
+ 1,
1103
+ 1,
1104
+ 1,
1105
+ 1,
1106
+ 1,
1107
+ 1,
1108
+ 1,
1109
+ 1,
1110
+ 1,
1111
+ 1,
1112
+ 1,
1113
+ 1,
1114
+ 1,
1115
+ 1,
1116
+ 1,
1117
+ 1,
1118
+ 1,
1119
+ 1,
1120
+ 1,
1121
+ 1,
1122
+ 1,
1123
+ 1,
1124
+ 1,
1125
+ 1,
1126
+ 1,
1127
+ 1,
1128
+ 1,
1129
+ 1,
1130
+ 1,
1131
+ 1,
1132
+ 1,
1133
+ 1,
1134
+ 1,
1135
+ 1,
1136
+ 1,
1137
+ 1,
1138
+ 1,
1139
+ 1,
1140
+ 1,
1141
+ 1,
1142
+ 1,
1143
+ 1,
1144
+ 1,
1145
+ 1,
1146
+ 1,
1147
+ 1,
1148
+ 1,
1149
+ 1,
1150
+ 1,
1151
+ 1,
1152
+ 1,
1153
+ 1,
1154
+ 1,
1155
+ 1,
1156
+ 1,
1157
+ 1,
1158
+ 1,
1159
+ 1,
1160
+ 1,
1161
+ 1,
1162
+ 1,
1163
+ 1,
1164
+ 1,
1165
+ 1,
1166
+ 1,
1167
+ 1,
1168
+ 1,
1169
+ 1,
1170
+ 1,
1171
+ 1,
1172
+ 1,
1173
+ 1,
1174
+ 1,
1175
+ 1,
1176
+ 1,
1177
+ 1,
1178
+ 1,
1179
+ 1,
1180
+ 1,
1181
+ 1,
1182
+ 1,
1183
+ 1,
1184
+ 1,
1185
+ 1,
1186
+ 1,
1187
+ 1,
1188
+ 1,
1189
+ 1,
1190
+ 1,
1191
+ 1,
1192
+ 1,
1193
+ 1,
1194
+ 1,
1195
+ 1,
1196
+ 1,
1197
+ 1,
1198
+ 1,
1199
+ 1,
1200
+ 1,
1201
+ 1,
1202
+ 1,
1203
+ 1,
1204
+ 1,
1205
+ 1,
1206
+ 1,
1207
+ 1,
1208
+ 1,
1209
+ 1,
1210
+ 1,
1211
+ 1,
1212
+ 1,
1213
+ 1,
1214
+ 1,
1215
+ 1,
1216
+ 1,
1217
+ 1,
1218
+ 1,
1219
+ 1,
1220
+ 1,
1221
+ 1,
1222
+ 1,
1223
+ 1,
1224
+ 1,
1225
+ 1,
1226
+ 1,
1227
+ 1,
1228
+ 1,
1229
+ 1,
1230
+ 1,
1231
+ 1,
1232
+ 1,
1233
+ 1,
1234
+ 1,
1235
+ 1,
1236
+ 1,
1237
+ 1,
1238
+ 1,
1239
+ 1,
1240
+ 1,
1241
+ 1,
1242
+ 1,
1243
+ 1,
1244
+ 1,
1245
+ 1,
1246
+ 1,
1247
+ 1,
1248
+ 1,
1249
+ 1,
1250
+ 1,
1251
+ 1,
1252
+ 2,
1253
+ 2,
1254
+ 2,
1255
+ 2,
1256
+ 2,
1257
+ 2,
1258
+ 2,
1259
+ 2,
1260
+ 2,
1261
+ 2,
1262
+ 2,
1263
+ 2,
1264
+ 2,
1265
+ 2,
1266
+ 2,
1267
+ 2,
1268
+ 2,
1269
+ 2,
1270
+ 2,
1271
+ 2,
1272
+ 2,
1273
+ 2,
1274
+ 2,
1275
+ 2,
1276
+ 2,
1277
+ 2,
1278
+ 2,
1279
+ 2,
1280
+ 2,
1281
+ 2,
1282
+ 2,
1283
+ 2,
1284
+ 2,
1285
+ 2,
1286
+ 2,
1287
+ 2,
1288
+ 2,
1289
+ 2,
1290
+ 2,
1291
+ 2,
1292
+ 2,
1293
+ 2,
1294
+ 2,
1295
+ 2,
1296
+ 2,
1297
+ 2,
1298
+ 2,
1299
+ 2,
1300
+ 2,
1301
+ 2,
1302
+ 2,
1303
+ 2,
1304
+ 2,
1305
+ 2,
1306
+ 2,
1307
+ 2,
1308
+ 2,
1309
+ 2,
1310
+ 2,
1311
+ 2,
1312
+ 2,
1313
+ 2,
1314
+ 2,
1315
+ 2,
1316
+ 2,
1317
+ 2,
1318
+ 2,
1319
+ 2,
1320
+ 2,
1321
+ 2,
1322
+ 2,
1323
+ 2,
1324
+ 2,
1325
+ 2,
1326
+ 2,
1327
+ 2,
1328
+ 2,
1329
+ 2,
1330
+ 2,
1331
+ 2,
1332
+ 2,
1333
+ 2,
1334
+ 2,
1335
+ 2,
1336
+ 2,
1337
+ 2,
1338
+ 2,
1339
+ 2,
1340
+ 2,
1341
+ 2,
1342
+ 2,
1343
+ 2,
1344
+ 2,
1345
+ 2,
1346
+ 2,
1347
+ 2,
1348
+ 2,
1349
+ 2,
1350
+ 2,
1351
+ 2,
1352
+ 2,
1353
+ 2,
1354
+ 2,
1355
+ 2,
1356
+ 2,
1357
+ 2,
1358
+ 2,
1359
+ 2,
1360
+ 2,
1361
+ 2,
1362
+ 2,
1363
+ 2,
1364
+ 2,
1365
+ 2,
1366
+ 2,
1367
+ 2,
1368
+ 2,
1369
+ 2,
1370
+ 2,
1371
+ 2,
1372
+ 2,
1373
+ 2,
1374
+ 2,
1375
+ 2,
1376
+ 2,
1377
+ 2,
1378
+ 2,
1379
+ 2,
1380
+ 2,
1381
+ 2,
1382
+ 2,
1383
+ 2,
1384
+ 2,
1385
+ 2,
1386
+ 2,
1387
+ 2,
1388
+ 2,
1389
+ 2,
1390
+ 2,
1391
+ 2,
1392
+ 2,
1393
+ 2,
1394
+ 2,
1395
+ 2,
1396
+ 2,
1397
+ 2,
1398
+ 2,
1399
+ 2,
1400
+ 2,
1401
+ 2,
1402
+ 2,
1403
+ 2,
1404
+ 2,
1405
+ 2,
1406
+ 2,
1407
+ 2,
1408
+ 2,
1409
+ 2,
1410
+ 2,
1411
+ 2,
1412
+ 2,
1413
+ 2,
1414
+ 2,
1415
+ 2,
1416
+ 2,
1417
+ 2,
1418
+ 2,
1419
+ 2,
1420
+ 2,
1421
+ 2,
1422
+ 2,
1423
+ 2,
1424
+ 2,
1425
+ 2,
1426
+ 2,
1427
+ 2,
1428
+ 2,
1429
+ 2,
1430
+ 2,
1431
+ 2,
1432
+ 2,
1433
+ 2,
1434
+ 2,
1435
+ 2,
1436
+ 2,
1437
+ 2,
1438
+ 2,
1439
+ 2,
1440
+ 2,
1441
+ 2,
1442
+ 2,
1443
+ 2,
1444
+ 2,
1445
+ 2,
1446
+ 2,
1447
+ 2,
1448
+ 2,
1449
+ 2,
1450
+ 2,
1451
+ 2,
1452
+ 2,
1453
+ 2,
1454
+ 2,
1455
+ 2,
1456
+ 2,
1457
+ 2,
1458
+ 2,
1459
+ 2,
1460
+ 2,
1461
+ 2,
1462
+ 2,
1463
+ 2,
1464
+ 2,
1465
+ 2,
1466
+ 2,
1467
+ 2,
1468
+ 2,
1469
+ 2,
1470
+ 2,
1471
+ 2,
1472
+ 2,
1473
+ 2,
1474
+ 2,
1475
+ 2,
1476
+ 2,
1477
+ 2
1478
+ ],
1479
+ "target_channel_ids": [
1480
+ 0,
1481
+ 0,
1482
+ 0,
1483
+ 0,
1484
+ 0,
1485
+ 0,
1486
+ 0,
1487
+ 0,
1488
+ 0,
1489
+ 0,
1490
+ 0,
1491
+ 0,
1492
+ 0,
1493
+ 0,
1494
+ 0,
1495
+ 0,
1496
+ 0,
1497
+ 0,
1498
+ 0,
1499
+ 0,
1500
+ 0,
1501
+ 0,
1502
+ 0,
1503
+ 0,
1504
+ 0,
1505
+ 0,
1506
+ 0,
1507
+ 0,
1508
+ 0,
1509
+ 0,
1510
+ 0,
1511
+ 0,
1512
+ 0,
1513
+ 0,
1514
+ 0,
1515
+ 0,
1516
+ 0,
1517
+ 0,
1518
+ 0,
1519
+ 0,
1520
+ 0,
1521
+ 0,
1522
+ 0,
1523
+ 0,
1524
+ 0,
1525
+ 0,
1526
+ 0,
1527
+ 0,
1528
+ 0,
1529
+ 0,
1530
+ 0,
1531
+ 0,
1532
+ 0,
1533
+ 0,
1534
+ 0,
1535
+ 0,
1536
+ 0,
1537
+ 0,
1538
+ 0,
1539
+ 0,
1540
+ 0,
1541
+ 0,
1542
+ 0,
1543
+ 0,
1544
+ 0,
1545
+ 0,
1546
+ 0,
1547
+ 0,
1548
+ 0,
1549
+ 0,
1550
+ 0,
1551
+ 0,
1552
+ 0,
1553
+ 0,
1554
+ 0,
1555
+ 0,
1556
+ 0,
1557
+ 0,
1558
+ 0,
1559
+ 0,
1560
+ 0,
1561
+ 0,
1562
+ 0,
1563
+ 0,
1564
+ 0,
1565
+ 0,
1566
+ 0,
1567
+ 0,
1568
+ 0,
1569
+ 0,
1570
+ 0,
1571
+ 0,
1572
+ 0,
1573
+ 0,
1574
+ 0,
1575
+ 0,
1576
+ 0,
1577
+ 0,
1578
+ 0,
1579
+ 0,
1580
+ 0,
1581
+ 1,
1582
+ 1,
1583
+ 1,
1584
+ 1,
1585
+ 1,
1586
+ 1,
1587
+ 1,
1588
+ 1,
1589
+ 1,
1590
+ 1,
1591
+ 1,
1592
+ 1,
1593
+ 1,
1594
+ 1,
1595
+ 1,
1596
+ 1,
1597
+ 1,
1598
+ 1,
1599
+ 1,
1600
+ 1,
1601
+ 1,
1602
+ 1,
1603
+ 1,
1604
+ 1,
1605
+ 1,
1606
+ 1,
1607
+ 1,
1608
+ 1,
1609
+ 1,
1610
+ 1,
1611
+ 1,
1612
+ 1,
1613
+ 1,
1614
+ 1,
1615
+ 1,
1616
+ 1,
1617
+ 1,
1618
+ 1,
1619
+ 1,
1620
+ 1,
1621
+ 1,
1622
+ 1,
1623
+ 1,
1624
+ 1,
1625
+ 1,
1626
+ 1,
1627
+ 1,
1628
+ 1,
1629
+ 1,
1630
+ 1,
1631
+ 1,
1632
+ 1,
1633
+ 1,
1634
+ 1,
1635
+ 1,
1636
+ 1,
1637
+ 1,
1638
+ 1,
1639
+ 1,
1640
+ 1,
1641
+ 1,
1642
+ 1,
1643
+ 1,
1644
+ 1,
1645
+ 1,
1646
+ 1,
1647
+ 1,
1648
+ 1,
1649
+ 1,
1650
+ 1,
1651
+ 1,
1652
+ 1,
1653
+ 1,
1654
+ 1,
1655
+ 1,
1656
+ 1,
1657
+ 1,
1658
+ 1,
1659
+ 1,
1660
+ 1,
1661
+ 1,
1662
+ 1,
1663
+ 1,
1664
+ 1,
1665
+ 1,
1666
+ 1,
1667
+ 1,
1668
+ 1,
1669
+ 1,
1670
+ 1,
1671
+ 1,
1672
+ 1,
1673
+ 1,
1674
+ 1,
1675
+ 1,
1676
+ 1,
1677
+ 1,
1678
+ 1,
1679
+ 1,
1680
+ 1,
1681
+ 1,
1682
+ 0,
1683
+ 0,
1684
+ 0,
1685
+ 0,
1686
+ 0,
1687
+ 0,
1688
+ 0,
1689
+ 0,
1690
+ 0,
1691
+ 0,
1692
+ 0,
1693
+ 0,
1694
+ 0,
1695
+ 0,
1696
+ 0,
1697
+ 0,
1698
+ 0,
1699
+ 0,
1700
+ 0,
1701
+ 0,
1702
+ 0,
1703
+ 0,
1704
+ 0,
1705
+ 0,
1706
+ 0,
1707
+ 0,
1708
+ 0,
1709
+ 0,
1710
+ 0,
1711
+ 0,
1712
+ 0,
1713
+ 0,
1714
+ 0,
1715
+ 0,
1716
+ 0,
1717
+ 0,
1718
+ 0,
1719
+ 0,
1720
+ 0,
1721
+ 0,
1722
+ 0,
1723
+ 0,
1724
+ 0,
1725
+ 0,
1726
+ 0,
1727
+ 0,
1728
+ 0,
1729
+ 0,
1730
+ 0,
1731
+ 0,
1732
+ 0,
1733
+ 0,
1734
+ 0,
1735
+ 0,
1736
+ 0,
1737
+ 0,
1738
+ 0,
1739
+ 0,
1740
+ 0,
1741
+ 0,
1742
+ 0,
1743
+ 0,
1744
+ 0,
1745
+ 0,
1746
+ 0,
1747
+ 0,
1748
+ 0,
1749
+ 0,
1750
+ 0,
1751
+ 0,
1752
+ 0,
1753
+ 0,
1754
+ 0,
1755
+ 0,
1756
+ 0,
1757
+ 0,
1758
+ 0,
1759
+ 0,
1760
+ 0,
1761
+ 0,
1762
+ 0,
1763
+ 0,
1764
+ 0,
1765
+ 0,
1766
+ 0,
1767
+ 0,
1768
+ 0,
1769
+ 0,
1770
+ 0,
1771
+ 0,
1772
+ 0,
1773
+ 0,
1774
+ 0,
1775
+ 0,
1776
+ 0,
1777
+ 0,
1778
+ 0,
1779
+ 0,
1780
+ 0,
1781
+ 0,
1782
+ 0,
1783
+ 0,
1784
+ 0,
1785
+ 0,
1786
+ 0,
1787
+ 0,
1788
+ 0,
1789
+ 0,
1790
+ 0,
1791
+ 0,
1792
+ 0,
1793
+ 0,
1794
+ 0,
1795
+ 0,
1796
+ 0,
1797
+ 0,
1798
+ 0,
1799
+ 0,
1800
+ 0,
1801
+ 0,
1802
+ 0,
1803
+ 0,
1804
+ 0,
1805
+ 0,
1806
+ 0,
1807
+ 0,
1808
+ 0,
1809
+ 0,
1810
+ 0,
1811
+ 0,
1812
+ 0,
1813
+ 0,
1814
+ 0,
1815
+ 0,
1816
+ 0,
1817
+ 0,
1818
+ 0,
1819
+ 0,
1820
+ 0,
1821
+ 0,
1822
+ 0,
1823
+ 0,
1824
+ 0,
1825
+ 0,
1826
+ 0,
1827
+ 0,
1828
+ 0,
1829
+ 0,
1830
+ 0,
1831
+ 0,
1832
+ 0,
1833
+ 0,
1834
+ 0,
1835
+ 0,
1836
+ 0,
1837
+ 0,
1838
+ 0,
1839
+ 0,
1840
+ 0,
1841
+ 0,
1842
+ 0,
1843
+ 0,
1844
+ 0,
1845
+ 0,
1846
+ 0,
1847
+ 0,
1848
+ 0,
1849
+ 0,
1850
+ 0,
1851
+ 0,
1852
+ 0,
1853
+ 0,
1854
+ 0,
1855
+ 1,
1856
+ 1,
1857
+ 1,
1858
+ 1,
1859
+ 1,
1860
+ 1,
1861
+ 1,
1862
+ 1,
1863
+ 1,
1864
+ 1,
1865
+ 1,
1866
+ 1,
1867
+ 1,
1868
+ 1,
1869
+ 1,
1870
+ 1,
1871
+ 1,
1872
+ 1,
1873
+ 1,
1874
+ 1,
1875
+ 1,
1876
+ 1,
1877
+ 1,
1878
+ 1,
1879
+ 1,
1880
+ 1,
1881
+ 1,
1882
+ 1,
1883
+ 1,
1884
+ 1,
1885
+ 1,
1886
+ 1,
1887
+ 1,
1888
+ 1,
1889
+ 1,
1890
+ 1,
1891
+ 1,
1892
+ 1,
1893
+ 1,
1894
+ 1,
1895
+ 1,
1896
+ 1,
1897
+ 1,
1898
+ 1,
1899
+ 1,
1900
+ 1,
1901
+ 1,
1902
+ 1,
1903
+ 1,
1904
+ 1,
1905
+ 1,
1906
+ 1,
1907
+ 1,
1908
+ 1,
1909
+ 1,
1910
+ 1,
1911
+ 1,
1912
+ 1,
1913
+ 1,
1914
+ 1,
1915
+ 1,
1916
+ 1,
1917
+ 1,
1918
+ 1,
1919
+ 1,
1920
+ 1,
1921
+ 1,
1922
+ 1,
1923
+ 1,
1924
+ 1,
1925
+ 1,
1926
+ 1,
1927
+ 1,
1928
+ 1,
1929
+ 1,
1930
+ 1,
1931
+ 1,
1932
+ 1,
1933
+ 1,
1934
+ 1,
1935
+ 1,
1936
+ 1,
1937
+ 1,
1938
+ 1,
1939
+ 1,
1940
+ 1,
1941
+ 1,
1942
+ 1,
1943
+ 1,
1944
+ 1,
1945
+ 1,
1946
+ 1,
1947
+ 1,
1948
+ 1,
1949
+ 1,
1950
+ 1,
1951
+ 1,
1952
+ 1,
1953
+ 1,
1954
+ 1,
1955
+ 1,
1956
+ 1,
1957
+ 1,
1958
+ 1,
1959
+ 1,
1960
+ 1,
1961
+ 1,
1962
+ 1,
1963
+ 1,
1964
+ 1,
1965
+ 1,
1966
+ 1,
1967
+ 1,
1968
+ 1,
1969
+ 1,
1970
+ 1,
1971
+ 1,
1972
+ 1,
1973
+ 1,
1974
+ 1,
1975
+ 1,
1976
+ 1,
1977
+ 1,
1978
+ 1,
1979
+ 1,
1980
+ 1,
1981
+ 1,
1982
+ 1,
1983
+ 1,
1984
+ 1,
1985
+ 1,
1986
+ 1,
1987
+ 1,
1988
+ 1,
1989
+ 1,
1990
+ 1,
1991
+ 1,
1992
+ 1,
1993
+ 1,
1994
+ 1,
1995
+ 1,
1996
+ 1,
1997
+ 1,
1998
+ 1,
1999
+ 1,
2000
+ 1,
2001
+ 1,
2002
+ 1,
2003
+ 1,
2004
+ 1,
2005
+ 1,
2006
+ 1,
2007
+ 1,
2008
+ 1,
2009
+ 1,
2010
+ 1,
2011
+ 1,
2012
+ 1,
2013
+ 1,
2014
+ 1,
2015
+ 1,
2016
+ 1,
2017
+ 1,
2018
+ 1,
2019
+ 1,
2020
+ 1,
2021
+ 1,
2022
+ 1,
2023
+ 1,
2024
+ 1,
2025
+ 1,
2026
+ 1,
2027
+ 1,
2028
+ 2,
2029
+ 2,
2030
+ 2,
2031
+ 2,
2032
+ 2,
2033
+ 2,
2034
+ 2,
2035
+ 2,
2036
+ 2,
2037
+ 2,
2038
+ 2,
2039
+ 2,
2040
+ 2,
2041
+ 2,
2042
+ 2,
2043
+ 2,
2044
+ 2,
2045
+ 2,
2046
+ 2,
2047
+ 2,
2048
+ 2,
2049
+ 2,
2050
+ 2,
2051
+ 2,
2052
+ 2,
2053
+ 2,
2054
+ 2,
2055
+ 2,
2056
+ 2,
2057
+ 2,
2058
+ 2,
2059
+ 2,
2060
+ 2,
2061
+ 2,
2062
+ 2,
2063
+ 2,
2064
+ 2,
2065
+ 2,
2066
+ 2,
2067
+ 2,
2068
+ 2,
2069
+ 2,
2070
+ 2,
2071
+ 2,
2072
+ 2,
2073
+ 2,
2074
+ 2,
2075
+ 2,
2076
+ 2,
2077
+ 2,
2078
+ 2,
2079
+ 2,
2080
+ 2,
2081
+ 2,
2082
+ 2,
2083
+ 2,
2084
+ 2,
2085
+ 2,
2086
+ 2,
2087
+ 2,
2088
+ 2,
2089
+ 2,
2090
+ 2,
2091
+ 2,
2092
+ 2,
2093
+ 2,
2094
+ 2,
2095
+ 2,
2096
+ 2,
2097
+ 2,
2098
+ 2,
2099
+ 2,
2100
+ 2,
2101
+ 2,
2102
+ 2,
2103
+ 2,
2104
+ 2,
2105
+ 2,
2106
+ 2,
2107
+ 2,
2108
+ 2,
2109
+ 2,
2110
+ 2,
2111
+ 2,
2112
+ 2,
2113
+ 2,
2114
+ 2,
2115
+ 2,
2116
+ 2,
2117
+ 2,
2118
+ 2,
2119
+ 2,
2120
+ 2,
2121
+ 2,
2122
+ 2,
2123
+ 2,
2124
+ 2,
2125
+ 2,
2126
+ 2,
2127
+ 2,
2128
+ 2,
2129
+ 2,
2130
+ 2,
2131
+ 2,
2132
+ 2,
2133
+ 2,
2134
+ 2,
2135
+ 2,
2136
+ 2,
2137
+ 2,
2138
+ 2,
2139
+ 2,
2140
+ 2,
2141
+ 2,
2142
+ 2,
2143
+ 2,
2144
+ 2,
2145
+ 2,
2146
+ 2,
2147
+ 2,
2148
+ 2,
2149
+ 2,
2150
+ 2,
2151
+ 2,
2152
+ 2,
2153
+ 2,
2154
+ 2,
2155
+ 2,
2156
+ 2,
2157
+ 2,
2158
+ 2,
2159
+ 2,
2160
+ 2,
2161
+ 2,
2162
+ 2,
2163
+ 2,
2164
+ 2,
2165
+ 2,
2166
+ 2,
2167
+ 2,
2168
+ 2,
2169
+ 2,
2170
+ 2,
2171
+ 2,
2172
+ 2,
2173
+ 2,
2174
+ 2,
2175
+ 2,
2176
+ 2,
2177
+ 2,
2178
+ 2,
2179
+ 2,
2180
+ 2,
2181
+ 2,
2182
+ 2,
2183
+ 2,
2184
+ 2,
2185
+ 2,
2186
+ 2,
2187
+ 2,
2188
+ 2,
2189
+ 2,
2190
+ 2,
2191
+ 2,
2192
+ 2,
2193
+ 2,
2194
+ 2,
2195
+ 2,
2196
+ 2,
2197
+ 2,
2198
+ 2,
2199
+ 2,
2200
+ 2,
2201
+ 2,
2202
+ 2,
2203
+ 2,
2204
+ 2,
2205
+ 2,
2206
+ 2,
2207
+ 2,
2208
+ 2,
2209
+ 2,
2210
+ 2,
2211
+ 2,
2212
+ 2,
2213
+ 2,
2214
+ 2,
2215
+ 2,
2216
+ 2,
2217
+ 2,
2218
+ 2,
2219
+ 2,
2220
+ 2,
2221
+ 2,
2222
+ 2,
2223
+ 2,
2224
+ 2,
2225
+ 2,
2226
+ 2,
2227
+ 2,
2228
+ 2,
2229
+ 2,
2230
+ 2,
2231
+ 2,
2232
+ 2,
2233
+ 2,
2234
+ 2,
2235
+ 2,
2236
+ 2,
2237
+ 2,
2238
+ 2,
2239
+ 2,
2240
+ 2,
2241
+ 2,
2242
+ 2,
2243
+ 2,
2244
+ 2,
2245
+ 2,
2246
+ 2,
2247
+ 2,
2248
+ 2,
2249
+ 2,
2250
+ 2,
2251
+ 2,
2252
+ 2,
2253
+ 2
2254
+ ],
2255
+ "target_position_ids": [
2256
+ 0,
2257
+ 1,
2258
+ 2,
2259
+ 3,
2260
+ 4,
2261
+ 5,
2262
+ 6,
2263
+ 7,
2264
+ 8,
2265
+ 9,
2266
+ 10,
2267
+ 11,
2268
+ 12,
2269
+ 13,
2270
+ 14,
2271
+ 15,
2272
+ 16,
2273
+ 17,
2274
+ 18,
2275
+ 19,
2276
+ 20,
2277
+ 21,
2278
+ 22,
2279
+ 23,
2280
+ 24,
2281
+ 25,
2282
+ 26,
2283
+ 27,
2284
+ 28,
2285
+ 29,
2286
+ 30,
2287
+ 31,
2288
+ 32,
2289
+ 33,
2290
+ 34,
2291
+ 35,
2292
+ 36,
2293
+ 37,
2294
+ 38,
2295
+ 39,
2296
+ 40,
2297
+ 41,
2298
+ 42,
2299
+ 43,
2300
+ 44,
2301
+ 45,
2302
+ 46,
2303
+ 47,
2304
+ 48,
2305
+ 49,
2306
+ 50,
2307
+ 51,
2308
+ 52,
2309
+ 53,
2310
+ 54,
2311
+ 55,
2312
+ 56,
2313
+ 57,
2314
+ 58,
2315
+ 59,
2316
+ 60,
2317
+ 61,
2318
+ 62,
2319
+ 63,
2320
+ 64,
2321
+ 65,
2322
+ 66,
2323
+ 67,
2324
+ 68,
2325
+ 69,
2326
+ 70,
2327
+ 71,
2328
+ 72,
2329
+ 73,
2330
+ 74,
2331
+ 75,
2332
+ 76,
2333
+ 77,
2334
+ 78,
2335
+ 79,
2336
+ 80,
2337
+ 81,
2338
+ 82,
2339
+ 83,
2340
+ 84,
2341
+ 85,
2342
+ 86,
2343
+ 87,
2344
+ 88,
2345
+ 89,
2346
+ 90,
2347
+ 91,
2348
+ 92,
2349
+ 93,
2350
+ 94,
2351
+ 95,
2352
+ 96,
2353
+ 97,
2354
+ 98,
2355
+ 99,
2356
+ 100,
2357
+ 0,
2358
+ 1,
2359
+ 2,
2360
+ 3,
2361
+ 4,
2362
+ 5,
2363
+ 6,
2364
+ 7,
2365
+ 8,
2366
+ 9,
2367
+ 10,
2368
+ 11,
2369
+ 12,
2370
+ 13,
2371
+ 14,
2372
+ 15,
2373
+ 16,
2374
+ 17,
2375
+ 18,
2376
+ 19,
2377
+ 20,
2378
+ 21,
2379
+ 22,
2380
+ 23,
2381
+ 24,
2382
+ 25,
2383
+ 26,
2384
+ 27,
2385
+ 28,
2386
+ 29,
2387
+ 30,
2388
+ 31,
2389
+ 32,
2390
+ 33,
2391
+ 34,
2392
+ 35,
2393
+ 36,
2394
+ 37,
2395
+ 38,
2396
+ 39,
2397
+ 40,
2398
+ 41,
2399
+ 42,
2400
+ 43,
2401
+ 44,
2402
+ 45,
2403
+ 46,
2404
+ 47,
2405
+ 48,
2406
+ 49,
2407
+ 50,
2408
+ 51,
2409
+ 52,
2410
+ 53,
2411
+ 54,
2412
+ 55,
2413
+ 56,
2414
+ 57,
2415
+ 58,
2416
+ 59,
2417
+ 60,
2418
+ 61,
2419
+ 62,
2420
+ 63,
2421
+ 64,
2422
+ 65,
2423
+ 66,
2424
+ 67,
2425
+ 68,
2426
+ 69,
2427
+ 70,
2428
+ 71,
2429
+ 72,
2430
+ 73,
2431
+ 74,
2432
+ 75,
2433
+ 76,
2434
+ 77,
2435
+ 78,
2436
+ 79,
2437
+ 80,
2438
+ 81,
2439
+ 82,
2440
+ 83,
2441
+ 84,
2442
+ 85,
2443
+ 86,
2444
+ 87,
2445
+ 88,
2446
+ 89,
2447
+ 90,
2448
+ 91,
2449
+ 92,
2450
+ 93,
2451
+ 94,
2452
+ 95,
2453
+ 96,
2454
+ 97,
2455
+ 98,
2456
+ 99,
2457
+ 100,
2458
+ 0,
2459
+ 1,
2460
+ 2,
2461
+ 3,
2462
+ 4,
2463
+ 5,
2464
+ 6,
2465
+ 7,
2466
+ 8,
2467
+ 9,
2468
+ 10,
2469
+ 11,
2470
+ 12,
2471
+ 13,
2472
+ 14,
2473
+ 15,
2474
+ 16,
2475
+ 17,
2476
+ 18,
2477
+ 19,
2478
+ 20,
2479
+ 21,
2480
+ 22,
2481
+ 23,
2482
+ 24,
2483
+ 25,
2484
+ 26,
2485
+ 27,
2486
+ 28,
2487
+ 29,
2488
+ 30,
2489
+ 31,
2490
+ 32,
2491
+ 33,
2492
+ 34,
2493
+ 35,
2494
+ 36,
2495
+ 37,
2496
+ 38,
2497
+ 39,
2498
+ 40,
2499
+ 41,
2500
+ 42,
2501
+ 43,
2502
+ 44,
2503
+ 45,
2504
+ 46,
2505
+ 47,
2506
+ 48,
2507
+ 49,
2508
+ 50,
2509
+ 51,
2510
+ 52,
2511
+ 53,
2512
+ 54,
2513
+ 55,
2514
+ 56,
2515
+ 57,
2516
+ 58,
2517
+ 59,
2518
+ 60,
2519
+ 61,
2520
+ 62,
2521
+ 63,
2522
+ 64,
2523
+ 65,
2524
+ 66,
2525
+ 67,
2526
+ 68,
2527
+ 69,
2528
+ 70,
2529
+ 71,
2530
+ 72,
2531
+ 73,
2532
+ 74,
2533
+ 75,
2534
+ 76,
2535
+ 77,
2536
+ 78,
2537
+ 79,
2538
+ 80,
2539
+ 81,
2540
+ 82,
2541
+ 83,
2542
+ 84,
2543
+ 85,
2544
+ 86,
2545
+ 87,
2546
+ 88,
2547
+ 89,
2548
+ 90,
2549
+ 91,
2550
+ 92,
2551
+ 93,
2552
+ 94,
2553
+ 95,
2554
+ 96,
2555
+ 97,
2556
+ 98,
2557
+ 99,
2558
+ 100,
2559
+ 101,
2560
+ 102,
2561
+ 103,
2562
+ 104,
2563
+ 105,
2564
+ 106,
2565
+ 107,
2566
+ 108,
2567
+ 109,
2568
+ 110,
2569
+ 111,
2570
+ 112,
2571
+ 113,
2572
+ 114,
2573
+ 115,
2574
+ 116,
2575
+ 117,
2576
+ 118,
2577
+ 119,
2578
+ 120,
2579
+ 121,
2580
+ 122,
2581
+ 123,
2582
+ 124,
2583
+ 125,
2584
+ 126,
2585
+ 127,
2586
+ 128,
2587
+ 129,
2588
+ 130,
2589
+ 131,
2590
+ 132,
2591
+ 133,
2592
+ 134,
2593
+ 135,
2594
+ 136,
2595
+ 137,
2596
+ 138,
2597
+ 139,
2598
+ 140,
2599
+ 141,
2600
+ 142,
2601
+ 143,
2602
+ 144,
2603
+ 145,
2604
+ 146,
2605
+ 147,
2606
+ 148,
2607
+ 149,
2608
+ 150,
2609
+ 151,
2610
+ 152,
2611
+ 153,
2612
+ 154,
2613
+ 155,
2614
+ 156,
2615
+ 157,
2616
+ 158,
2617
+ 159,
2618
+ 160,
2619
+ 161,
2620
+ 162,
2621
+ 163,
2622
+ 164,
2623
+ 165,
2624
+ 166,
2625
+ 167,
2626
+ 168,
2627
+ 169,
2628
+ 170,
2629
+ 171,
2630
+ 172,
2631
+ 0,
2632
+ 1,
2633
+ 2,
2634
+ 3,
2635
+ 4,
2636
+ 5,
2637
+ 6,
2638
+ 7,
2639
+ 8,
2640
+ 9,
2641
+ 10,
2642
+ 11,
2643
+ 12,
2644
+ 13,
2645
+ 14,
2646
+ 15,
2647
+ 16,
2648
+ 17,
2649
+ 18,
2650
+ 19,
2651
+ 20,
2652
+ 21,
2653
+ 22,
2654
+ 23,
2655
+ 24,
2656
+ 25,
2657
+ 26,
2658
+ 27,
2659
+ 28,
2660
+ 29,
2661
+ 30,
2662
+ 31,
2663
+ 32,
2664
+ 33,
2665
+ 34,
2666
+ 35,
2667
+ 36,
2668
+ 37,
2669
+ 38,
2670
+ 39,
2671
+ 40,
2672
+ 41,
2673
+ 42,
2674
+ 43,
2675
+ 44,
2676
+ 45,
2677
+ 46,
2678
+ 47,
2679
+ 48,
2680
+ 49,
2681
+ 50,
2682
+ 51,
2683
+ 52,
2684
+ 53,
2685
+ 54,
2686
+ 55,
2687
+ 56,
2688
+ 57,
2689
+ 58,
2690
+ 59,
2691
+ 60,
2692
+ 61,
2693
+ 62,
2694
+ 63,
2695
+ 64,
2696
+ 65,
2697
+ 66,
2698
+ 67,
2699
+ 68,
2700
+ 69,
2701
+ 70,
2702
+ 71,
2703
+ 72,
2704
+ 73,
2705
+ 74,
2706
+ 75,
2707
+ 76,
2708
+ 77,
2709
+ 78,
2710
+ 79,
2711
+ 80,
2712
+ 81,
2713
+ 82,
2714
+ 83,
2715
+ 84,
2716
+ 85,
2717
+ 86,
2718
+ 87,
2719
+ 88,
2720
+ 89,
2721
+ 90,
2722
+ 91,
2723
+ 92,
2724
+ 93,
2725
+ 94,
2726
+ 95,
2727
+ 96,
2728
+ 97,
2729
+ 98,
2730
+ 99,
2731
+ 100,
2732
+ 101,
2733
+ 102,
2734
+ 103,
2735
+ 104,
2736
+ 105,
2737
+ 106,
2738
+ 107,
2739
+ 108,
2740
+ 109,
2741
+ 110,
2742
+ 111,
2743
+ 112,
2744
+ 113,
2745
+ 114,
2746
+ 115,
2747
+ 116,
2748
+ 117,
2749
+ 118,
2750
+ 119,
2751
+ 120,
2752
+ 121,
2753
+ 122,
2754
+ 123,
2755
+ 124,
2756
+ 125,
2757
+ 126,
2758
+ 127,
2759
+ 128,
2760
+ 129,
2761
+ 130,
2762
+ 131,
2763
+ 132,
2764
+ 133,
2765
+ 134,
2766
+ 135,
2767
+ 136,
2768
+ 137,
2769
+ 138,
2770
+ 139,
2771
+ 140,
2772
+ 141,
2773
+ 142,
2774
+ 143,
2775
+ 144,
2776
+ 145,
2777
+ 146,
2778
+ 147,
2779
+ 148,
2780
+ 149,
2781
+ 150,
2782
+ 151,
2783
+ 152,
2784
+ 153,
2785
+ 154,
2786
+ 155,
2787
+ 156,
2788
+ 157,
2789
+ 158,
2790
+ 159,
2791
+ 160,
2792
+ 161,
2793
+ 162,
2794
+ 163,
2795
+ 164,
2796
+ 165,
2797
+ 166,
2798
+ 167,
2799
+ 168,
2800
+ 169,
2801
+ 170,
2802
+ 171,
2803
+ 172,
2804
+ 0,
2805
+ 1,
2806
+ 2,
2807
+ 3,
2808
+ 4,
2809
+ 5,
2810
+ 6,
2811
+ 7,
2812
+ 8,
2813
+ 9,
2814
+ 10,
2815
+ 11,
2816
+ 12,
2817
+ 13,
2818
+ 14,
2819
+ 15,
2820
+ 16,
2821
+ 17,
2822
+ 18,
2823
+ 19,
2824
+ 20,
2825
+ 21,
2826
+ 22,
2827
+ 23,
2828
+ 24,
2829
+ 25,
2830
+ 26,
2831
+ 27,
2832
+ 28,
2833
+ 29,
2834
+ 30,
2835
+ 31,
2836
+ 32,
2837
+ 33,
2838
+ 34,
2839
+ 35,
2840
+ 36,
2841
+ 37,
2842
+ 38,
2843
+ 39,
2844
+ 40,
2845
+ 41,
2846
+ 42,
2847
+ 43,
2848
+ 44,
2849
+ 45,
2850
+ 46,
2851
+ 47,
2852
+ 48,
2853
+ 49,
2854
+ 50,
2855
+ 51,
2856
+ 52,
2857
+ 53,
2858
+ 54,
2859
+ 55,
2860
+ 56,
2861
+ 57,
2862
+ 58,
2863
+ 59,
2864
+ 60,
2865
+ 61,
2866
+ 62,
2867
+ 63,
2868
+ 64,
2869
+ 65,
2870
+ 66,
2871
+ 67,
2872
+ 68,
2873
+ 69,
2874
+ 70,
2875
+ 71,
2876
+ 72,
2877
+ 73,
2878
+ 74,
2879
+ 75,
2880
+ 76,
2881
+ 77,
2882
+ 78,
2883
+ 79,
2884
+ 80,
2885
+ 81,
2886
+ 82,
2887
+ 83,
2888
+ 84,
2889
+ 85,
2890
+ 86,
2891
+ 87,
2892
+ 88,
2893
+ 89,
2894
+ 90,
2895
+ 91,
2896
+ 92,
2897
+ 93,
2898
+ 94,
2899
+ 95,
2900
+ 96,
2901
+ 97,
2902
+ 98,
2903
+ 99,
2904
+ 100,
2905
+ 101,
2906
+ 102,
2907
+ 103,
2908
+ 104,
2909
+ 105,
2910
+ 106,
2911
+ 107,
2912
+ 108,
2913
+ 109,
2914
+ 110,
2915
+ 111,
2916
+ 112,
2917
+ 113,
2918
+ 114,
2919
+ 115,
2920
+ 116,
2921
+ 117,
2922
+ 118,
2923
+ 119,
2924
+ 120,
2925
+ 121,
2926
+ 122,
2927
+ 123,
2928
+ 124,
2929
+ 125,
2930
+ 126,
2931
+ 127,
2932
+ 128,
2933
+ 129,
2934
+ 130,
2935
+ 131,
2936
+ 132,
2937
+ 133,
2938
+ 134,
2939
+ 135,
2940
+ 136,
2941
+ 137,
2942
+ 138,
2943
+ 139,
2944
+ 140,
2945
+ 141,
2946
+ 142,
2947
+ 143,
2948
+ 144,
2949
+ 145,
2950
+ 146,
2951
+ 147,
2952
+ 148,
2953
+ 149,
2954
+ 150,
2955
+ 151,
2956
+ 152,
2957
+ 153,
2958
+ 154,
2959
+ 155,
2960
+ 156,
2961
+ 157,
2962
+ 158,
2963
+ 159,
2964
+ 160,
2965
+ 161,
2966
+ 162,
2967
+ 163,
2968
+ 164,
2969
+ 165,
2970
+ 166,
2971
+ 167,
2972
+ 168,
2973
+ 169,
2974
+ 170,
2975
+ 171,
2976
+ 172,
2977
+ 173,
2978
+ 174,
2979
+ 175,
2980
+ 176,
2981
+ 177,
2982
+ 178,
2983
+ 179,
2984
+ 180,
2985
+ 181,
2986
+ 182,
2987
+ 183,
2988
+ 184,
2989
+ 185,
2990
+ 186,
2991
+ 187,
2992
+ 188,
2993
+ 189,
2994
+ 190,
2995
+ 191,
2996
+ 192,
2997
+ 193,
2998
+ 194,
2999
+ 195,
3000
+ 196,
3001
+ 197,
3002
+ 198,
3003
+ 199,
3004
+ 200,
3005
+ 201,
3006
+ 202,
3007
+ 203,
3008
+ 204,
3009
+ 205,
3010
+ 206,
3011
+ 207,
3012
+ 208,
3013
+ 209,
3014
+ 210,
3015
+ 211,
3016
+ 212,
3017
+ 213,
3018
+ 214,
3019
+ 215,
3020
+ 216,
3021
+ 217,
3022
+ 218,
3023
+ 219,
3024
+ 220,
3025
+ 221,
3026
+ 222,
3027
+ 223,
3028
+ 224,
3029
+ 225
3030
+ ],
3031
+ "target_wavelength_nm": [
3032
+ 380.0,
3033
+ 384.0,
3034
+ 388.0,
3035
+ 392.0,
3036
+ 396.0,
3037
+ 400.0,
3038
+ 404.0,
3039
+ 408.0,
3040
+ 412.0,
3041
+ 416.0,
3042
+ 420.0,
3043
+ 424.0,
3044
+ 428.0,
3045
+ 432.0,
3046
+ 436.0,
3047
+ 440.0,
3048
+ 444.0,
3049
+ 448.0,
3050
+ 452.0,
3051
+ 456.0,
3052
+ 460.0,
3053
+ 464.0,
3054
+ 468.0,
3055
+ 472.0,
3056
+ 476.0,
3057
+ 480.0,
3058
+ 484.0,
3059
+ 488.0,
3060
+ 492.0,
3061
+ 496.0,
3062
+ 500.0,
3063
+ 504.0,
3064
+ 508.0,
3065
+ 512.0,
3066
+ 516.0,
3067
+ 520.0,
3068
+ 524.0,
3069
+ 528.0,
3070
+ 532.0,
3071
+ 536.0,
3072
+ 540.0,
3073
+ 544.0,
3074
+ 548.0,
3075
+ 552.0,
3076
+ 556.0,
3077
+ 560.0,
3078
+ 564.0,
3079
+ 568.0,
3080
+ 572.0,
3081
+ 576.0,
3082
+ 580.0,
3083
+ 584.0,
3084
+ 588.0,
3085
+ 592.0,
3086
+ 596.0,
3087
+ 600.0,
3088
+ 604.0,
3089
+ 608.0,
3090
+ 612.0,
3091
+ 616.0,
3092
+ 620.0,
3093
+ 624.0,
3094
+ 628.0,
3095
+ 632.0,
3096
+ 636.0,
3097
+ 640.0,
3098
+ 644.0,
3099
+ 648.0,
3100
+ 652.0,
3101
+ 656.0,
3102
+ 660.0,
3103
+ 664.0,
3104
+ 668.0,
3105
+ 672.0,
3106
+ 676.0,
3107
+ 680.0,
3108
+ 684.0,
3109
+ 688.0,
3110
+ 692.0,
3111
+ 696.0,
3112
+ 700.0,
3113
+ 704.0,
3114
+ 708.0,
3115
+ 712.0,
3116
+ 716.0,
3117
+ 720.0,
3118
+ 724.0,
3119
+ 728.0,
3120
+ 732.0,
3121
+ 736.0,
3122
+ 740.0,
3123
+ 744.0,
3124
+ 748.0,
3125
+ 752.0,
3126
+ 756.0,
3127
+ 760.0,
3128
+ 764.0,
3129
+ 768.0,
3130
+ 772.0,
3131
+ 776.0,
3132
+ 780.0,
3133
+ 380.0,
3134
+ 384.0,
3135
+ 388.0,
3136
+ 392.0,
3137
+ 396.0,
3138
+ 400.0,
3139
+ 404.0,
3140
+ 408.0,
3141
+ 412.0,
3142
+ 416.0,
3143
+ 420.0,
3144
+ 424.0,
3145
+ 428.0,
3146
+ 432.0,
3147
+ 436.0,
3148
+ 440.0,
3149
+ 444.0,
3150
+ 448.0,
3151
+ 452.0,
3152
+ 456.0,
3153
+ 460.0,
3154
+ 464.0,
3155
+ 468.0,
3156
+ 472.0,
3157
+ 476.0,
3158
+ 480.0,
3159
+ 484.0,
3160
+ 488.0,
3161
+ 492.0,
3162
+ 496.0,
3163
+ 500.0,
3164
+ 504.0,
3165
+ 508.0,
3166
+ 512.0,
3167
+ 516.0,
3168
+ 520.0,
3169
+ 524.0,
3170
+ 528.0,
3171
+ 532.0,
3172
+ 536.0,
3173
+ 540.0,
3174
+ 544.0,
3175
+ 548.0,
3176
+ 552.0,
3177
+ 556.0,
3178
+ 560.0,
3179
+ 564.0,
3180
+ 568.0,
3181
+ 572.0,
3182
+ 576.0,
3183
+ 580.0,
3184
+ 584.0,
3185
+ 588.0,
3186
+ 592.0,
3187
+ 596.0,
3188
+ 600.0,
3189
+ 604.0,
3190
+ 608.0,
3191
+ 612.0,
3192
+ 616.0,
3193
+ 620.0,
3194
+ 624.0,
3195
+ 628.0,
3196
+ 632.0,
3197
+ 636.0,
3198
+ 640.0,
3199
+ 644.0,
3200
+ 648.0,
3201
+ 652.0,
3202
+ 656.0,
3203
+ 660.0,
3204
+ 664.0,
3205
+ 668.0,
3206
+ 672.0,
3207
+ 676.0,
3208
+ 680.0,
3209
+ 684.0,
3210
+ 688.0,
3211
+ 692.0,
3212
+ 696.0,
3213
+ 700.0,
3214
+ 704.0,
3215
+ 708.0,
3216
+ 712.0,
3217
+ 716.0,
3218
+ 720.0,
3219
+ 724.0,
3220
+ 728.0,
3221
+ 732.0,
3222
+ 736.0,
3223
+ 740.0,
3224
+ 744.0,
3225
+ 748.0,
3226
+ 752.0,
3227
+ 756.0,
3228
+ 760.0,
3229
+ 764.0,
3230
+ 768.0,
3231
+ 772.0,
3232
+ 776.0,
3233
+ 780.0,
3234
+ 780.0,
3235
+ 790.0,
3236
+ 800.0,
3237
+ 810.0,
3238
+ 820.0,
3239
+ 830.0,
3240
+ 840.0,
3241
+ 850.0,
3242
+ 860.0,
3243
+ 870.0,
3244
+ 880.0,
3245
+ 890.0,
3246
+ 900.0,
3247
+ 910.0,
3248
+ 920.0,
3249
+ 930.0,
3250
+ 940.0,
3251
+ 950.0,
3252
+ 960.0,
3253
+ 970.0,
3254
+ 980.0,
3255
+ 990.0,
3256
+ 1000.0,
3257
+ 1010.0,
3258
+ 1020.0,
3259
+ 1030.0,
3260
+ 1040.0,
3261
+ 1050.0,
3262
+ 1060.0,
3263
+ 1070.0,
3264
+ 1080.0,
3265
+ 1090.0,
3266
+ 1100.0,
3267
+ 1110.0,
3268
+ 1120.0,
3269
+ 1130.0,
3270
+ 1140.0,
3271
+ 1150.0,
3272
+ 1160.0,
3273
+ 1170.0,
3274
+ 1180.0,
3275
+ 1190.0,
3276
+ 1200.0,
3277
+ 1210.0,
3278
+ 1220.0,
3279
+ 1230.0,
3280
+ 1240.0,
3281
+ 1250.0,
3282
+ 1260.0,
3283
+ 1270.0,
3284
+ 1280.0,
3285
+ 1290.0,
3286
+ 1300.0,
3287
+ 1310.0,
3288
+ 1320.0,
3289
+ 1330.0,
3290
+ 1340.0,
3291
+ 1350.0,
3292
+ 1360.0,
3293
+ 1370.0,
3294
+ 1380.0,
3295
+ 1390.0,
3296
+ 1400.0,
3297
+ 1410.0,
3298
+ 1420.0,
3299
+ 1430.0,
3300
+ 1440.0,
3301
+ 1450.0,
3302
+ 1460.0,
3303
+ 1470.0,
3304
+ 1480.0,
3305
+ 1490.0,
3306
+ 1500.0,
3307
+ 1510.0,
3308
+ 1520.0,
3309
+ 1530.0,
3310
+ 1540.0,
3311
+ 1550.0,
3312
+ 1560.0,
3313
+ 1570.0,
3314
+ 1580.0,
3315
+ 1590.0,
3316
+ 1600.0,
3317
+ 1610.0,
3318
+ 1620.0,
3319
+ 1630.0,
3320
+ 1640.0,
3321
+ 1650.0,
3322
+ 1660.0,
3323
+ 1670.0,
3324
+ 1680.0,
3325
+ 1690.0,
3326
+ 1700.0,
3327
+ 1710.0,
3328
+ 1720.0,
3329
+ 1730.0,
3330
+ 1740.0,
3331
+ 1750.0,
3332
+ 1760.0,
3333
+ 1770.0,
3334
+ 1780.0,
3335
+ 1790.0,
3336
+ 1800.0,
3337
+ 1810.0,
3338
+ 1820.0,
3339
+ 1830.0,
3340
+ 1840.0,
3341
+ 1850.0,
3342
+ 1860.0,
3343
+ 1870.0,
3344
+ 1880.0,
3345
+ 1890.0,
3346
+ 1900.0,
3347
+ 1910.0,
3348
+ 1920.0,
3349
+ 1930.0,
3350
+ 1940.0,
3351
+ 1950.0,
3352
+ 1960.0,
3353
+ 1970.0,
3354
+ 1980.0,
3355
+ 1990.0,
3356
+ 2000.0,
3357
+ 2010.0,
3358
+ 2020.0,
3359
+ 2030.0,
3360
+ 2040.0,
3361
+ 2050.0,
3362
+ 2060.0,
3363
+ 2070.0,
3364
+ 2080.0,
3365
+ 2090.0,
3366
+ 2100.0,
3367
+ 2110.0,
3368
+ 2120.0,
3369
+ 2130.0,
3370
+ 2140.0,
3371
+ 2150.0,
3372
+ 2160.0,
3373
+ 2170.0,
3374
+ 2180.0,
3375
+ 2190.0,
3376
+ 2200.0,
3377
+ 2210.0,
3378
+ 2220.0,
3379
+ 2230.0,
3380
+ 2240.0,
3381
+ 2250.0,
3382
+ 2260.0,
3383
+ 2270.0,
3384
+ 2280.0,
3385
+ 2290.0,
3386
+ 2300.0,
3387
+ 2310.0,
3388
+ 2320.0,
3389
+ 2330.0,
3390
+ 2340.0,
3391
+ 2350.0,
3392
+ 2360.0,
3393
+ 2370.0,
3394
+ 2380.0,
3395
+ 2390.0,
3396
+ 2400.0,
3397
+ 2410.0,
3398
+ 2420.0,
3399
+ 2430.0,
3400
+ 2440.0,
3401
+ 2450.0,
3402
+ 2460.0,
3403
+ 2470.0,
3404
+ 2480.0,
3405
+ 2490.0,
3406
+ 2500.0,
3407
+ 780.0,
3408
+ 790.0,
3409
+ 800.0,
3410
+ 810.0,
3411
+ 820.0,
3412
+ 830.0,
3413
+ 840.0,
3414
+ 850.0,
3415
+ 860.0,
3416
+ 870.0,
3417
+ 880.0,
3418
+ 890.0,
3419
+ 900.0,
3420
+ 910.0,
3421
+ 920.0,
3422
+ 930.0,
3423
+ 940.0,
3424
+ 950.0,
3425
+ 960.0,
3426
+ 970.0,
3427
+ 980.0,
3428
+ 990.0,
3429
+ 1000.0,
3430
+ 1010.0,
3431
+ 1020.0,
3432
+ 1030.0,
3433
+ 1040.0,
3434
+ 1050.0,
3435
+ 1060.0,
3436
+ 1070.0,
3437
+ 1080.0,
3438
+ 1090.0,
3439
+ 1100.0,
3440
+ 1110.0,
3441
+ 1120.0,
3442
+ 1130.0,
3443
+ 1140.0,
3444
+ 1150.0,
3445
+ 1160.0,
3446
+ 1170.0,
3447
+ 1180.0,
3448
+ 1190.0,
3449
+ 1200.0,
3450
+ 1210.0,
3451
+ 1220.0,
3452
+ 1230.0,
3453
+ 1240.0,
3454
+ 1250.0,
3455
+ 1260.0,
3456
+ 1270.0,
3457
+ 1280.0,
3458
+ 1290.0,
3459
+ 1300.0,
3460
+ 1310.0,
3461
+ 1320.0,
3462
+ 1330.0,
3463
+ 1340.0,
3464
+ 1350.0,
3465
+ 1360.0,
3466
+ 1370.0,
3467
+ 1380.0,
3468
+ 1390.0,
3469
+ 1400.0,
3470
+ 1410.0,
3471
+ 1420.0,
3472
+ 1430.0,
3473
+ 1440.0,
3474
+ 1450.0,
3475
+ 1460.0,
3476
+ 1470.0,
3477
+ 1480.0,
3478
+ 1490.0,
3479
+ 1500.0,
3480
+ 1510.0,
3481
+ 1520.0,
3482
+ 1530.0,
3483
+ 1540.0,
3484
+ 1550.0,
3485
+ 1560.0,
3486
+ 1570.0,
3487
+ 1580.0,
3488
+ 1590.0,
3489
+ 1600.0,
3490
+ 1610.0,
3491
+ 1620.0,
3492
+ 1630.0,
3493
+ 1640.0,
3494
+ 1650.0,
3495
+ 1660.0,
3496
+ 1670.0,
3497
+ 1680.0,
3498
+ 1690.0,
3499
+ 1700.0,
3500
+ 1710.0,
3501
+ 1720.0,
3502
+ 1730.0,
3503
+ 1740.0,
3504
+ 1750.0,
3505
+ 1760.0,
3506
+ 1770.0,
3507
+ 1780.0,
3508
+ 1790.0,
3509
+ 1800.0,
3510
+ 1810.0,
3511
+ 1820.0,
3512
+ 1830.0,
3513
+ 1840.0,
3514
+ 1850.0,
3515
+ 1860.0,
3516
+ 1870.0,
3517
+ 1880.0,
3518
+ 1890.0,
3519
+ 1900.0,
3520
+ 1910.0,
3521
+ 1920.0,
3522
+ 1930.0,
3523
+ 1940.0,
3524
+ 1950.0,
3525
+ 1960.0,
3526
+ 1970.0,
3527
+ 1980.0,
3528
+ 1990.0,
3529
+ 2000.0,
3530
+ 2010.0,
3531
+ 2020.0,
3532
+ 2030.0,
3533
+ 2040.0,
3534
+ 2050.0,
3535
+ 2060.0,
3536
+ 2070.0,
3537
+ 2080.0,
3538
+ 2090.0,
3539
+ 2100.0,
3540
+ 2110.0,
3541
+ 2120.0,
3542
+ 2130.0,
3543
+ 2140.0,
3544
+ 2150.0,
3545
+ 2160.0,
3546
+ 2170.0,
3547
+ 2180.0,
3548
+ 2190.0,
3549
+ 2200.0,
3550
+ 2210.0,
3551
+ 2220.0,
3552
+ 2230.0,
3553
+ 2240.0,
3554
+ 2250.0,
3555
+ 2260.0,
3556
+ 2270.0,
3557
+ 2280.0,
3558
+ 2290.0,
3559
+ 2300.0,
3560
+ 2310.0,
3561
+ 2320.0,
3562
+ 2330.0,
3563
+ 2340.0,
3564
+ 2350.0,
3565
+ 2360.0,
3566
+ 2370.0,
3567
+ 2380.0,
3568
+ 2390.0,
3569
+ 2400.0,
3570
+ 2410.0,
3571
+ 2420.0,
3572
+ 2430.0,
3573
+ 2440.0,
3574
+ 2450.0,
3575
+ 2460.0,
3576
+ 2470.0,
3577
+ 2480.0,
3578
+ 2490.0,
3579
+ 2500.0,
3580
+ 2500.0,
3581
+ 2600.0,
3582
+ 2700.0,
3583
+ 2800.0,
3584
+ 2900.0,
3585
+ 3000.0,
3586
+ 3100.0,
3587
+ 3200.0,
3588
+ 3300.0,
3589
+ 3400.0,
3590
+ 3500.0,
3591
+ 3600.0,
3592
+ 3700.0,
3593
+ 3800.0,
3594
+ 3900.0,
3595
+ 4000.0,
3596
+ 4100.0,
3597
+ 4200.0,
3598
+ 4300.0,
3599
+ 4400.0,
3600
+ 4500.0,
3601
+ 4600.0,
3602
+ 4700.0,
3603
+ 4800.0,
3604
+ 4900.0,
3605
+ 5000.0,
3606
+ 5100.0,
3607
+ 5200.0,
3608
+ 5300.0,
3609
+ 5400.0,
3610
+ 5500.0,
3611
+ 5600.0,
3612
+ 5700.0,
3613
+ 5800.0,
3614
+ 5900.0,
3615
+ 6000.0,
3616
+ 6100.0,
3617
+ 6200.0,
3618
+ 6300.0,
3619
+ 6400.0,
3620
+ 6500.0,
3621
+ 6600.0,
3622
+ 6700.0,
3623
+ 6800.0,
3624
+ 6900.0,
3625
+ 7000.0,
3626
+ 7100.0,
3627
+ 7200.0,
3628
+ 7300.0,
3629
+ 7400.0,
3630
+ 7500.0,
3631
+ 7600.0,
3632
+ 7700.0,
3633
+ 7800.0,
3634
+ 7900.0,
3635
+ 8000.0,
3636
+ 8100.0,
3637
+ 8200.0,
3638
+ 8300.0,
3639
+ 8400.0,
3640
+ 8500.0,
3641
+ 8600.0,
3642
+ 8700.0,
3643
+ 8800.0,
3644
+ 8900.0,
3645
+ 9000.0,
3646
+ 9100.0,
3647
+ 9200.0,
3648
+ 9300.0,
3649
+ 9400.0,
3650
+ 9500.0,
3651
+ 9600.0,
3652
+ 9700.0,
3653
+ 9800.0,
3654
+ 9900.0,
3655
+ 10000.0,
3656
+ 10100.0,
3657
+ 10200.0,
3658
+ 10300.0,
3659
+ 10400.0,
3660
+ 10500.0,
3661
+ 10600.0,
3662
+ 10700.0,
3663
+ 10800.0,
3664
+ 10900.0,
3665
+ 11000.0,
3666
+ 11100.0,
3667
+ 11200.0,
3668
+ 11300.0,
3669
+ 11400.0,
3670
+ 11500.0,
3671
+ 11600.0,
3672
+ 11700.0,
3673
+ 11800.0,
3674
+ 11900.0,
3675
+ 12000.0,
3676
+ 12100.0,
3677
+ 12200.0,
3678
+ 12300.0,
3679
+ 12400.0,
3680
+ 12500.0,
3681
+ 12600.0,
3682
+ 12700.0,
3683
+ 12800.0,
3684
+ 12900.0,
3685
+ 13000.0,
3686
+ 13100.0,
3687
+ 13200.0,
3688
+ 13300.0,
3689
+ 13400.0,
3690
+ 13500.0,
3691
+ 13600.0,
3692
+ 13700.0,
3693
+ 13800.0,
3694
+ 13900.0,
3695
+ 14000.0,
3696
+ 14100.0,
3697
+ 14200.0,
3698
+ 14300.0,
3699
+ 14400.0,
3700
+ 14500.0,
3701
+ 14600.0,
3702
+ 14700.0,
3703
+ 14800.0,
3704
+ 14900.0,
3705
+ 15000.0,
3706
+ 15100.0,
3707
+ 15200.0,
3708
+ 15300.0,
3709
+ 15400.0,
3710
+ 15500.0,
3711
+ 15600.0,
3712
+ 15700.0,
3713
+ 15800.0,
3714
+ 15900.0,
3715
+ 16000.0,
3716
+ 16100.0,
3717
+ 16200.0,
3718
+ 16300.0,
3719
+ 16400.0,
3720
+ 16500.0,
3721
+ 16600.0,
3722
+ 16700.0,
3723
+ 16800.0,
3724
+ 16900.0,
3725
+ 17000.0,
3726
+ 17100.0,
3727
+ 17200.0,
3728
+ 17300.0,
3729
+ 17400.0,
3730
+ 17500.0,
3731
+ 17600.0,
3732
+ 17700.0,
3733
+ 17800.0,
3734
+ 17900.0,
3735
+ 18000.0,
3736
+ 18100.0,
3737
+ 18200.0,
3738
+ 18300.0,
3739
+ 18400.0,
3740
+ 18500.0,
3741
+ 18600.0,
3742
+ 18700.0,
3743
+ 18800.0,
3744
+ 18900.0,
3745
+ 19000.0,
3746
+ 19100.0,
3747
+ 19200.0,
3748
+ 19300.0,
3749
+ 19400.0,
3750
+ 19500.0,
3751
+ 19600.0,
3752
+ 19700.0,
3753
+ 19800.0,
3754
+ 19900.0,
3755
+ 20000.0,
3756
+ 20100.0,
3757
+ 20200.0,
3758
+ 20300.0,
3759
+ 20400.0,
3760
+ 20500.0,
3761
+ 20600.0,
3762
+ 20700.0,
3763
+ 20800.0,
3764
+ 20900.0,
3765
+ 21000.0,
3766
+ 21100.0,
3767
+ 21200.0,
3768
+ 21300.0,
3769
+ 21400.0,
3770
+ 21500.0,
3771
+ 21600.0,
3772
+ 21700.0,
3773
+ 21800.0,
3774
+ 21900.0,
3775
+ 22000.0,
3776
+ 22100.0,
3777
+ 22200.0,
3778
+ 22300.0,
3779
+ 22400.0,
3780
+ 22500.0,
3781
+ 22600.0,
3782
+ 22700.0,
3783
+ 22800.0,
3784
+ 22900.0,
3785
+ 23000.0,
3786
+ 23100.0,
3787
+ 23200.0,
3788
+ 23300.0,
3789
+ 23400.0,
3790
+ 23500.0,
3791
+ 23600.0,
3792
+ 23700.0,
3793
+ 23800.0,
3794
+ 23900.0,
3795
+ 24000.0,
3796
+ 24100.0,
3797
+ 24200.0,
3798
+ 24300.0,
3799
+ 24400.0,
3800
+ 24500.0,
3801
+ 24600.0,
3802
+ 24700.0,
3803
+ 24800.0,
3804
+ 24900.0,
3805
+ 25000.0
3806
+ ],
3807
+ "window_id_map": {
3808
+ "vis": 0,
3809
+ "nir": 1,
3810
+ "ir": 2
3811
+ },
3812
+ "channel_id_map": {
3813
+ "R": 0,
3814
+ "T": 1,
3815
+ "E": 2
3816
+ },
3817
+ "condition_modes": [
3818
+ "full_condition",
3819
+ "vis_only",
3820
+ "nir_only",
3821
+ "ir_only",
3822
+ "vis_nir",
3823
+ "vis_ir",
3824
+ "nir_ir",
3825
+ "custom_channel_subset"
3826
+ ]
3827
+ }
manifest.json ADDED
@@ -0,0 +1,745 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_name": "prepared_training_dataset_windows_hf_subset",
3
+ "dataset_version": "hf_parquet_subset_v1",
4
+ "source_dataset_root": "F:\\PhysOptoFlow_2\\new_data_windows",
5
+ "source_manifest_path": "F:\\PhysOptoFlow_1\\new_data_windows_v1\\source_manifest.original.json",
6
+ "source_record_format": "compact_jsonl_gz_plus_target_uint16_x1000",
7
+ "record_format": "hf_parquet_uint16_target_plus_padded_meta_v1",
8
+ "created_at": "2026-03-27 14:24:52",
9
+ "target_field_length": 774,
10
+ "target_decode_scale": 0.001,
11
+ "chunk_size": 32768,
12
+ "max_layers": 24,
13
+ "sample_id_bytes": 32,
14
+ "allowed_material_count": 14,
15
+ "allowed_layer_count_len": 25,
16
+ "selected_splits": [
17
+ "train",
18
+ "val",
19
+ "test"
20
+ ],
21
+ "partial_conversion": false,
22
+ "converted_source_shards": 1984,
23
+ "sample_order": "source_shard_order_then_rebalance_overflow_append",
24
+ "train_shuffle_required": false,
25
+ "elapsed_sec": 1150.2428065000001,
26
+ "splits": {
27
+ "train": {
28
+ "split": "train",
29
+ "requested_sample_count": 18831633,
30
+ "written_sample_count": 18831633,
31
+ "n_chunks": 577,
32
+ "chunk_size": 32768,
33
+ "sample_order": "source_shard_order_then_rebalance_overflow_append",
34
+ "partial_conversion": false,
35
+ "target_field_dtype": "uint16",
36
+ "target_field_shape_per_sample": [
37
+ 774
38
+ ],
39
+ "sample_id_dtype": "S32",
40
+ "structure_max_layers": 24,
41
+ "allowed_material_count": 14,
42
+ "allowed_layer_count_len": 25,
43
+ "chunk_sizes": [
44
+ 32768,
45
+ 32768,
46
+ 32768,
47
+ 32768,
48
+ 32768,
49
+ 32768,
50
+ 32768,
51
+ 32768,
52
+ 32768,
53
+ 32768,
54
+ 32768,
55
+ 32768,
56
+ 32768,
57
+ 32768,
58
+ 32768,
59
+ 32768,
60
+ 32768,
61
+ 32768,
62
+ 32768,
63
+ 32768,
64
+ 32768,
65
+ 32768,
66
+ 32768,
67
+ 32768,
68
+ 32768,
69
+ 32768,
70
+ 32768,
71
+ 32768,
72
+ 32768,
73
+ 32768,
74
+ 32768,
75
+ 32768,
76
+ 32768,
77
+ 32768,
78
+ 32768,
79
+ 32768,
80
+ 32768,
81
+ 32768,
82
+ 32768,
83
+ 32768,
84
+ 32768,
85
+ 32768,
86
+ 32768,
87
+ 32768,
88
+ 32768,
89
+ 32768,
90
+ 32768,
91
+ 32768,
92
+ 32768,
93
+ 32768,
94
+ 32768,
95
+ 32768,
96
+ 32768,
97
+ 32768,
98
+ 32768,
99
+ 32768,
100
+ 32768,
101
+ 32768,
102
+ 32768,
103
+ 32768,
104
+ 32768,
105
+ 32768,
106
+ 32768,
107
+ 32768,
108
+ 32768,
109
+ 32768,
110
+ 32768,
111
+ 32768,
112
+ 32768,
113
+ 32768,
114
+ 32768,
115
+ 32768,
116
+ 32768,
117
+ 32768,
118
+ 32768,
119
+ 32768,
120
+ 32768,
121
+ 32768,
122
+ 32768,
123
+ 32768,
124
+ 32768,
125
+ 32768,
126
+ 32768,
127
+ 32768,
128
+ 32768,
129
+ 32768,
130
+ 32768,
131
+ 32768,
132
+ 32768,
133
+ 32768,
134
+ 32768,
135
+ 32768,
136
+ 32768,
137
+ 32768,
138
+ 32768,
139
+ 32768,
140
+ 32768,
141
+ 32768,
142
+ 32768,
143
+ 32768,
144
+ 32768,
145
+ 32768,
146
+ 32768,
147
+ 32768,
148
+ 32768,
149
+ 32768,
150
+ 32768,
151
+ 32768,
152
+ 32768,
153
+ 32768,
154
+ 32768,
155
+ 32768,
156
+ 32768,
157
+ 32768,
158
+ 32768,
159
+ 32768,
160
+ 32768,
161
+ 32768,
162
+ 32768,
163
+ 32768,
164
+ 32768,
165
+ 32768,
166
+ 32768,
167
+ 32768,
168
+ 32768,
169
+ 32768,
170
+ 32768,
171
+ 32768,
172
+ 32768,
173
+ 32768,
174
+ 32768,
175
+ 32768,
176
+ 32768,
177
+ 32768,
178
+ 32768,
179
+ 32768,
180
+ 32768,
181
+ 32768,
182
+ 32768,
183
+ 32768,
184
+ 32768,
185
+ 32768,
186
+ 32768,
187
+ 32768,
188
+ 32768,
189
+ 32768,
190
+ 32768,
191
+ 32768,
192
+ 32768,
193
+ 32768,
194
+ 32768,
195
+ 32768,
196
+ 32768,
197
+ 32768,
198
+ 32768,
199
+ 32768,
200
+ 32768,
201
+ 32768,
202
+ 32768,
203
+ 32768,
204
+ 32768,
205
+ 32768,
206
+ 32768,
207
+ 32768,
208
+ 32768,
209
+ 32768,
210
+ 32768,
211
+ 32768,
212
+ 32768,
213
+ 32768,
214
+ 32768,
215
+ 32768,
216
+ 32768,
217
+ 32768,
218
+ 32768,
219
+ 32768,
220
+ 32768,
221
+ 32768,
222
+ 32768,
223
+ 32768,
224
+ 32768,
225
+ 32768,
226
+ 32768,
227
+ 32768,
228
+ 32768,
229
+ 32768,
230
+ 32768,
231
+ 32768,
232
+ 32768,
233
+ 32768,
234
+ 32768,
235
+ 32768,
236
+ 32768,
237
+ 32768,
238
+ 32768,
239
+ 32768,
240
+ 32768,
241
+ 32768,
242
+ 32768,
243
+ 32768,
244
+ 32768,
245
+ 32768,
246
+ 32768,
247
+ 32768,
248
+ 32768,
249
+ 32768,
250
+ 32768,
251
+ 32768,
252
+ 32768,
253
+ 32768,
254
+ 32768,
255
+ 32768,
256
+ 32768,
257
+ 32768,
258
+ 32768,
259
+ 32768,
260
+ 32768,
261
+ 32768,
262
+ 32768,
263
+ 32768,
264
+ 32768,
265
+ 32768,
266
+ 32768,
267
+ 32768,
268
+ 32768,
269
+ 32768,
270
+ 32768,
271
+ 32768,
272
+ 32768,
273
+ 32768,
274
+ 32768,
275
+ 32768,
276
+ 32768,
277
+ 32768,
278
+ 32768,
279
+ 32768,
280
+ 32768,
281
+ 32768,
282
+ 32768,
283
+ 32768,
284
+ 32768,
285
+ 32768,
286
+ 32768,
287
+ 32768,
288
+ 32768,
289
+ 32768,
290
+ 32768,
291
+ 32768,
292
+ 32768,
293
+ 32768,
294
+ 32768,
295
+ 32768,
296
+ 32768,
297
+ 32768,
298
+ 32768,
299
+ 32768,
300
+ 32768,
301
+ 32768,
302
+ 32768,
303
+ 32768,
304
+ 32768,
305
+ 32768,
306
+ 32768,
307
+ 32768,
308
+ 32768,
309
+ 32768,
310
+ 32768,
311
+ 32768,
312
+ 32768,
313
+ 32768,
314
+ 32768,
315
+ 32768,
316
+ 32768,
317
+ 32768,
318
+ 32768,
319
+ 32768,
320
+ 32768,
321
+ 32768,
322
+ 32768,
323
+ 32768,
324
+ 32768,
325
+ 32768,
326
+ 32768,
327
+ 32768,
328
+ 32768,
329
+ 32768,
330
+ 32768,
331
+ 32768,
332
+ 32768,
333
+ 32768,
334
+ 32768,
335
+ 32768,
336
+ 32768,
337
+ 32768,
338
+ 32768,
339
+ 32768,
340
+ 32768,
341
+ 32768,
342
+ 32768,
343
+ 32768,
344
+ 32768,
345
+ 32768,
346
+ 32768,
347
+ 32768,
348
+ 32768,
349
+ 32768,
350
+ 32768,
351
+ 32768,
352
+ 32768,
353
+ 32768,
354
+ 32768,
355
+ 32768,
356
+ 32768,
357
+ 32768,
358
+ 32768,
359
+ 32768,
360
+ 32768,
361
+ 32768,
362
+ 32768,
363
+ 32768,
364
+ 32768,
365
+ 32768,
366
+ 32768,
367
+ 32768,
368
+ 32768,
369
+ 32768,
370
+ 32768,
371
+ 32768,
372
+ 32768,
373
+ 32768,
374
+ 32768,
375
+ 32768,
376
+ 32768,
377
+ 32768,
378
+ 32768,
379
+ 32768,
380
+ 32768,
381
+ 32768,
382
+ 32768,
383
+ 32768,
384
+ 32768,
385
+ 32768,
386
+ 32768,
387
+ 32768,
388
+ 32768,
389
+ 32768,
390
+ 32768,
391
+ 32768,
392
+ 32768,
393
+ 32768,
394
+ 32768,
395
+ 32768,
396
+ 32768,
397
+ 32768,
398
+ 32768,
399
+ 32768,
400
+ 32768,
401
+ 32768,
402
+ 32768,
403
+ 32768,
404
+ 32768,
405
+ 32768,
406
+ 32768,
407
+ 32768,
408
+ 32768,
409
+ 32768,
410
+ 32768,
411
+ 32768,
412
+ 32768,
413
+ 32768,
414
+ 32768,
415
+ 32768,
416
+ 32768,
417
+ 32768,
418
+ 32768,
419
+ 32768,
420
+ 32768,
421
+ 32768,
422
+ 32768,
423
+ 32768,
424
+ 32768,
425
+ 32768,
426
+ 32768,
427
+ 32768,
428
+ 32768,
429
+ 32768,
430
+ 32768,
431
+ 32768,
432
+ 32768,
433
+ 32768,
434
+ 32768,
435
+ 32768,
436
+ 32768,
437
+ 32768,
438
+ 32768,
439
+ 32768,
440
+ 32768,
441
+ 32768,
442
+ 32768,
443
+ 32768,
444
+ 32768,
445
+ 32768,
446
+ 32768,
447
+ 32768,
448
+ 32768,
449
+ 32768,
450
+ 32768,
451
+ 32768,
452
+ 32768,
453
+ 32768,
454
+ 32768,
455
+ 32768,
456
+ 32768,
457
+ 32768,
458
+ 32768,
459
+ 32768,
460
+ 32768,
461
+ 32768,
462
+ 32768,
463
+ 32768,
464
+ 32768,
465
+ 32768,
466
+ 32768,
467
+ 32768,
468
+ 32768,
469
+ 32768,
470
+ 32768,
471
+ 32768,
472
+ 32768,
473
+ 32768,
474
+ 32768,
475
+ 32768,
476
+ 32768,
477
+ 32768,
478
+ 32768,
479
+ 32768,
480
+ 32768,
481
+ 32768,
482
+ 32768,
483
+ 32768,
484
+ 32768,
485
+ 32768,
486
+ 32768,
487
+ 32768,
488
+ 32768,
489
+ 32768,
490
+ 32768,
491
+ 32768,
492
+ 32768,
493
+ 32768,
494
+ 32768,
495
+ 32768,
496
+ 32768,
497
+ 32768,
498
+ 32768,
499
+ 32768,
500
+ 32768,
501
+ 32768,
502
+ 32768,
503
+ 32768,
504
+ 32768,
505
+ 32768,
506
+ 32768,
507
+ 32768,
508
+ 32768,
509
+ 32768,
510
+ 32768,
511
+ 32768,
512
+ 32768,
513
+ 32768,
514
+ 32768,
515
+ 32768,
516
+ 32768,
517
+ 32768,
518
+ 32768,
519
+ 32768,
520
+ 32768,
521
+ 32768,
522
+ 32768,
523
+ 32768,
524
+ 32768,
525
+ 32768,
526
+ 32768,
527
+ 32768,
528
+ 5594,
529
+ 24288,
530
+ 32768,
531
+ 32768,
532
+ 32768,
533
+ 32768,
534
+ 32768,
535
+ 32768,
536
+ 32768,
537
+ 32768,
538
+ 32768,
539
+ 32768,
540
+ 32768,
541
+ 32768,
542
+ 32768,
543
+ 32768,
544
+ 8542,
545
+ 24288,
546
+ 32768,
547
+ 32768,
548
+ 32768,
549
+ 32768,
550
+ 32768,
551
+ 32768,
552
+ 32768,
553
+ 32768,
554
+ 32768,
555
+ 32768,
556
+ 32768,
557
+ 32768,
558
+ 32768,
559
+ 32768,
560
+ 32768,
561
+ 32768,
562
+ 32768,
563
+ 32768,
564
+ 32768,
565
+ 32768,
566
+ 32768,
567
+ 32768,
568
+ 32768,
569
+ 32768,
570
+ 32768,
571
+ 32768,
572
+ 32768,
573
+ 32768,
574
+ 32768,
575
+ 32768,
576
+ 32768,
577
+ 32768,
578
+ 32768,
579
+ 32768,
580
+ 32768,
581
+ 32768,
582
+ 32768,
583
+ 32768,
584
+ 32768,
585
+ 32768,
586
+ 32768,
587
+ 32768,
588
+ 32768,
589
+ 32768,
590
+ 32768,
591
+ 32768,
592
+ 32768,
593
+ 32768,
594
+ 32768,
595
+ 32768,
596
+ 32768,
597
+ 32768,
598
+ 32768,
599
+ 32768,
600
+ 32768,
601
+ 32768,
602
+ 32768,
603
+ 32768,
604
+ 32768,
605
+ 32768,
606
+ 32768,
607
+ 32768,
608
+ 32768,
609
+ 32768,
610
+ 32768,
611
+ 32768,
612
+ 32768,
613
+ 32768,
614
+ 32768,
615
+ 32768,
616
+ 32768,
617
+ 32768,
618
+ 32768,
619
+ 32768,
620
+ 25625
621
+ ],
622
+ "rebalance_before_count": 15865306,
623
+ "rebalance_keep_limit": null,
624
+ "rebalance_action": "append_overflow_from_val_and_test"
625
+ },
626
+ "val": {
627
+ "split": "val",
628
+ "requested_sample_count": 500000,
629
+ "written_sample_count": 500000,
630
+ "n_chunks": 16,
631
+ "chunk_size": 32768,
632
+ "sample_order": "source_shard_order_prefix_only",
633
+ "partial_conversion": false,
634
+ "target_field_dtype": "uint16",
635
+ "target_field_shape_per_sample": [
636
+ 774
637
+ ],
638
+ "sample_id_dtype": "S32",
639
+ "structure_max_layers": 24,
640
+ "allowed_material_count": 14,
641
+ "allowed_layer_count_len": 25,
642
+ "chunk_sizes": [
643
+ 32768,
644
+ 32768,
645
+ 32768,
646
+ 32768,
647
+ 32768,
648
+ 32768,
649
+ 32768,
650
+ 32768,
651
+ 32768,
652
+ 32768,
653
+ 32768,
654
+ 32768,
655
+ 32768,
656
+ 32768,
657
+ 32768,
658
+ 8480
659
+ ],
660
+ "rebalance_before_count": 991582,
661
+ "rebalance_keep_limit": 500000,
662
+ "rebalance_action": "keep_prefix_only"
663
+ },
664
+ "test": {
665
+ "split": "test",
666
+ "requested_sample_count": 500000,
667
+ "written_sample_count": 500000,
668
+ "n_chunks": 16,
669
+ "chunk_size": 32768,
670
+ "sample_order": "source_shard_order_prefix_only",
671
+ "partial_conversion": false,
672
+ "target_field_dtype": "uint16",
673
+ "target_field_shape_per_sample": [
674
+ 774
675
+ ],
676
+ "sample_id_dtype": "S32",
677
+ "structure_max_layers": 24,
678
+ "allowed_material_count": 14,
679
+ "allowed_layer_count_len": 25,
680
+ "chunk_sizes": [
681
+ 32768,
682
+ 32768,
683
+ 32768,
684
+ 32768,
685
+ 32768,
686
+ 32768,
687
+ 32768,
688
+ 32768,
689
+ 32768,
690
+ 32768,
691
+ 32768,
692
+ 32768,
693
+ 32768,
694
+ 32768,
695
+ 32768,
696
+ 8480
697
+ ],
698
+ "rebalance_before_count": 2974745,
699
+ "rebalance_keep_limit": 500000,
700
+ "rebalance_action": "keep_prefix_only"
701
+ }
702
+ },
703
+ "split_rebalance": {
704
+ "applied_at": "2026-03-27 14:36:22",
705
+ "policy": {
706
+ "keep_val_prefix": 500000,
707
+ "keep_test_prefix": 500000,
708
+ "overflow_to_train": true
709
+ },
710
+ "before_counts": {
711
+ "train": 15865306,
712
+ "val": 991582,
713
+ "test": 2974745
714
+ },
715
+ "after_counts": {
716
+ "val": 500000,
717
+ "test": 500000,
718
+ "train": 18831633
719
+ }
720
+ },
721
+ "prepared_sample_count": 11000000,
722
+ "split_stats": {
723
+ "train_count": 10000000,
724
+ "val_count": 500000,
725
+ "test_count": 500000,
726
+ "split_format": "hf_parquet_uint16_target_plus_padded_meta_v1",
727
+ "subset_policy": {
728
+ "train_prefix_count": 10000000,
729
+ "val_prefix_count": 500000,
730
+ "test_prefix_count": 500000
731
+ },
732
+ "rows_per_file": 32768,
733
+ "compression": "zstd"
734
+ },
735
+ "hf_export": {
736
+ "rows_per_file": 32768,
737
+ "compression": "zstd",
738
+ "split_file_counts": {
739
+ "train": 306,
740
+ "val": 16,
741
+ "test": 16
742
+ },
743
+ "elapsed_sec": 382.7398148999782
744
+ }
745
+ }
materials_catalog.json ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "allowed_materials": [
3
+ "ag",
4
+ "al",
5
+ "al2o3",
6
+ "aln",
7
+ "hfo2",
8
+ "mgf2",
9
+ "si",
10
+ "si3n4",
11
+ "sic",
12
+ "sio2",
13
+ "ti",
14
+ "tio2",
15
+ "zno",
16
+ "zns"
17
+ ],
18
+ "role_to_materials": {
19
+ "metal": [
20
+ "ag",
21
+ "al",
22
+ "ti"
23
+ ],
24
+ "low_index_dielectric": [
25
+ "mgf2",
26
+ "sio2",
27
+ "al2o3"
28
+ ],
29
+ "high_index_dielectric": [
30
+ "hfo2",
31
+ "tio2",
32
+ "zno",
33
+ "zns",
34
+ "si3n4",
35
+ "aln"
36
+ ],
37
+ "lossy_semiconductor": [
38
+ "si",
39
+ "sic"
40
+ ],
41
+ "transparent_spacer": [
42
+ "mgf2",
43
+ "sio2",
44
+ "al2o3"
45
+ ],
46
+ "IR_active": [
47
+ "sic",
48
+ "si",
49
+ "aln",
50
+ "hfo2",
51
+ "zno",
52
+ "al2o3"
53
+ ]
54
+ },
55
+ "material_to_roles": {
56
+ "ag": [
57
+ "metal"
58
+ ],
59
+ "al": [
60
+ "metal"
61
+ ],
62
+ "al2o3": [
63
+ "IR_active",
64
+ "low_index_dielectric",
65
+ "transparent_spacer"
66
+ ],
67
+ "aln": [
68
+ "IR_active",
69
+ "high_index_dielectric"
70
+ ],
71
+ "hfo2": [
72
+ "IR_active",
73
+ "high_index_dielectric"
74
+ ],
75
+ "mgf2": [
76
+ "low_index_dielectric",
77
+ "transparent_spacer"
78
+ ],
79
+ "si": [
80
+ "IR_active",
81
+ "lossy_semiconductor"
82
+ ],
83
+ "si3n4": [
84
+ "high_index_dielectric"
85
+ ],
86
+ "sic": [
87
+ "IR_active",
88
+ "lossy_semiconductor"
89
+ ],
90
+ "sio2": [
91
+ "low_index_dielectric",
92
+ "transparent_spacer"
93
+ ],
94
+ "ti": [
95
+ "metal"
96
+ ],
97
+ "tio2": [
98
+ "high_index_dielectric"
99
+ ],
100
+ "zno": [
101
+ "IR_active",
102
+ "high_index_dielectric"
103
+ ],
104
+ "zns": [
105
+ "high_index_dielectric"
106
+ ]
107
+ },
108
+ "substrate_choices": [
109
+ "si",
110
+ "sio2"
111
+ ]
112
+ }
merged_stats.json ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "accepted_count": 19831633,
3
+ "attempt_count": 0,
4
+ "balance_skip_count": 0,
5
+ "prototype_counts": {
6
+ "alternating_HL": 4828300,
7
+ "chirped_multilayer": 2800304,
8
+ "absorber_enhanced": 3110314,
9
+ "thermal_emitter_style": 3613712,
10
+ "cavity_resonant": 3145592,
11
+ "random_generic": 2333411
12
+ },
13
+ "layer_bucket_counts": {
14
+ "layers_9_12": 5986780,
15
+ "layers_5_8": 4773128,
16
+ "layers_13_16": 3972959,
17
+ "layers_17_24": 3148624,
18
+ "layers_2_4": 1950142
19
+ },
20
+ "substrate_counts": {
21
+ "sio2": 9916594,
22
+ "si": 9915039
23
+ },
24
+ "role_usage_counts": {},
25
+ "material_usage_counts": {},
26
+ "metal_count_bucket_counts": {
27
+ "metal_2": 2939065,
28
+ "metal_0": 9117591,
29
+ "metal_1": 7774977
30
+ },
31
+ "source_dataset_counts": {
32
+ "src_00_generated_dataset_full": {
33
+ "raw_count": 2560000,
34
+ "kept_count": 2560000
35
+ },
36
+ "src_01_generated_dataset_full_2": {
37
+ "raw_count": 4000000,
38
+ "kept_count": 3997983,
39
+ "duplicate_count": 2017
40
+ },
41
+ "src_02_generated_dataset_full_1": {
42
+ "raw_count": 4000000,
43
+ "kept_count": 3994887,
44
+ "duplicate_count": 5113
45
+ },
46
+ "src_03_generated_dataset_full_2": {
47
+ "raw_count": 4000000,
48
+ "kept_count": 3992140,
49
+ "duplicate_count": 7860
50
+ },
51
+ "src_04_generated_dataset_full_3": {
52
+ "raw_count": 5300000,
53
+ "kept_count": 5286623,
54
+ "duplicate_count": 13377
55
+ },
56
+ "src_05_generated_dataset_full_4": {
57
+ "raw_count": 200000,
58
+ "duplicate_count": 200000
59
+ }
60
+ },
61
+ "source_roots": [
62
+ "C:\\RL_2d\\cool_house\\new_llms3\\coolhouse3_diffusion\\new_dataset_maker\\generated_dataset_full",
63
+ "C:\\RL_2d\\cool_house\\new_llms3\\coolhouse3_diffusion\\new_dataset_maker\\generated_dataset_full_2",
64
+ "F:\\generated_dataset_full_1",
65
+ "F:\\generated_dataset_full_2",
66
+ "F:\\generated_dataset_full_3",
67
+ "F:\\generated_dataset_full_4"
68
+ ]
69
+ }
source_manifest.original.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_name": "prepared_training_dataset",
3
+ "dataset_version": "prepared_v1",
4
+ "seed": 20260312210644,
5
+ "output_root": "C:\\RL_2d\\cool_house\\new_llms3\\new_data",
6
+ "source_dataset_roots": [
7
+ "C:\\RL_2d\\cool_house\\new_llms3\\coolhouse3_diffusion\\new_dataset_maker\\generated_dataset_full",
8
+ "C:\\RL_2d\\cool_house\\new_llms3\\coolhouse3_diffusion\\new_dataset_maker\\generated_dataset_full_2",
9
+ "F:\\generated_dataset_full_1",
10
+ "F:\\generated_dataset_full_2",
11
+ "F:\\generated_dataset_full_3",
12
+ "F:\\generated_dataset_full_4"
13
+ ],
14
+ "source_dataset_ids": [
15
+ "src_00_generated_dataset_full",
16
+ "src_01_generated_dataset_full_2",
17
+ "src_02_generated_dataset_full_1",
18
+ "src_03_generated_dataset_full_2",
19
+ "src_04_generated_dataset_full_3",
20
+ "src_05_generated_dataset_full_4"
21
+ ],
22
+ "source_root_map": {
23
+ "src_00": "C:\\RL_2d\\cool_house\\new_llms3\\coolhouse3_diffusion\\new_dataset_maker\\generated_dataset_full",
24
+ "src_01": "C:\\RL_2d\\cool_house\\new_llms3\\coolhouse3_diffusion\\new_dataset_maker\\generated_dataset_full_2",
25
+ "src_02": "F:\\generated_dataset_full_1",
26
+ "src_03": "F:\\generated_dataset_full_2",
27
+ "src_04": "F:\\generated_dataset_full_3",
28
+ "src_05": "F:\\generated_dataset_full_4"
29
+ },
30
+ "prepared_sample_count": 19831633,
31
+ "shard_size": 10000,
32
+ "n_shards": 1984,
33
+ "target_field_order": [
34
+ "vis_R",
35
+ "vis_T",
36
+ "nir_R",
37
+ "nir_T",
38
+ "ir_E_normal"
39
+ ],
40
+ "target_field_length": 774,
41
+ "prepared_split_ratios": {
42
+ "train": 0.8,
43
+ "test": 0.15,
44
+ "val": 0.05
45
+ },
46
+ "condition_modes": [
47
+ "full_condition",
48
+ "vis_only",
49
+ "nir_only",
50
+ "ir_only",
51
+ "vis_nir",
52
+ "vis_ir",
53
+ "nir_ir",
54
+ "custom_channel_subset"
55
+ ],
56
+ "weak_unspecified_constraints": false,
57
+ "record_format": "compact_jsonl_gz_plus_target_uint16_x1000",
58
+ "split_stats": {
59
+ "train_count": 15865306,
60
+ "val_count": 991582,
61
+ "test_count": 2974745,
62
+ "hard_test_count": 40,
63
+ "ood_test_count": 40,
64
+ "n_strata": 160,
65
+ "split_format": "txt_one_sample_id_per_line"
66
+ }
67
+ }
splits/selected_splits.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "selected_splits": [
3
+ "train",
4
+ "val",
5
+ "test"
6
+ ]
7
+ }
splits/split_stats.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "train_count": 10000000,
3
+ "val_count": 500000,
4
+ "test_count": 500000,
5
+ "split_format": "hf_parquet_uint16_target_plus_padded_meta_v1",
6
+ "subset_policy": {
7
+ "train_prefix_count": 10000000,
8
+ "val_prefix_count": 500000,
9
+ "test_prefix_count": 500000
10
+ },
11
+ "rows_per_file": 32768,
12
+ "compression": "zstd"
13
+ }
test/test-00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8effc727dbb5032f64b166542b4ab67070d3219ff8d0ca227db10b1118754fef
3
+ size 36204967
test/test-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ccc39d0c643e124735465a475207f756012ae20433a951d5eae930d51fb471a3
3
+ size 36255073
test/test-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fdd4958b4c88e084e3717f8143f7c6db4562ad4411e30e0a316865bf5a4621ef
3
+ size 36176784
test/test-00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b1ceda0374322440bedf2cad84aefa5c61948a0217ffe43a388f415d3b56f99
3
+ size 36206677
test/test-00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e61bb0af14c549193eebc6663ece1b52ccfc56cddd8637a18cb9791d4f156bd
3
+ size 36276910
test/test-00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee67dc810b40103b268ba65c138f3c06a021b662d101def9a7dea6219160a2c1
3
+ size 36271584
test/test-00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efedfd5146e75ad2ab893647702d6228b6a0c50d248e163ba8a4f1eda460335e
3
+ size 36253577
test/test-00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d75f0f757daf0d547b2650ca59eb1381593694d99329c9b48cad2e8a8ead9871
3
+ size 36195993
test/test-00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b87c6bcee44507061ceae457fce4d68df53b12fedc480f662be3d31ccd88824
3
+ size 36197974
test/test-00009.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89f6b36597add4f79cdf22fd386c6e7484e18fdfd34b17c14c3c761f831946a9
3
+ size 36292655
test/test-00010.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9eea71b8f455f6cef1b8aa373e6b80ff500a257f6ce1a428fdf94abcfa055e7
3
+ size 36284285
test/test-00011.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:794bd71715e9d12ef643b38fe234b538f81bee6264f591371a0e38ebe3799e1a
3
+ size 36227002
test/test-00012.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9196f86df45a858717b01d6fef096131d7849aedc2c61412ad1a80d3748f0d14
3
+ size 36251587
test/test-00013.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75e408f3a0d7b6dab76864458f250015180c2c25fb8743f01cd2b11601f31a67
3
+ size 36199148
test/test-00014.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c747864b2227e6d0e114acf4f03f53efdca76dbe2a4eacdc04f92ef372ce544
3
+ size 36259298
test/test-00015.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c28db897f4ef9f34377f06fb00d85894d0201a3c61bec3f3c540b00183af963
3
+ size 9378984
train/train-00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71efc46cf87f73df2bce05571c7fa11ffaf3828ada477379046175a903a2d518
3
+ size 36142834
train/train-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3dc5922165f27cc5836e72b4429a44952470660d4be0fc5a77b11cd85de125f5
3
+ size 36146194
train/train-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b08afa1d03e27a6b80090b597ffa1f2fe307bb38081cf01fea55ca11c1e0b68d
3
+ size 36174848
train/train-00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22183f0eef06624545c63d43575136e8fda015c80733f678beb786c952015185
3
+ size 36238504
train/train-00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59d2209a287bfbef62a274f5f86561144a65363a7d43457da95dd71504abfd65
3
+ size 36203184
train/train-00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:377ebce5590060e2210ac20727722efb60fe7eded60c1269c7e902421bec06dc
3
+ size 36131114
train/train-00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c291c314465bdd616117996973ed0aca6178451b0486b4a5f468e5a8513f217c
3
+ size 36130459
train/train-00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b194ddcb8973f67b63e3d7ca6e9db209edc54305c68136965c950da014a9bda
3
+ size 36141213
train/train-00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:707847ba41da816b5d6c095d3b908b9cf0d896165cf587404b7b2a2f7936029e
3
+ size 36212029
train/train-00009.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a781920af0487431985a2d24250ea94751c71170c6f01c69ef6f0cf10f7458c
3
+ size 36227453
train/train-00010.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67bb23ae9d8cc40f5e34055740c933aa2145312ece7f138ed80c47f8cbd37f8c
3
+ size 36180269
train/train-00011.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc658ce7a4dcaa4e5685c68417929f3bcbe3a6228a122adf75db1b9b2a36d9a4
3
+ size 36131243
train/train-00012.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5562d926794745abb7847dfa1a14c779334e3ba83254ab98b81b55abd7b1f3b
3
+ size 36173564
train/train-00013.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:227901a72720199af2948c5e109482b497c041d5727296a31d0fcd4de0b512c4
3
+ size 36251660
train/train-00014.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3fca8b15d73bdc94ebdd72dc575684d066f7e036a7d8d4d11acde48a6a437de
3
+ size 36092503
train/train-00015.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26f962bd64ac5fd7e2b43e7e4dcde9bde470b562cb1ee119e5a599e8a894cfcd
3
+ size 36123776
train/train-00016.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3260194bdd08015971f35c2c7608a4320577ef7d821491bc1a3a7b69e146a889
3
+ size 36150244
train/train-00017.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f15ceee469ea906671e8694608a60eb8a3c56eff86338da5245f9fc0d1f9afb1
3
+ size 36158044
train/train-00018.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:248ef51caea4728248058de4a928e097c43dc70d23fa6189bc50eaf01c7c9712
3
+ size 36124231
train/train-00019.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c6301da8f7d328962110696746ace233379ebde4e7e8d9c4d7e5ddb8161d1e8
3
+ size 36145198
train/train-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9059225d91e2956728182ddd24d048fe38e54a0e95b41c13e49ed2b7ff558024
3
+ size 36053778
train/train-00021.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc144212daea6e14b5af6ccd51e970c54b6a42e21393dc3306bd8f4ce22acadd
3
+ size 36068462
train/train-00022.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e1a2f46ac11b176b13ef8db60de9449d6282ea9a5376c543307654c95768c52
3
+ size 36125252
train/train-00023.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a1d7d246d701aa4d82a28b3b7e6d1cc81e338e6023db09bf7ad6d7734b5550c
3
+ size 36172108