Datasets:
Tasks:
Image Segmentation
Modalities:
Image
Formats:
imagefolder
Languages:
English
Size:
1K - 10K
License:
Release nuScenes-NRS v1.0.0 archive package
Browse files- CITATION.cff +30 -0
- LICENSE_DATA.md +73 -0
- README.md +184 -2
- SHA256SUMS.txt +15 -0
- VERSION +1 -0
- dataset_manifest.json +182 -0
- requirements.txt +4 -0
- scripts/build_release_metadata.py +158 -0
- scripts/generate_masks_from_nuscenes.py +372 -0
- scripts/validate_archives.py +92 -0
- scripts/validate_release.py +122 -0
- scripts/write_checksums.py +41 -0
- splits/training.txt +0 -0
- splits/validation.txt +805 -0
- training/masks.zip +3 -0
- validation/masks.zip +3 -0
CITATION.cff
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
cff-version: 1.2.0
|
| 2 |
+
message: "If you use nuScenes-NRS, please cite this dataset release and the IAF-Net paper."
|
| 3 |
+
title: "nuScenes-NRS: Derived Road-Segmentation Masks"
|
| 4 |
+
version: 1.0.0
|
| 5 |
+
date-released: 2026-08-10
|
| 6 |
+
# `other` is intentional: the derived files follow CC BY-NC-SA 4.0 together
|
| 7 |
+
# with the additional nuScenes Dataset Terms; the accompanying scripts are
|
| 8 |
+
# MIT-licensed separately (see LICENSE_DATA.md).
|
| 9 |
+
license: other
|
| 10 |
+
authors:
|
| 11 |
+
- family-names: Wang
|
| 12 |
+
given-names: Bingtao
|
| 13 |
+
- family-names: Peng
|
| 14 |
+
given-names: Daojie
|
| 15 |
+
- family-names: Ma
|
| 16 |
+
given-names: Fulong
|
| 17 |
+
- family-names: Ma
|
| 18 |
+
given-names: Jun
|
| 19 |
+
- family-names: Zhang
|
| 20 |
+
given-names: Liang
|
| 21 |
+
url: https://huggingface.co/datasets/PeterNano/nuScenes-NRS
|
| 22 |
+
keywords:
|
| 23 |
+
- autonomous driving
|
| 24 |
+
- road segmentation
|
| 25 |
+
- low-light perception
|
| 26 |
+
- nuScenes
|
| 27 |
+
abstract: >-
|
| 28 |
+
Derived front-camera road masks and scene-disjoint token splits for the
|
| 29 |
+
nuScenes-NRS low-light road-segmentation benchmark. Original nuScenes
|
| 30 |
+
sensor data are not redistributed.
|
LICENSE_DATA.md
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Data-use terms for nuScenes-NRS derived artifacts
|
| 2 |
+
|
| 3 |
+
This file is a release notice, not a replacement for the official nuScenes
|
| 4 |
+
agreement. The official agreement is the controlling text:
|
| 5 |
+
|
| 6 |
+
* [nuScenes Terms of Use](https://www.nuscenes.org/terms-of-use)
|
| 7 |
+
(non-commercial terms, last updated by Motional on 16 November 2021); and
|
| 8 |
+
* [CC BY-NC-SA 4.0 legal code](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode).
|
| 9 |
+
|
| 10 |
+
The official terms expressly cover use of data derived from nuScenes. They
|
| 11 |
+
apply in addition to the conditions below, and prevail if there is any
|
| 12 |
+
conflict.
|
| 13 |
+
|
| 14 |
+
## Scope
|
| 15 |
+
|
| 16 |
+
These terms apply only to the files in this repository that were produced for
|
| 17 |
+
nuScenes-NRS: the PNG road masks, split/token lists, manifests, and related
|
| 18 |
+
documentation. They do not apply to the original nuScenes dataset, which is
|
| 19 |
+
not included here and remains governed by the terms published by the nuScenes
|
| 20 |
+
authors.
|
| 21 |
+
|
| 22 |
+
## Permission for the derived release
|
| 23 |
+
|
| 24 |
+
Subject to the official nuScenes terms and the third-party restrictions below,
|
| 25 |
+
the derived masks and split metadata may be downloaded, copied, modified, and
|
| 26 |
+
used for non-commercial academic research, teaching, and evaluation, provided
|
| 27 |
+
that users:
|
| 28 |
+
|
| 29 |
+
1. retain this notice and the attribution in `CITATION.cff`;
|
| 30 |
+
2. identify modifications to the derived masks or split files; and
|
| 31 |
+
3. do not present the masks as the original nuScenes annotations.
|
| 32 |
+
|
| 33 |
+
Commercial use, resale, or redistribution as part of a commercial dataset or
|
| 34 |
+
product is not permitted by the non-commercial terms; obtain the appropriate
|
| 35 |
+
commercial license from Motional before such use. This repository does not
|
| 36 |
+
grant a commercial exception.
|
| 37 |
+
|
| 38 |
+
## Third-party data boundary
|
| 39 |
+
|
| 40 |
+
No original RGB image, LiDAR point cloud, lidarseg file, calibration, pose,
|
| 41 |
+
depth, or normal file is licensed or redistributed by this repository. A user
|
| 42 |
+
who regenerates masks must independently download nuScenes, satisfy its
|
| 43 |
+
license and attribution requirements, and comply with any applicable
|
| 44 |
+
data-protection or export rules. Some third-party data in nuScenes may carry
|
| 45 |
+
separate restrictions and may not be redistributed. Motional's names,
|
| 46 |
+
trademarks, logos, and endorsement are not granted by this release.
|
| 47 |
+
|
| 48 |
+
## Scripts
|
| 49 |
+
|
| 50 |
+
Unless a file states otherwise, the scripts in `scripts/` are released under
|
| 51 |
+
the MIT License:
|
| 52 |
+
|
| 53 |
+
```text
|
| 54 |
+
Copyright (c) 2026 IAF-Net authors
|
| 55 |
+
|
| 56 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 57 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 58 |
+
in the Software without restriction, including without limitation the rights
|
| 59 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 60 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 61 |
+
furnished to do so, subject to the following conditions:
|
| 62 |
+
|
| 63 |
+
The above copyright notice and this permission notice shall be included in all
|
| 64 |
+
copies or substantial portions of the Software.
|
| 65 |
+
|
| 66 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 67 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 68 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 69 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 70 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 71 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 72 |
+
SOFTWARE.
|
| 73 |
+
```
|
README.md
CHANGED
|
@@ -1,3 +1,185 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
pretty_name: nuScenes-NRS
|
| 3 |
+
description: Derived front-camera road-segmentation masks for the low-light nuScenes-NRS benchmark.
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
# The mask release is a derived artifact and remains subject to the
|
| 7 |
+
# nuScenes Dataset Terms; see the license notice below.
|
| 8 |
+
license: other
|
| 9 |
+
task_categories:
|
| 10 |
+
- image-segmentation
|
| 11 |
+
tags:
|
| 12 |
+
- autonomous-driving
|
| 13 |
+
- road-segmentation
|
| 14 |
+
- low-light-perception
|
| 15 |
+
- nuscenes
|
| 16 |
+
size_categories:
|
| 17 |
+
- 1K<n<10K
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
# nuScenes-NRS
|
| 21 |
+
|
| 22 |
+
nuScenes-NRS (nuScenes Nighttime Road Segmentation) is the road-segmentation
|
| 23 |
+
label release used by **IAF-Net: Illumination-Adaptive Fusion for Low-Light
|
| 24 |
+
Urban Road Segmentation**. This repository contains the derived labels and
|
| 25 |
+
the information needed to reproduce them from an authorized copy of the
|
| 26 |
+
official nuScenes data.
|
| 27 |
+
|
| 28 |
+
## What is included
|
| 29 |
+
|
| 30 |
+
| split | scenes | masks | mask resolution | distribution |
|
| 31 |
+
|---|---:|---:|---|---|
|
| 32 |
+
| training | 79 | 3,182 | 1600 x 900 | `training/masks.zip` |
|
| 33 |
+
| validation | 20 | 805 | 1600 x 900 | `validation/masks.zip` |
|
| 34 |
+
| **total** | **99** | **3,987** | | |
|
| 35 |
+
|
| 36 |
+
The split files contain one nuScenes `sample` token per line. Each archive
|
| 37 |
+
contains a `masks/` directory with files named `<sample-token>.png`; a mask
|
| 38 |
+
corresponds to the `CAM_FRONT` key frame of that sample. The training and
|
| 39 |
+
validation scene sets are disjoint. The release contains **no** RGB images,
|
| 40 |
+
LiDAR point clouds, lidarseg files, depth maps, normal maps, calibration
|
| 41 |
+
files, or other raw nuScenes sensor data.
|
| 42 |
+
|
| 43 |
+
Extract the archives from the repository root before using the validator or a
|
| 44 |
+
loader that expects the unpacked layout:
|
| 45 |
+
|
| 46 |
+
```bash
|
| 47 |
+
unzip training/masks.zip -d training
|
| 48 |
+
unzip validation/masks.zip -d validation
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
## Label format
|
| 52 |
+
|
| 53 |
+
Each file is an 8-bit, three-channel PNG with shape `900 x 1600 x 3` when
|
| 54 |
+
read as RGB:
|
| 55 |
+
|
| 56 |
+
* road: `R=255, G=0, B=0`;
|
| 57 |
+
* background: `R=G=B=0`.
|
| 58 |
+
|
| 59 |
+
For a binary mask, use `mask = (rgb[..., 0] > 127)`. When reading with
|
| 60 |
+
OpenCV (`cv2.imread`), the road value is in channel 2 because OpenCV uses
|
| 61 |
+
BGR order. The labels are intentionally stored in the same encoding as the
|
| 62 |
+
training protocol used in IAF-Net.
|
| 63 |
+
|
| 64 |
+
## Provenance and generation
|
| 65 |
+
|
| 66 |
+
The labels are projected from the official nuScenes `LIDAR_TOP` point cloud
|
| 67 |
+
and its `lidarseg` labels (class 24, `drivable_surface`) into the official
|
| 68 |
+
`CAM_FRONT` camera. The historical post-processing pipeline is:
|
| 69 |
+
|
| 70 |
+
1. transform LiDAR points through the calibrated-sensor and ego-pose chains;
|
| 71 |
+
2. retain points in front of the camera and inside the 1600 x 900 image;
|
| 72 |
+
3. Delaunay triangulation with a maximum projected triangle edge of 40 px;
|
| 73 |
+
4. elliptical morphological closing (15 x 15, two iterations);
|
| 74 |
+
5. external-contour Douglas--Peucker approximation (`epsilon = 0.01` of
|
| 75 |
+
contour perimeter), ignoring contours smaller than 1,000 px;
|
| 76 |
+
6. a final 5 x 5 elliptical erosion (one iteration).
|
| 77 |
+
|
| 78 |
+
The reference implementation is
|
| 79 |
+
`scripts/generate_masks_from_nuscenes.py`. It writes a three-channel PNG
|
| 80 |
+
with the road in the red channel and never modifies the source dataset.
|
| 81 |
+
Because the original nuScenes files are not redistributed here, exact
|
| 82 |
+
regeneration requires an authorized copy of the same nuScenes trainval and
|
| 83 |
+
lidarseg release.
|
| 84 |
+
|
| 85 |
+
## Reproduce the masks
|
| 86 |
+
|
| 87 |
+
Obtain `v1.0-trainval` and the matching `lidarseg` package from the official
|
| 88 |
+
[nuScenes download page](https://www.nuscenes.org/download), and accept the
|
| 89 |
+
nuScenes terms before use. Then install the dependencies:
|
| 90 |
+
|
| 91 |
+
```bash
|
| 92 |
+
python -m pip install -r requirements.txt
|
| 93 |
+
```
|
| 94 |
+
|
| 95 |
+
Generate either split (the command below regenerates training; replace the
|
| 96 |
+
split name and file for validation):
|
| 97 |
+
|
| 98 |
+
```bash
|
| 99 |
+
python scripts/generate_masks_from_nuscenes.py \
|
| 100 |
+
--dataroot /path/to/nuScenes \
|
| 101 |
+
--version v1.0-trainval \
|
| 102 |
+
--split training \
|
| 103 |
+
--split-file splits/training.txt \
|
| 104 |
+
--output-root /tmp/nuScenes-NRS-regenerated
|
| 105 |
+
```
|
| 106 |
+
|
| 107 |
+
The output is written to
|
| 108 |
+
`/tmp/nuScenes-NRS-regenerated/training/masks/`. The script reconstructs the
|
| 109 |
+
official CAM_FRONT/LIDAR_TOP key-frame mapping from `sample_data.json`, checks
|
| 110 |
+
for missing or duplicate records, and reports missing lidarseg files instead
|
| 111 |
+
of silently changing the split.
|
| 112 |
+
|
| 113 |
+
## Verify a downloaded release
|
| 114 |
+
|
| 115 |
+
From the repository root, either extract both archives as shown above and run
|
| 116 |
+
the unpacked validator:
|
| 117 |
+
|
| 118 |
+
```bash
|
| 119 |
+
python scripts/validate_release.py --root .
|
| 120 |
+
```
|
| 121 |
+
|
| 122 |
+
or verify the archive contents and checksums directly:
|
| 123 |
+
|
| 124 |
+
```bash
|
| 125 |
+
python scripts/validate_archives.py --root .
|
| 126 |
+
```
|
| 127 |
+
|
| 128 |
+
The checks cover split counts, filename/token consistency, PNG shape, dtype,
|
| 129 |
+
channel encoding, duplicate tokens, scene disjointness (when official
|
| 130 |
+
metadata is supplied), archive contents, and the recorded SHA-256 manifest.
|
| 131 |
+
|
| 132 |
+
## Download
|
| 133 |
+
|
| 134 |
+
The repository is public at
|
| 135 |
+
<https://huggingface.co/datasets/PeterNano/nuScenes-NRS>. For a command-line
|
| 136 |
+
download:
|
| 137 |
+
|
| 138 |
+
```bash
|
| 139 |
+
pip install -U huggingface_hub
|
| 140 |
+
hf download PeterNano/nuScenes-NRS \
|
| 141 |
+
--repo-type dataset --local-dir nuScenes-NRS
|
| 142 |
+
```
|
| 143 |
+
|
| 144 |
+
Older `huggingface_hub` versions expose the same command as
|
| 145 |
+
`huggingface-cli download`.
|
| 146 |
+
|
| 147 |
+
## License and data-use notice
|
| 148 |
+
|
| 149 |
+
This repository deliberately redistributes only derived masks, split/token
|
| 150 |
+
metadata, documentation, and scripts. It does **not** redistribute any
|
| 151 |
+
original nuScenes sensor or annotation files. The official nuScenes terms
|
| 152 |
+
state that use of the dataset and of data derived from it is governed by the
|
| 153 |
+
non-commercial `CC BY-NC-SA 4.0` license together with additional Dataset
|
| 154 |
+
Terms; where the two texts conflict, the Dataset Terms prevail. See the
|
| 155 |
+
[official terms of use](https://www.nuscenes.org/terms-of-use) and the
|
| 156 |
+
[CC BY-NC-SA 4.0 legal code](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode).
|
| 157 |
+
Users must obtain the original nuScenes release directly and satisfy those
|
| 158 |
+
terms. The masks and split metadata are offered only to the extent permitted
|
| 159 |
+
by those terms, with the additional boundary notes in `LICENSE_DATA.md`.
|
| 160 |
+
The scripts are MIT-licensed independently. No license in this repository
|
| 161 |
+
grants rights to the original nuScenes data, trademarks, or third-party
|
| 162 |
+
components.
|
| 163 |
+
|
| 164 |
+
The labels are automatically generated from sparse projected LiDAR semantics
|
| 165 |
+
and are not hand-drawn dense annotations. They can contain holes, boundary
|
| 166 |
+
uncertainty, and projection artifacts, especially in very dark or occluded
|
| 167 |
+
regions. They should therefore be used as benchmark labels rather than as a
|
| 168 |
+
survey-grade map of drivable space.
|
| 169 |
+
|
| 170 |
+
## Citation
|
| 171 |
+
|
| 172 |
+
If you use nuScenes-NRS or the accompanying masks, please cite the dataset
|
| 173 |
+
record and the IAF-Net paper. A machine-readable entry is provided in
|
| 174 |
+
`CITATION.cff`.
|
| 175 |
+
|
| 176 |
+
```bibtex
|
| 177 |
+
@misc{wang2026iafnet,
|
| 178 |
+
title = {IAF-Net: Illumination-Adaptive Fusion for Low-Light Urban Road Segmentation},
|
| 179 |
+
author = {Wang, Bingtao and Peng, Daojie and Ma, Fulong and Ma, Jun and Zhang, Liang},
|
| 180 |
+
year = {2026},
|
| 181 |
+
howpublished = {Hugging Face Dataset Card: PeterNano/nuScenes-NRS},
|
| 182 |
+
note = {nuScenes-NRS derived-label release, version 1.0.0}
|
| 183 |
+
}
|
| 184 |
+
```
|
| 185 |
+
|
SHA256SUMS.txt
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
f64fceb0b56b091a0cc7bbc7135a213d285b0d7469871b101445f5ba764f683d CITATION.cff
|
| 2 |
+
94ccdf789cc2526d99c6c738795280d1fa4ee59d3fe70d413fff60b83062ff9a LICENSE_DATA.md
|
| 3 |
+
4f2c123b3a2c3b4b886c73910ffbf086a5d247e1c0fb0e927c2e32af5af2b803 README.md
|
| 4 |
+
59854984853104df5c353e2f681a15fc7924742f9a2e468c29af248dce45ce03 VERSION
|
| 5 |
+
f41ef70abce4475fabe9742dd8d6b27f819937b070263f063791a1721eb18b80 dataset_manifest.json
|
| 6 |
+
8044ee4f47ab0b34a64f89b5efb07d481245a7980cd9e734037cb967e55755dc requirements.txt
|
| 7 |
+
b728841a273688a2585dd58534f3a2f1b6f70f4d61938617f1c6d1f3170f4dd6 scripts/build_release_metadata.py
|
| 8 |
+
8413bf8ba8aaa85279480b3c57d1bbbdea7819e459761aef057c665dcba4f5d9 scripts/generate_masks_from_nuscenes.py
|
| 9 |
+
7174c114205c69905cce443fe0850decb5861161bda83efeff5e364267288d79 scripts/validate_archives.py
|
| 10 |
+
d810938613878d0474946fbb26d1b2ecca5f9c49b0c75cb7819f347c7b802485 scripts/validate_release.py
|
| 11 |
+
7996c4d6e05c30cf0f594a32b1d2068e185f775db58005672e02c176e6989868 scripts/write_checksums.py
|
| 12 |
+
a81759c52dcfab1941496259a27a464b3e7c2bc633101fd715e51a8c754ee4cb splits/training.txt
|
| 13 |
+
4dbd6b4fd6471204fc728c93effbfb9febbcf512b504e8346c1f5dccbc1f5b35 splits/validation.txt
|
| 14 |
+
e24ceef6297e9542efa4257b643a409080acec21dc18e315b5d635f35287bfd6 training/masks.zip
|
| 15 |
+
c060135f2ef8f20359dc8f502071c8051e340cc3a9f136664e64f1e43f90255b validation/masks.zip
|
VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
1.0.0
|
dataset_manifest.json
ADDED
|
@@ -0,0 +1,182 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset": "nuScenes-NRS",
|
| 3 |
+
"release_version": "1.0.0",
|
| 4 |
+
"source": {
|
| 5 |
+
"dataset": "nuScenes v1.0-trainval plus the matching lidarseg release",
|
| 6 |
+
"raw_data_redistributed": false,
|
| 7 |
+
"camera": "CAM_FRONT",
|
| 8 |
+
"lidar": "LIDAR_TOP"
|
| 9 |
+
},
|
| 10 |
+
"distribution": {
|
| 11 |
+
"format": "ZIP archives containing masks/<sample-token>.png",
|
| 12 |
+
"training_archive": "training/masks.zip",
|
| 13 |
+
"validation_archive": "validation/masks.zip",
|
| 14 |
+
"unpacked_layout": "training/masks/*.png and validation/masks/*.png"
|
| 15 |
+
},
|
| 16 |
+
"mask": {
|
| 17 |
+
"format": "PNG",
|
| 18 |
+
"dtype": "uint8",
|
| 19 |
+
"channels": 3,
|
| 20 |
+
"resolution": [
|
| 21 |
+
1600,
|
| 22 |
+
900
|
| 23 |
+
],
|
| 24 |
+
"encoding_rgb": {
|
| 25 |
+
"road": [
|
| 26 |
+
255,
|
| 27 |
+
0,
|
| 28 |
+
0
|
| 29 |
+
],
|
| 30 |
+
"background": [
|
| 31 |
+
0,
|
| 32 |
+
0,
|
| 33 |
+
0
|
| 34 |
+
]
|
| 35 |
+
},
|
| 36 |
+
"filename": "<sample-token>.png"
|
| 37 |
+
},
|
| 38 |
+
"generation": {
|
| 39 |
+
"lidarseg_class": 24,
|
| 40 |
+
"lidarseg_class_name": "drivable_surface",
|
| 41 |
+
"projection": "LiDAR_TOP -> ego -> global -> camera ego -> CAM_FRONT",
|
| 42 |
+
"delaunay_max_edge_px": 40.0,
|
| 43 |
+
"closing_kernel": [
|
| 44 |
+
15,
|
| 45 |
+
15
|
| 46 |
+
],
|
| 47 |
+
"closing_iterations": 2,
|
| 48 |
+
"douglas_peucker_factor": 0.01,
|
| 49 |
+
"minimum_contour_area_px": 1000,
|
| 50 |
+
"erosion_kernel": [
|
| 51 |
+
5,
|
| 52 |
+
5
|
| 53 |
+
],
|
| 54 |
+
"erosion_iterations": 1
|
| 55 |
+
},
|
| 56 |
+
"splits": {
|
| 57 |
+
"training": {
|
| 58 |
+
"mask_count": 3182,
|
| 59 |
+
"scene_count": 79,
|
| 60 |
+
"scene_tokens_sha256": "34653c561c01277dab77d306cd5b6b30f8eb43bc997433742d811f718c2959b1",
|
| 61 |
+
"scene_names": [
|
| 62 |
+
"scene-0992",
|
| 63 |
+
"scene-0994",
|
| 64 |
+
"scene-0995",
|
| 65 |
+
"scene-0996",
|
| 66 |
+
"scene-0997",
|
| 67 |
+
"scene-0998",
|
| 68 |
+
"scene-0999",
|
| 69 |
+
"scene-1000",
|
| 70 |
+
"scene-1001",
|
| 71 |
+
"scene-1002",
|
| 72 |
+
"scene-1003",
|
| 73 |
+
"scene-1004",
|
| 74 |
+
"scene-1005",
|
| 75 |
+
"scene-1006",
|
| 76 |
+
"scene-1007",
|
| 77 |
+
"scene-1008",
|
| 78 |
+
"scene-1009",
|
| 79 |
+
"scene-1010",
|
| 80 |
+
"scene-1011",
|
| 81 |
+
"scene-1012",
|
| 82 |
+
"scene-1013",
|
| 83 |
+
"scene-1014",
|
| 84 |
+
"scene-1015",
|
| 85 |
+
"scene-1016",
|
| 86 |
+
"scene-1017",
|
| 87 |
+
"scene-1018",
|
| 88 |
+
"scene-1019",
|
| 89 |
+
"scene-1020",
|
| 90 |
+
"scene-1021",
|
| 91 |
+
"scene-1022",
|
| 92 |
+
"scene-1023",
|
| 93 |
+
"scene-1024",
|
| 94 |
+
"scene-1025",
|
| 95 |
+
"scene-1044",
|
| 96 |
+
"scene-1045",
|
| 97 |
+
"scene-1046",
|
| 98 |
+
"scene-1047",
|
| 99 |
+
"scene-1048",
|
| 100 |
+
"scene-1049",
|
| 101 |
+
"scene-1050",
|
| 102 |
+
"scene-1051",
|
| 103 |
+
"scene-1052",
|
| 104 |
+
"scene-1053",
|
| 105 |
+
"scene-1054",
|
| 106 |
+
"scene-1055",
|
| 107 |
+
"scene-1056",
|
| 108 |
+
"scene-1057",
|
| 109 |
+
"scene-1058",
|
| 110 |
+
"scene-1059",
|
| 111 |
+
"scene-1060",
|
| 112 |
+
"scene-1061",
|
| 113 |
+
"scene-1062",
|
| 114 |
+
"scene-1063",
|
| 115 |
+
"scene-1064",
|
| 116 |
+
"scene-1065",
|
| 117 |
+
"scene-1066",
|
| 118 |
+
"scene-1067",
|
| 119 |
+
"scene-1068",
|
| 120 |
+
"scene-1069",
|
| 121 |
+
"scene-1070",
|
| 122 |
+
"scene-1071",
|
| 123 |
+
"scene-1072",
|
| 124 |
+
"scene-1073",
|
| 125 |
+
"scene-1074",
|
| 126 |
+
"scene-1075",
|
| 127 |
+
"scene-1076",
|
| 128 |
+
"scene-1077",
|
| 129 |
+
"scene-1078",
|
| 130 |
+
"scene-1079",
|
| 131 |
+
"scene-1080",
|
| 132 |
+
"scene-1081",
|
| 133 |
+
"scene-1082",
|
| 134 |
+
"scene-1083",
|
| 135 |
+
"scene-1084",
|
| 136 |
+
"scene-1085",
|
| 137 |
+
"scene-1086",
|
| 138 |
+
"scene-1087",
|
| 139 |
+
"scene-1088",
|
| 140 |
+
"scene-1089"
|
| 141 |
+
],
|
| 142 |
+
"token_list": "splits/training.txt",
|
| 143 |
+
"mask_directory": "training/masks",
|
| 144 |
+
"token_list_sha256": "a81759c52dcfab1941496259a27a464b3e7c2bc633101fd715e51a8c754ee4cb"
|
| 145 |
+
},
|
| 146 |
+
"validation": {
|
| 147 |
+
"mask_count": 805,
|
| 148 |
+
"scene_count": 20,
|
| 149 |
+
"scene_tokens_sha256": "eab20ddb461e4ac410d86196d351e07d6ac6e56ac18dc10af15b6e3d691e62b4",
|
| 150 |
+
"scene_names": [
|
| 151 |
+
"scene-1090",
|
| 152 |
+
"scene-1091",
|
| 153 |
+
"scene-1092",
|
| 154 |
+
"scene-1093",
|
| 155 |
+
"scene-1094",
|
| 156 |
+
"scene-1095",
|
| 157 |
+
"scene-1096",
|
| 158 |
+
"scene-1097",
|
| 159 |
+
"scene-1098",
|
| 160 |
+
"scene-1099",
|
| 161 |
+
"scene-1100",
|
| 162 |
+
"scene-1101",
|
| 163 |
+
"scene-1102",
|
| 164 |
+
"scene-1104",
|
| 165 |
+
"scene-1105",
|
| 166 |
+
"scene-1106",
|
| 167 |
+
"scene-1107",
|
| 168 |
+
"scene-1108",
|
| 169 |
+
"scene-1109",
|
| 170 |
+
"scene-1110"
|
| 171 |
+
],
|
| 172 |
+
"token_list": "splits/validation.txt",
|
| 173 |
+
"mask_directory": "validation/masks",
|
| 174 |
+
"token_list_sha256": "4dbd6b4fd6471204fc728c93effbfb9febbcf512b504e8346c1f5dccbc1f5b35"
|
| 175 |
+
}
|
| 176 |
+
},
|
| 177 |
+
"split_policy": {
|
| 178 |
+
"scene_disjoint": true,
|
| 179 |
+
"training_scene_count": 79,
|
| 180 |
+
"validation_scene_count": 20
|
| 181 |
+
}
|
| 182 |
+
}
|
requirements.txt
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
numpy>=1.23
|
| 2 |
+
opencv-python>=4.7
|
| 3 |
+
scipy>=1.9
|
| 4 |
+
ijson>=3.2
|
scripts/build_release_metadata.py
ADDED
|
@@ -0,0 +1,158 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""Build split lists and a compact manifest for a nuScenes-NRS release.
|
| 3 |
+
|
| 4 |
+
This maintainer utility reads only the derived mask directories and (optionally)
|
| 5 |
+
the official sample/scene metadata. It never copies or publishes raw nuScenes
|
| 6 |
+
files. The generated files are deterministic when the mask directories and
|
| 7 |
+
metadata are unchanged.
|
| 8 |
+
"""
|
| 9 |
+
|
| 10 |
+
from __future__ import annotations
|
| 11 |
+
|
| 12 |
+
import argparse
|
| 13 |
+
import hashlib
|
| 14 |
+
import json
|
| 15 |
+
from pathlib import Path
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
EXPECTED = {"training": 3182, "validation": 805}
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
def load_json(path: Path):
|
| 22 |
+
with path.open("r", encoding="utf-8") as handle:
|
| 23 |
+
return json.load(handle)
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
def sha256_file(path: Path) -> str:
|
| 27 |
+
digest = hashlib.sha256()
|
| 28 |
+
with path.open("rb") as handle:
|
| 29 |
+
for block in iter(lambda: handle.read(1024 * 1024), b""):
|
| 30 |
+
digest.update(block)
|
| 31 |
+
return digest.hexdigest()
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
def main() -> int:
|
| 35 |
+
parser = argparse.ArgumentParser()
|
| 36 |
+
parser.add_argument("--release-root", type=Path, required=True)
|
| 37 |
+
parser.add_argument(
|
| 38 |
+
"--metadata-dir",
|
| 39 |
+
type=Path,
|
| 40 |
+
default=None,
|
| 41 |
+
help="Optional v1.0-trainval directory containing sample.json and scene.json",
|
| 42 |
+
)
|
| 43 |
+
args = parser.parse_args()
|
| 44 |
+
root = args.release_root.resolve()
|
| 45 |
+
split_dir = root / "splits"
|
| 46 |
+
split_dir.mkdir(parents=True, exist_ok=True)
|
| 47 |
+
|
| 48 |
+
samples = {}
|
| 49 |
+
scenes = {}
|
| 50 |
+
if args.metadata_dir:
|
| 51 |
+
samples = {row["token"]: row for row in load_json(args.metadata_dir / "sample.json")}
|
| 52 |
+
scenes = {row["token"]: row for row in load_json(args.metadata_dir / "scene.json")}
|
| 53 |
+
|
| 54 |
+
manifest = {
|
| 55 |
+
"dataset": "nuScenes-NRS",
|
| 56 |
+
"release_version": "1.0.0",
|
| 57 |
+
"source": {
|
| 58 |
+
"dataset": "nuScenes v1.0-trainval plus the matching lidarseg release",
|
| 59 |
+
"raw_data_redistributed": False,
|
| 60 |
+
"camera": "CAM_FRONT",
|
| 61 |
+
"lidar": "LIDAR_TOP",
|
| 62 |
+
},
|
| 63 |
+
"mask": {
|
| 64 |
+
"format": "PNG",
|
| 65 |
+
"dtype": "uint8",
|
| 66 |
+
"channels": 3,
|
| 67 |
+
"resolution": [1600, 900],
|
| 68 |
+
"encoding_rgb": {"road": [255, 0, 0], "background": [0, 0, 0]},
|
| 69 |
+
"filename": "<sample-token>.png",
|
| 70 |
+
},
|
| 71 |
+
"generation": {
|
| 72 |
+
"lidarseg_class": 24,
|
| 73 |
+
"lidarseg_class_name": "drivable_surface",
|
| 74 |
+
"projection": "LiDAR_TOP -> ego -> global -> camera ego -> CAM_FRONT",
|
| 75 |
+
"delaunay_max_edge_px": 40.0,
|
| 76 |
+
"closing_kernel": [15, 15],
|
| 77 |
+
"closing_iterations": 2,
|
| 78 |
+
"douglas_peucker_factor": 0.01,
|
| 79 |
+
"minimum_contour_area_px": 1000,
|
| 80 |
+
"erosion_kernel": [5, 5],
|
| 81 |
+
"erosion_iterations": 1,
|
| 82 |
+
},
|
| 83 |
+
"splits": {},
|
| 84 |
+
}
|
| 85 |
+
|
| 86 |
+
all_tokens = {}
|
| 87 |
+
for split, expected in EXPECTED.items():
|
| 88 |
+
mask_dir = root / split / "masks"
|
| 89 |
+
files = sorted(mask_dir.glob("*.png"))
|
| 90 |
+
tokens = [path.stem for path in files]
|
| 91 |
+
if len(files) != expected:
|
| 92 |
+
raise SystemExit(f"{split}: expected {expected} masks, found {len(files)}")
|
| 93 |
+
if len(set(tokens)) != len(tokens):
|
| 94 |
+
raise SystemExit(f"{split}: duplicate mask tokens")
|
| 95 |
+
if any(len(token) != 32 for token in tokens):
|
| 96 |
+
bad = next(token for token in tokens if len(token) != 32)
|
| 97 |
+
raise SystemExit(f"{split}: non-token filename stem {bad!r}")
|
| 98 |
+
split_file = split_dir / f"{split}.txt"
|
| 99 |
+
split_file.write_text("".join(f"{token}\n" for token in tokens), encoding="utf-8")
|
| 100 |
+
scene_tokens = set()
|
| 101 |
+
scene_names = set()
|
| 102 |
+
if samples:
|
| 103 |
+
missing = [token for token in tokens if token not in samples]
|
| 104 |
+
if missing:
|
| 105 |
+
raise SystemExit(f"{split}: {len(missing)} tokens absent from sample.json")
|
| 106 |
+
scene_tokens = {samples[token]["scene_token"] for token in tokens}
|
| 107 |
+
scene_names = {scenes[token]["name"] for token in scene_tokens if token in scenes}
|
| 108 |
+
manifest["splits"][split] = {
|
| 109 |
+
"mask_count": len(files),
|
| 110 |
+
"scene_count": len(scene_tokens) if samples else None,
|
| 111 |
+
"scene_tokens_sha256": hashlib.sha256(
|
| 112 |
+
"\n".join(sorted(scene_tokens)).encode("utf-8")
|
| 113 |
+
).hexdigest()
|
| 114 |
+
if samples
|
| 115 |
+
else None,
|
| 116 |
+
"scene_names": sorted(scene_names) if samples else None,
|
| 117 |
+
"token_list": f"splits/{split}.txt",
|
| 118 |
+
"mask_directory": f"{split}/masks",
|
| 119 |
+
"token_list_sha256": sha256_file(split_file),
|
| 120 |
+
}
|
| 121 |
+
for token in tokens:
|
| 122 |
+
all_tokens.setdefault(token, []).append(split)
|
| 123 |
+
|
| 124 |
+
overlap = sorted(token for token, splits in all_tokens.items() if len(splits) > 1)
|
| 125 |
+
if overlap:
|
| 126 |
+
raise SystemExit(f"training/validation overlap: {len(overlap)} tokens")
|
| 127 |
+
if samples:
|
| 128 |
+
train_scenes = {
|
| 129 |
+
samples[token]["scene_token"]
|
| 130 |
+
for token, splits in all_tokens.items()
|
| 131 |
+
if splits == ["training"]
|
| 132 |
+
}
|
| 133 |
+
val_scenes = {
|
| 134 |
+
samples[token]["scene_token"]
|
| 135 |
+
for token, splits in all_tokens.items()
|
| 136 |
+
if splits == ["validation"]
|
| 137 |
+
}
|
| 138 |
+
if train_scenes & val_scenes:
|
| 139 |
+
raise SystemExit("training/validation scene overlap detected")
|
| 140 |
+
manifest["split_policy"] = {
|
| 141 |
+
"scene_disjoint": True,
|
| 142 |
+
"training_scene_count": len(train_scenes),
|
| 143 |
+
"validation_scene_count": len(val_scenes),
|
| 144 |
+
}
|
| 145 |
+
else:
|
| 146 |
+
manifest["split_policy"] = {"scene_disjoint": None}
|
| 147 |
+
|
| 148 |
+
manifest_path = root / "dataset_manifest.json"
|
| 149 |
+
manifest_path.write_text(
|
| 150 |
+
json.dumps(manifest, ensure_ascii=False, indent=2) + "\n", encoding="utf-8"
|
| 151 |
+
)
|
| 152 |
+
print(json.dumps({"release_root": str(root), "manifest": str(manifest_path), "masks": len(all_tokens)}, indent=2))
|
| 153 |
+
return 0
|
| 154 |
+
|
| 155 |
+
|
| 156 |
+
if __name__ == "__main__":
|
| 157 |
+
raise SystemExit(main())
|
| 158 |
+
|
scripts/generate_masks_from_nuscenes.py
ADDED
|
@@ -0,0 +1,372 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""Recreate nuScenes-NRS road masks from an authorized nuScenes release.
|
| 3 |
+
|
| 4 |
+
Only the official nuScenes metadata and sensor files supplied by the user are
|
| 5 |
+
read. The source tree is never modified. The implementation mirrors the
|
| 6 |
+
historical projection/triangulation post-processing used for nuScenes-NRS.
|
| 7 |
+
"""
|
| 8 |
+
|
| 9 |
+
from __future__ import annotations
|
| 10 |
+
|
| 11 |
+
import argparse
|
| 12 |
+
import json
|
| 13 |
+
from pathlib import Path
|
| 14 |
+
|
| 15 |
+
import cv2
|
| 16 |
+
import numpy as np
|
| 17 |
+
from scipy.spatial import Delaunay
|
| 18 |
+
|
| 19 |
+
try:
|
| 20 |
+
import ijson # type: ignore
|
| 21 |
+
except ImportError: # pragma: no cover - fallback for small metadata exports
|
| 22 |
+
ijson = None
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
DRIVEABLE_SURFACE_LABEL = 24
|
| 26 |
+
IMAGE_WIDTH = 1600
|
| 27 |
+
IMAGE_HEIGHT = 900
|
| 28 |
+
MAX_EDGE_LENGTH = 40.0
|
| 29 |
+
CLOSE_SIZE = 15
|
| 30 |
+
CLOSE_ITER = 2
|
| 31 |
+
SMOOTH_FACTOR = 0.01
|
| 32 |
+
FINAL_ERODE_SIZE = 5
|
| 33 |
+
FINAL_ERODE_ITER = 1
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
def iter_records(path: Path):
|
| 37 |
+
"""Yield records from a nuScenes JSON array without requiring a huge RAM load."""
|
| 38 |
+
if ijson is not None:
|
| 39 |
+
with path.open("rb") as handle:
|
| 40 |
+
yield from ijson.items(handle, "item")
|
| 41 |
+
return
|
| 42 |
+
with path.open("r", encoding="utf-8") as handle:
|
| 43 |
+
records = json.load(handle)
|
| 44 |
+
yield from records
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
def load_json(path: Path):
|
| 48 |
+
with path.open("r", encoding="utf-8") as handle:
|
| 49 |
+
return json.load(handle)
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
def selected_records(path: Path, wanted: set[str]) -> dict:
|
| 53 |
+
found = {}
|
| 54 |
+
for row in iter_records(path):
|
| 55 |
+
token = row.get("token")
|
| 56 |
+
if token in wanted:
|
| 57 |
+
found[token] = row
|
| 58 |
+
if len(found) == len(wanted):
|
| 59 |
+
break
|
| 60 |
+
missing = wanted - found.keys()
|
| 61 |
+
if missing:
|
| 62 |
+
raise RuntimeError(f"{path.name}: missing {len(missing)} requested records")
|
| 63 |
+
return found
|
| 64 |
+
|
| 65 |
+
|
| 66 |
+
SENSOR_CHANNELS = ("CAM_FRONT", "LIDAR_TOP")
|
| 67 |
+
|
| 68 |
+
|
| 69 |
+
def _channel_from_filename(filename: str) -> str | None:
|
| 70 |
+
"""Return a nuScenes channel encoded in a sample-data filename.
|
| 71 |
+
|
| 72 |
+
Official nuScenes ``sample_data.json`` records do not carry a ``channel``
|
| 73 |
+
field; their ``samples/`` and ``sweeps/`` paths do. A few converted
|
| 74 |
+
metadata exports do add the field, and those are handled by
|
| 75 |
+
:func:`index_sample_data` before this helper is called.
|
| 76 |
+
"""
|
| 77 |
+
path_parts = Path(filename).parts
|
| 78 |
+
for channel in SENSOR_CHANNELS:
|
| 79 |
+
if channel in path_parts:
|
| 80 |
+
return channel
|
| 81 |
+
return None
|
| 82 |
+
|
| 83 |
+
|
| 84 |
+
def index_sample_data(metadata: Path, wanted: set[str]) -> tuple[dict, dict]:
|
| 85 |
+
"""Index CAM_FRONT/LIDAR_TOP records for the requested sample tokens.
|
| 86 |
+
|
| 87 |
+
The official nuScenes ``sample.json`` table intentionally contains no
|
| 88 |
+
``data`` mapping. That mapping is assembled by the devkit from
|
| 89 |
+
``sample_data.json`` and the sensor/calibration tables. This function
|
| 90 |
+
performs the same assembly while streaming ``sample_data.json`` so the
|
| 91 |
+
generator does not need to load that large table into memory.
|
| 92 |
+
|
| 93 |
+
Returns ``(records_by_token, channels_by_sample)``. Each requested sample
|
| 94 |
+
must have exactly one key-frame record for both channels; missing or
|
| 95 |
+
duplicate records raise a descriptive ``RuntimeError``.
|
| 96 |
+
"""
|
| 97 |
+
# calibrated_sensor.json and sensor.json are small (dozens of records), so
|
| 98 |
+
# loading them once gives us a reliable channel fallback when a converted
|
| 99 |
+
# filename does not retain the standard ``.../<CHANNEL>/...`` path.
|
| 100 |
+
calibrated_path = metadata / "calibrated_sensor.json"
|
| 101 |
+
sensor_path = metadata / "sensor.json"
|
| 102 |
+
calibrated = {
|
| 103 |
+
row["token"]: row for row in iter_records(calibrated_path)
|
| 104 |
+
}
|
| 105 |
+
sensors = {
|
| 106 |
+
row["token"]: row for row in iter_records(sensor_path)
|
| 107 |
+
} if sensor_path.is_file() else {}
|
| 108 |
+
|
| 109 |
+
records_by_token = {}
|
| 110 |
+
channels_by_sample = {token: {} for token in wanted}
|
| 111 |
+
sample_data_path = metadata / "sample_data.json"
|
| 112 |
+
for row in iter_records(sample_data_path):
|
| 113 |
+
sample_token = row.get("sample_token")
|
| 114 |
+
if sample_token not in wanted:
|
| 115 |
+
continue
|
| 116 |
+
# A sample can have many historical sweeps. Only key-frame records
|
| 117 |
+
# correspond to the samples listed in sample.json. Some compact
|
| 118 |
+
# exports omit is_key_frame; in that case retain the row and let the
|
| 119 |
+
# channel/duplicate checks below decide.
|
| 120 |
+
if row.get("is_key_frame") is False:
|
| 121 |
+
continue
|
| 122 |
+
|
| 123 |
+
candidates = []
|
| 124 |
+
direct_channel = row.get("channel")
|
| 125 |
+
if direct_channel:
|
| 126 |
+
candidates.append(str(direct_channel))
|
| 127 |
+
filename_channel = _channel_from_filename(str(row.get("filename", "")))
|
| 128 |
+
if filename_channel:
|
| 129 |
+
candidates.append(filename_channel)
|
| 130 |
+
calibration = calibrated.get(row.get("calibrated_sensor_token"))
|
| 131 |
+
if calibration is not None:
|
| 132 |
+
sensor = sensors.get(calibration.get("sensor_token"))
|
| 133 |
+
if sensor and sensor.get("channel"):
|
| 134 |
+
candidates.append(str(sensor["channel"]))
|
| 135 |
+
|
| 136 |
+
# Keep the first supported channel, but reject contradictory metadata
|
| 137 |
+
# instead of silently associating a LiDAR record with the camera.
|
| 138 |
+
supported = {channel for channel in candidates if channel in SENSOR_CHANNELS}
|
| 139 |
+
if len(supported) > 1:
|
| 140 |
+
raise RuntimeError(
|
| 141 |
+
f"{sample_data_path.name}: conflicting channels for record "
|
| 142 |
+
f"{row.get('token')}: {sorted(supported)}"
|
| 143 |
+
)
|
| 144 |
+
if not supported:
|
| 145 |
+
continue
|
| 146 |
+
channel = next(iter(supported))
|
| 147 |
+
previous_token = channels_by_sample[sample_token].get(channel)
|
| 148 |
+
if previous_token is not None and previous_token != row.get("token"):
|
| 149 |
+
raise RuntimeError(
|
| 150 |
+
f"{sample_data_path.name}: sample {sample_token} has multiple "
|
| 151 |
+
f"key-frame {channel} records ({previous_token}, {row.get('token')})"
|
| 152 |
+
)
|
| 153 |
+
token = row.get("token")
|
| 154 |
+
if not token:
|
| 155 |
+
raise RuntimeError(f"{sample_data_path.name}: record has no token")
|
| 156 |
+
channels_by_sample[sample_token][channel] = token
|
| 157 |
+
records_by_token[token] = row
|
| 158 |
+
|
| 159 |
+
missing = {
|
| 160 |
+
sample_token: sorted(set(SENSOR_CHANNELS) - set(channels))
|
| 161 |
+
for sample_token, channels in channels_by_sample.items()
|
| 162 |
+
if set(channels) != set(SENSOR_CHANNELS)
|
| 163 |
+
}
|
| 164 |
+
if missing:
|
| 165 |
+
preview = ", ".join(
|
| 166 |
+
f"{token}: {','.join(channels)}" for token, channels in list(missing.items())[:5]
|
| 167 |
+
)
|
| 168 |
+
raise RuntimeError(
|
| 169 |
+
f"{sample_data_path.name}: missing requested key-frame records ({preview})"
|
| 170 |
+
)
|
| 171 |
+
return records_by_token, channels_by_sample
|
| 172 |
+
|
| 173 |
+
|
| 174 |
+
def quaternion_matrix(rotation) -> np.ndarray:
|
| 175 |
+
w, x, y, z = [float(value) for value in rotation]
|
| 176 |
+
norm = w * w + x * x + y * y + z * z
|
| 177 |
+
if norm < 1e-15:
|
| 178 |
+
raise ValueError("zero-norm quaternion")
|
| 179 |
+
s = 2.0 / norm
|
| 180 |
+
return np.array(
|
| 181 |
+
[
|
| 182 |
+
[1 - s * (y * y + z * z), s * (x * y - z * w), s * (x * z + y * w)],
|
| 183 |
+
[s * (x * y + z * w), 1 - s * (x * x + z * z), s * (y * z - x * w)],
|
| 184 |
+
[s * (x * z - y * w), s * (y * z + x * w), 1 - s * (x * x + y * y)],
|
| 185 |
+
],
|
| 186 |
+
dtype=np.float64,
|
| 187 |
+
)
|
| 188 |
+
|
| 189 |
+
|
| 190 |
+
def transform_matrix(translation, rotation, inverse=False) -> np.ndarray:
|
| 191 |
+
matrix = np.eye(4, dtype=np.float64)
|
| 192 |
+
rotation_matrix = quaternion_matrix(rotation)
|
| 193 |
+
translation = np.asarray(translation, dtype=np.float64)
|
| 194 |
+
if inverse:
|
| 195 |
+
rotation_matrix = rotation_matrix.T
|
| 196 |
+
matrix[:3, :3] = rotation_matrix
|
| 197 |
+
matrix[:3, 3] = rotation_matrix @ (-translation)
|
| 198 |
+
else:
|
| 199 |
+
matrix[:3, :3] = rotation_matrix
|
| 200 |
+
matrix[:3, 3] = translation
|
| 201 |
+
return matrix
|
| 202 |
+
|
| 203 |
+
|
| 204 |
+
def filter_triangles(points: np.ndarray, simplices: np.ndarray) -> list[np.ndarray]:
|
| 205 |
+
triangles = []
|
| 206 |
+
for simplex in simplices:
|
| 207 |
+
p0, p1, p2 = points[simplex]
|
| 208 |
+
if max(
|
| 209 |
+
np.linalg.norm(p1 - p0),
|
| 210 |
+
np.linalg.norm(p2 - p1),
|
| 211 |
+
np.linalg.norm(p0 - p2),
|
| 212 |
+
) < MAX_EDGE_LENGTH:
|
| 213 |
+
triangles.append(np.asarray([p0, p1, p2], dtype=np.int32))
|
| 214 |
+
return triangles
|
| 215 |
+
|
| 216 |
+
|
| 217 |
+
def smooth_mask(mask: np.ndarray) -> np.ndarray:
|
| 218 |
+
if not np.any(mask):
|
| 219 |
+
return mask
|
| 220 |
+
close_kernel = cv2.getStructuringElement(
|
| 221 |
+
cv2.MORPH_ELLIPSE, (CLOSE_SIZE, CLOSE_SIZE)
|
| 222 |
+
)
|
| 223 |
+
closed = cv2.morphologyEx(mask, cv2.MORPH_CLOSE, close_kernel, iterations=CLOSE_ITER)
|
| 224 |
+
contours, _ = cv2.findContours(closed, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_NONE)
|
| 225 |
+
result = np.zeros_like(mask)
|
| 226 |
+
for contour in contours:
|
| 227 |
+
if cv2.contourArea(contour) < 1000:
|
| 228 |
+
continue
|
| 229 |
+
epsilon = SMOOTH_FACTOR * cv2.arcLength(contour, True)
|
| 230 |
+
polygon = cv2.approxPolyDP(contour, epsilon, True)
|
| 231 |
+
cv2.fillPoly(result, [polygon], 255)
|
| 232 |
+
erode_kernel = cv2.getStructuringElement(
|
| 233 |
+
cv2.MORPH_ELLIPSE, (FINAL_ERODE_SIZE, FINAL_ERODE_SIZE)
|
| 234 |
+
)
|
| 235 |
+
return cv2.erode(result, erode_kernel, iterations=FINAL_ERODE_ITER)
|
| 236 |
+
|
| 237 |
+
|
| 238 |
+
def make_mask(
|
| 239 |
+
dataroot: Path,
|
| 240 |
+
version: str,
|
| 241 |
+
sample: dict,
|
| 242 |
+
sample_data: dict,
|
| 243 |
+
sample_channels: dict[str, str],
|
| 244 |
+
calib: dict,
|
| 245 |
+
poses: dict,
|
| 246 |
+
) -> np.ndarray:
|
| 247 |
+
cam_sd = sample_data[sample_channels["CAM_FRONT"]]
|
| 248 |
+
lidar_sd = sample_data[sample_channels["LIDAR_TOP"]]
|
| 249 |
+
cam_calib = calib[cam_sd["calibrated_sensor_token"]]
|
| 250 |
+
lidar_calib = calib[lidar_sd["calibrated_sensor_token"]]
|
| 251 |
+
cam_pose = poses[cam_sd["ego_pose_token"]]
|
| 252 |
+
lidar_pose = poses[lidar_sd["ego_pose_token"]]
|
| 253 |
+
|
| 254 |
+
lidar_path = dataroot / lidar_sd["filename"]
|
| 255 |
+
label_path = dataroot / "lidarseg" / version / f"{lidar_sd['token']}_lidarseg.bin"
|
| 256 |
+
if not lidar_path.is_file():
|
| 257 |
+
raise FileNotFoundError(lidar_path)
|
| 258 |
+
if not label_path.is_file():
|
| 259 |
+
raise FileNotFoundError(label_path)
|
| 260 |
+
|
| 261 |
+
points = np.fromfile(lidar_path, dtype=np.float32)
|
| 262 |
+
if points.size % 5:
|
| 263 |
+
raise RuntimeError(f"unexpected point record size in {lidar_path}")
|
| 264 |
+
points = points.reshape((-1, 5))[:, :3]
|
| 265 |
+
labels = np.fromfile(label_path, dtype=np.uint8)
|
| 266 |
+
if labels.size != points.shape[0]:
|
| 267 |
+
raise RuntimeError(f"point/label count mismatch for {sample['token']}")
|
| 268 |
+
points = points[labels == DRIVEABLE_SURFACE_LABEL]
|
| 269 |
+
|
| 270 |
+
lidar_to_camera = (
|
| 271 |
+
transform_matrix(cam_calib["translation"], cam_calib["rotation"], inverse=True)
|
| 272 |
+
@ transform_matrix(cam_pose["translation"], cam_pose["rotation"], inverse=True)
|
| 273 |
+
@ transform_matrix(lidar_pose["translation"], lidar_pose["rotation"])
|
| 274 |
+
@ transform_matrix(lidar_calib["translation"], lidar_calib["rotation"])
|
| 275 |
+
)
|
| 276 |
+
homogeneous = np.column_stack((points, np.ones(len(points), dtype=np.float64)))
|
| 277 |
+
camera_points = (lidar_to_camera @ homogeneous.T)[:3]
|
| 278 |
+
valid_depth = camera_points[2] > 0.1
|
| 279 |
+
camera_points = camera_points[:, valid_depth]
|
| 280 |
+
intrinsic = np.asarray(cam_calib["camera_intrinsic"], dtype=np.float64)
|
| 281 |
+
projected = intrinsic @ camera_points
|
| 282 |
+
if projected.shape[1]:
|
| 283 |
+
projected[:2] /= projected[2:3]
|
| 284 |
+
inside = (
|
| 285 |
+
(projected[0] >= 0)
|
| 286 |
+
& (projected[0] < IMAGE_WIDTH)
|
| 287 |
+
& (projected[1] >= 0)
|
| 288 |
+
& (projected[1] < IMAGE_HEIGHT)
|
| 289 |
+
) if projected.shape[1] else np.zeros(0, dtype=bool)
|
| 290 |
+
points_2d = projected[:2, inside].T.astype(np.float32)
|
| 291 |
+
|
| 292 |
+
mask = np.zeros((IMAGE_HEIGHT, IMAGE_WIDTH), dtype=np.uint8)
|
| 293 |
+
if len(points_2d) >= 3:
|
| 294 |
+
try:
|
| 295 |
+
triangulation = Delaunay(points_2d)
|
| 296 |
+
for triangle in filter_triangles(points_2d, triangulation.simplices):
|
| 297 |
+
cv2.fillPoly(mask, [triangle], 255)
|
| 298 |
+
except Exception:
|
| 299 |
+
# Degenerate projected point sets produce an empty raw mask in the
|
| 300 |
+
# historical implementation; retain that deterministic behavior.
|
| 301 |
+
pass
|
| 302 |
+
mask = smooth_mask(mask)
|
| 303 |
+
rgb = np.zeros((IMAGE_HEIGHT, IMAGE_WIDTH, 3), dtype=np.uint8)
|
| 304 |
+
rgb[:, :, 2] = mask # cv2 writes BGR; channel 2 is R in the PNG.
|
| 305 |
+
return rgb
|
| 306 |
+
|
| 307 |
+
|
| 308 |
+
def main() -> int:
|
| 309 |
+
parser = argparse.ArgumentParser(description=__doc__)
|
| 310 |
+
parser.add_argument("--dataroot", type=Path, required=True)
|
| 311 |
+
parser.add_argument("--version", default="v1.0-trainval")
|
| 312 |
+
parser.add_argument("--split", choices=("training", "validation"), required=True)
|
| 313 |
+
parser.add_argument("--split-file", type=Path, required=True)
|
| 314 |
+
parser.add_argument("--output-root", type=Path, required=True)
|
| 315 |
+
parser.add_argument("--overwrite", action="store_true")
|
| 316 |
+
args = parser.parse_args()
|
| 317 |
+
|
| 318 |
+
dataroot = args.dataroot.resolve()
|
| 319 |
+
metadata = dataroot / args.version
|
| 320 |
+
split_file = args.split_file.resolve()
|
| 321 |
+
tokens = [line.strip() for line in split_file.read_text(encoding="utf-8").splitlines() if line.strip()]
|
| 322 |
+
if len(tokens) != len(set(tokens)):
|
| 323 |
+
raise SystemExit("split file contains duplicate tokens")
|
| 324 |
+
samples = {row["token"]: row for row in load_json(metadata / "sample.json")}
|
| 325 |
+
missing_samples = [token for token in tokens if token not in samples]
|
| 326 |
+
if missing_samples:
|
| 327 |
+
raise SystemExit(f"{len(missing_samples)} split tokens are absent from sample.json")
|
| 328 |
+
sample_data, sample_channels_by_sample = index_sample_data(metadata, set(tokens))
|
| 329 |
+
sample_data_tokens = set(sample_data)
|
| 330 |
+
calib_tokens = {
|
| 331 |
+
sample_data[token]["calibrated_sensor_token"] for token in sample_data_tokens
|
| 332 |
+
}
|
| 333 |
+
pose_tokens = {sample_data[token]["ego_pose_token"] for token in sample_data_tokens}
|
| 334 |
+
calib = selected_records(metadata / "calibrated_sensor.json", calib_tokens)
|
| 335 |
+
poses = selected_records(metadata / "ego_pose.json", pose_tokens)
|
| 336 |
+
|
| 337 |
+
out_dir = args.output_root.resolve() / args.split / "masks"
|
| 338 |
+
out_dir.mkdir(parents=True, exist_ok=True)
|
| 339 |
+
failures = []
|
| 340 |
+
for index, token in enumerate(tokens, start=1):
|
| 341 |
+
output = out_dir / f"{token}.png"
|
| 342 |
+
if output.exists() and not args.overwrite:
|
| 343 |
+
continue
|
| 344 |
+
try:
|
| 345 |
+
image = make_mask(
|
| 346 |
+
dataroot,
|
| 347 |
+
args.version,
|
| 348 |
+
samples[token],
|
| 349 |
+
sample_data,
|
| 350 |
+
sample_channels_by_sample[token],
|
| 351 |
+
calib,
|
| 352 |
+
poses,
|
| 353 |
+
)
|
| 354 |
+
if not cv2.imwrite(str(output), image):
|
| 355 |
+
raise OSError(f"cv2.imwrite failed for {output}")
|
| 356 |
+
except Exception as exc: # keep all missing records visible to the user
|
| 357 |
+
failures.append((token, repr(exc)))
|
| 358 |
+
if index % 100 == 0 or index == len(tokens):
|
| 359 |
+
print(f"{args.split}: {index}/{len(tokens)}")
|
| 360 |
+
if failures:
|
| 361 |
+
for token, error in failures[:20]:
|
| 362 |
+
print(f"FAIL {token}: {error}")
|
| 363 |
+
raise SystemExit(f"generation failed for {len(failures)} samples")
|
| 364 |
+
produced = sorted(path.stem for path in out_dir.glob("*.png"))
|
| 365 |
+
if produced != sorted(tokens):
|
| 366 |
+
raise SystemExit(f"output token set differs from split ({len(produced)} files)")
|
| 367 |
+
print(f"wrote {len(produced)} masks to {out_dir}")
|
| 368 |
+
return 0
|
| 369 |
+
|
| 370 |
+
|
| 371 |
+
if __name__ == "__main__":
|
| 372 |
+
raise SystemExit(main())
|
scripts/validate_archives.py
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""Validate the archive-based Hugging Face nuScenes-NRS release."""
|
| 3 |
+
|
| 4 |
+
from __future__ import annotations
|
| 5 |
+
|
| 6 |
+
import argparse
|
| 7 |
+
import hashlib
|
| 8 |
+
import re
|
| 9 |
+
import zipfile
|
| 10 |
+
from pathlib import Path
|
| 11 |
+
|
| 12 |
+
import cv2
|
| 13 |
+
import numpy as np
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
EXPECTED = {"training": 3182, "validation": 805}
|
| 17 |
+
TOKEN_RE = re.compile(r"^[0-9a-f]{32}$")
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
def sha256_file(path: Path) -> str:
|
| 21 |
+
digest = hashlib.sha256()
|
| 22 |
+
with path.open("rb") as handle:
|
| 23 |
+
for block in iter(lambda: handle.read(1024 * 1024), b""):
|
| 24 |
+
digest.update(block)
|
| 25 |
+
return digest.hexdigest()
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
def read_tokens(path: Path) -> list[str]:
|
| 29 |
+
tokens = [line.strip() for line in path.read_text(encoding="utf-8").splitlines() if line.strip()]
|
| 30 |
+
if len(tokens) != len(set(tokens)) or any(not TOKEN_RE.fullmatch(t) for t in tokens):
|
| 31 |
+
raise AssertionError(f"invalid or duplicate tokens in {path}")
|
| 32 |
+
return tokens
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
def validate_split(root: Path, split: str) -> list[str]:
|
| 36 |
+
tokens = read_tokens(root / "splits" / f"{split}.txt")
|
| 37 |
+
if len(tokens) != EXPECTED[split]:
|
| 38 |
+
raise AssertionError(f"{split}: expected {EXPECTED[split]}, found {len(tokens)}")
|
| 39 |
+
archive = root / split / "masks.zip"
|
| 40 |
+
if not archive.is_file():
|
| 41 |
+
raise AssertionError(f"missing {archive}")
|
| 42 |
+
expected_names = {f"masks/{token}.png" for token in tokens}
|
| 43 |
+
with zipfile.ZipFile(archive) as bundle:
|
| 44 |
+
names = {name for name in bundle.namelist() if not name.endswith("/")}
|
| 45 |
+
if names != expected_names:
|
| 46 |
+
missing = len(expected_names - names)
|
| 47 |
+
extra = len(names - expected_names)
|
| 48 |
+
raise AssertionError(f"{split}: archive members differ (missing={missing}, extra={extra})")
|
| 49 |
+
for index, token in enumerate(tokens, start=1):
|
| 50 |
+
payload = bundle.read(f"masks/{token}.png")
|
| 51 |
+
image = cv2.imdecode(np.frombuffer(payload, dtype=np.uint8), cv2.IMREAD_COLOR)
|
| 52 |
+
if image is None or image.shape != (900, 1600, 3) or image.dtype.name != "uint8":
|
| 53 |
+
raise AssertionError(f"bad PNG shape/dtype for {split}/{token}.png")
|
| 54 |
+
if (image[:, :, 0] != 0).any() or (image[:, :, 1] != 0).any():
|
| 55 |
+
raise AssertionError(f"nonzero blue/green channel for {split}/{token}.png")
|
| 56 |
+
if not ((image[:, :, 2] == 0) | (image[:, :, 2] == 255)).all():
|
| 57 |
+
raise AssertionError(f"non-binary red channel for {split}/{token}.png")
|
| 58 |
+
if index % 500 == 0 or index == len(tokens):
|
| 59 |
+
print(f"checked {split}: {index}/{len(tokens)}")
|
| 60 |
+
return tokens
|
| 61 |
+
|
| 62 |
+
|
| 63 |
+
def validate_hashes(root: Path) -> None:
|
| 64 |
+
rows = []
|
| 65 |
+
for line in (root / "SHA256SUMS.txt").read_text(encoding="utf-8").splitlines():
|
| 66 |
+
if line.strip():
|
| 67 |
+
digest, relative = line.split(" ", 1)
|
| 68 |
+
rows.append((digest, relative))
|
| 69 |
+
for expected, relative in rows:
|
| 70 |
+
path = root / relative
|
| 71 |
+
if not path.is_file() or sha256_file(path) != expected:
|
| 72 |
+
raise AssertionError(f"checksum mismatch or missing file: {relative}")
|
| 73 |
+
print(f"checked SHA-256 entries: {len(rows)}")
|
| 74 |
+
|
| 75 |
+
|
| 76 |
+
def main() -> int:
|
| 77 |
+
parser = argparse.ArgumentParser(description=__doc__)
|
| 78 |
+
parser.add_argument("--root", type=Path, default=Path("."))
|
| 79 |
+
args = parser.parse_args()
|
| 80 |
+
root = args.root.resolve()
|
| 81 |
+
train = validate_split(root, "training")
|
| 82 |
+
val = validate_split(root, "validation")
|
| 83 |
+
if set(train) & set(val):
|
| 84 |
+
raise AssertionError("training/validation token overlap")
|
| 85 |
+
validate_hashes(root)
|
| 86 |
+
print("nuScenes-NRS archive release validation: PASS")
|
| 87 |
+
return 0
|
| 88 |
+
|
| 89 |
+
|
| 90 |
+
if __name__ == "__main__":
|
| 91 |
+
raise SystemExit(main())
|
| 92 |
+
|
scripts/validate_release.py
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""Validate the public nuScenes-NRS release without requiring raw nuScenes data."""
|
| 3 |
+
|
| 4 |
+
from __future__ import annotations
|
| 5 |
+
|
| 6 |
+
import argparse
|
| 7 |
+
import hashlib
|
| 8 |
+
import json
|
| 9 |
+
import re
|
| 10 |
+
from pathlib import Path
|
| 11 |
+
|
| 12 |
+
import cv2
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
EXPECTED = {"training": 3182, "validation": 805}
|
| 16 |
+
TOKEN_RE = re.compile(r"^[0-9a-f]{32}$")
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
def sha256_file(path: Path) -> str:
|
| 20 |
+
digest = hashlib.sha256()
|
| 21 |
+
with path.open("rb") as handle:
|
| 22 |
+
for block in iter(lambda: handle.read(1024 * 1024), b""):
|
| 23 |
+
digest.update(block)
|
| 24 |
+
return digest.hexdigest()
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
def split_tokens(path: Path) -> list[str]:
|
| 28 |
+
rows = [line.strip() for line in path.read_text(encoding="utf-8").splitlines() if line.strip()]
|
| 29 |
+
if len(rows) != len(set(rows)):
|
| 30 |
+
raise AssertionError(f"duplicate token in {path}")
|
| 31 |
+
bad = [token for token in rows if not TOKEN_RE.fullmatch(token)]
|
| 32 |
+
if bad:
|
| 33 |
+
raise AssertionError(f"invalid token in {path}: {bad[0]}")
|
| 34 |
+
return rows
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
def validate_split(root: Path, split: str) -> list[str]:
|
| 38 |
+
tokens = split_tokens(root / "splits" / f"{split}.txt")
|
| 39 |
+
if len(tokens) != EXPECTED[split]:
|
| 40 |
+
raise AssertionError(f"{split}: expected {EXPECTED[split]} tokens, found {len(tokens)}")
|
| 41 |
+
files = sorted((root / split / "masks").glob("*.png"))
|
| 42 |
+
names = sorted(path.stem for path in files)
|
| 43 |
+
if names != sorted(tokens):
|
| 44 |
+
raise AssertionError(f"{split}: token list and mask filenames differ")
|
| 45 |
+
for index, path in enumerate(files, start=1):
|
| 46 |
+
image = cv2.imread(str(path), cv2.IMREAD_COLOR)
|
| 47 |
+
if image is None:
|
| 48 |
+
raise AssertionError(f"cannot read {path}")
|
| 49 |
+
if image.shape != (900, 1600, 3) or image.dtype.name != "uint8":
|
| 50 |
+
raise AssertionError(f"bad shape/dtype in {path}: {image.shape}, {image.dtype}")
|
| 51 |
+
# PNG is read as BGR: road must be pure red and all other channels zero.
|
| 52 |
+
if (image[:, :, 0] != 0).any() or (image[:, :, 1] != 0).any():
|
| 53 |
+
raise AssertionError(f"nonzero blue/green channel in {path}")
|
| 54 |
+
if not ((image[:, :, 2] == 0) | (image[:, :, 2] == 255)).all():
|
| 55 |
+
raise AssertionError(f"red channel is not binary in {path}")
|
| 56 |
+
if index % 500 == 0 or index == len(files):
|
| 57 |
+
print(f"checked {split}: {index}/{len(files)}")
|
| 58 |
+
return tokens
|
| 59 |
+
|
| 60 |
+
|
| 61 |
+
def validate_hashes(root: Path) -> None:
|
| 62 |
+
checksum_file = root / "SHA256SUMS.txt"
|
| 63 |
+
rows = []
|
| 64 |
+
for line in checksum_file.read_text(encoding="utf-8").splitlines():
|
| 65 |
+
if not line.strip():
|
| 66 |
+
continue
|
| 67 |
+
digest, relative = line.split(" ", 1)
|
| 68 |
+
rows.append((digest, relative))
|
| 69 |
+
if not rows:
|
| 70 |
+
raise AssertionError("SHA256SUMS.txt is empty")
|
| 71 |
+
for expected, relative in rows:
|
| 72 |
+
path = root / relative
|
| 73 |
+
if not path.is_file():
|
| 74 |
+
raise AssertionError(f"checksum target missing: {relative}")
|
| 75 |
+
actual = sha256_file(path)
|
| 76 |
+
if actual != expected:
|
| 77 |
+
raise AssertionError(f"checksum mismatch: {relative}")
|
| 78 |
+
print(f"checked SHA-256 entries: {len(rows)}")
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
def validate_scene_disjointness(root: Path, metadata_dir: Path | None) -> None:
|
| 82 |
+
if metadata_dir is None:
|
| 83 |
+
print("scene disjointness: skipped (no official metadata supplied)")
|
| 84 |
+
return
|
| 85 |
+
samples_path = metadata_dir / "sample.json"
|
| 86 |
+
scenes_path = metadata_dir / "scene.json"
|
| 87 |
+
samples = {row["token"]: row for row in json.loads(samples_path.read_text(encoding="utf-8"))}
|
| 88 |
+
scenes = {row["token"]: row for row in json.loads(scenes_path.read_text(encoding="utf-8"))}
|
| 89 |
+
train = {samples[token]["scene_token"] for token in split_tokens(root / "splits/training.txt")}
|
| 90 |
+
val = {samples[token]["scene_token"] for token in split_tokens(root / "splits/validation.txt")}
|
| 91 |
+
if train & val:
|
| 92 |
+
raise AssertionError("training/validation scene overlap")
|
| 93 |
+
unknown = (train | val) - scenes.keys()
|
| 94 |
+
if unknown:
|
| 95 |
+
raise AssertionError(f"unknown scene tokens: {len(unknown)}")
|
| 96 |
+
print(f"scene disjointness: PASS ({len(train)} training, {len(val)} validation scenes)")
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
def main() -> int:
|
| 100 |
+
parser = argparse.ArgumentParser(description=__doc__)
|
| 101 |
+
parser.add_argument("--root", type=Path, default=Path("."))
|
| 102 |
+
parser.add_argument(
|
| 103 |
+
"--metadata-dir",
|
| 104 |
+
type=Path,
|
| 105 |
+
default=None,
|
| 106 |
+
help="Optional official v1.0-trainval metadata directory for scene checks",
|
| 107 |
+
)
|
| 108 |
+
args = parser.parse_args()
|
| 109 |
+
root = args.root.resolve()
|
| 110 |
+
train = validate_split(root, "training")
|
| 111 |
+
val = validate_split(root, "validation")
|
| 112 |
+
if set(train) & set(val):
|
| 113 |
+
raise AssertionError("training/validation token overlap")
|
| 114 |
+
validate_scene_disjointness(root, args.metadata_dir.resolve() if args.metadata_dir else None)
|
| 115 |
+
validate_hashes(root)
|
| 116 |
+
print("nuScenes-NRS release validation: PASS")
|
| 117 |
+
return 0
|
| 118 |
+
|
| 119 |
+
|
| 120 |
+
if __name__ == "__main__":
|
| 121 |
+
raise SystemExit(main())
|
| 122 |
+
|
scripts/write_checksums.py
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""Write the deterministic SHA-256 manifest for a release directory."""
|
| 3 |
+
|
| 4 |
+
from __future__ import annotations
|
| 5 |
+
|
| 6 |
+
import argparse
|
| 7 |
+
import hashlib
|
| 8 |
+
from pathlib import Path
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
def sha256_file(path: Path) -> str:
|
| 12 |
+
digest = hashlib.sha256()
|
| 13 |
+
with path.open("rb") as handle:
|
| 14 |
+
for block in iter(lambda: handle.read(1024 * 1024), b""):
|
| 15 |
+
digest.update(block)
|
| 16 |
+
return digest.hexdigest()
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
def main() -> int:
|
| 20 |
+
parser = argparse.ArgumentParser(description=__doc__)
|
| 21 |
+
parser.add_argument("--root", type=Path, default=Path("."))
|
| 22 |
+
args = parser.parse_args()
|
| 23 |
+
root = args.root.resolve()
|
| 24 |
+
output = root / "SHA256SUMS.txt"
|
| 25 |
+
files = sorted(
|
| 26 |
+
path
|
| 27 |
+
for path in root.rglob("*")
|
| 28 |
+
if path.is_file()
|
| 29 |
+
and path != output
|
| 30 |
+
and ".git" not in path.relative_to(root).parts
|
| 31 |
+
and "__pycache__" not in path.relative_to(root).parts
|
| 32 |
+
)
|
| 33 |
+
rows = [f"{sha256_file(path)} {path.relative_to(root).as_posix()}\n" for path in files]
|
| 34 |
+
output.write_text("".join(rows), encoding="utf-8")
|
| 35 |
+
print(f"wrote {len(rows)} entries to {output}")
|
| 36 |
+
return 0
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
if __name__ == "__main__":
|
| 40 |
+
raise SystemExit(main())
|
| 41 |
+
|
splits/training.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
splits/validation.txt
ADDED
|
@@ -0,0 +1,805 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
001acc7e76db4fac81aa055050794e17
|
| 2 |
+
00665a89f121424595a27537237d6896
|
| 3 |
+
009c734ba4e0469d9d573c629f0c837f
|
| 4 |
+
00aa056fbee4411f99bbc8b59e1ade81
|
| 5 |
+
00c28af35a394780a88a8c52e579adac
|
| 6 |
+
00c6ec695c1349a4bc07397438ffb802
|
| 7 |
+
00d479f92c074090bfb4169d64464ee1
|
| 8 |
+
00e7308da00843cbb240bedbfd7cf536
|
| 9 |
+
01301515bc0943b68eceb2745dd25a3f
|
| 10 |
+
01d0c525617e4affa07f0b4a57f40873
|
| 11 |
+
020d38a2e24d4963a1cf7dd5b9caf39d
|
| 12 |
+
025b6e74513c432c9122e1bd5d361568
|
| 13 |
+
0268d453775c46bf822cdcc12e071e3a
|
| 14 |
+
02866646308141268ef392d062646f1e
|
| 15 |
+
02af9a881ef04c96b02d3ea7fc188d1d
|
| 16 |
+
030f5875902845ab809c33ddc0851e4b
|
| 17 |
+
032133a8a45143ab958d6db35f91381e
|
| 18 |
+
037f6c6a0b5048e2aee789f121574de8
|
| 19 |
+
03c0580c2cbb4b30b38d1e548f4ff34d
|
| 20 |
+
042f582eb2bb4231910918ba85f390d3
|
| 21 |
+
0430e3a2bf43455a95794229e32dca64
|
| 22 |
+
0481b8a146ba418a9184279f6d10ec7f
|
| 23 |
+
04d7a1384c0c49efbe427eb6990f41b8
|
| 24 |
+
050b2d9c4bb647b7ab4ee94bdb538e1d
|
| 25 |
+
051277513f214a8e885e5791cc001657
|
| 26 |
+
0516e8dff20b4dcea18d42579d84c18e
|
| 27 |
+
0565824603ab431582733dbc9723a8ad
|
| 28 |
+
056becbc0d5a46da8d59eebddedb47bb
|
| 29 |
+
0577d14282684e9ea0ddbce7c858d30e
|
| 30 |
+
065cedab9ba84203a21dce8b21a95153
|
| 31 |
+
07175443e8444b8c8c4802fd004e33c1
|
| 32 |
+
072a217f2f3042bc98ac7cc63afa1a00
|
| 33 |
+
074657f408d64f42a2f81a86ae354eda
|
| 34 |
+
0757a34dd49644e7a24c18902a455e1e
|
| 35 |
+
07822f37eb644d5ba749662d707a3312
|
| 36 |
+
07c29094cb6144aa889c16c52f762d79
|
| 37 |
+
080e1fb7e3d0417795750b94ae91af97
|
| 38 |
+
0825e6c5299d4b89b571168c37a8c778
|
| 39 |
+
082c1b8291e248e585f023eaeeccaf3f
|
| 40 |
+
08322e434f6440868687f25959fc54d1
|
| 41 |
+
087a6c59d83445e898b7b5e3401b962a
|
| 42 |
+
087f8bec119046098d271b336fe03f6b
|
| 43 |
+
08e60c480357494880930e64ccca9914
|
| 44 |
+
08f59ce969f54dba825ae35ed927e248
|
| 45 |
+
0906cd9620604d86a18a71f142312546
|
| 46 |
+
0915646e387b484785ae2b847ffdee2f
|
| 47 |
+
09d89a75ca0741df8471f2f180eef346
|
| 48 |
+
0a3abc33048d46f9bd78151d1df4b004
|
| 49 |
+
0a95f81333cb4aaf86fb63df52504845
|
| 50 |
+
0ad063287d264de3a79ffc4036956ca6
|
| 51 |
+
0afc7ea926c04e389de151cb3576eb94
|
| 52 |
+
0b4e2d1ea9cb43a3adfa99e04c419238
|
| 53 |
+
0b829a1f8f024f1da39208c0f7effb3c
|
| 54 |
+
0b8e1dd9693742b49034a0796dc01a8d
|
| 55 |
+
0c3b121d54d542aeabc04e72d2487559
|
| 56 |
+
0c4c4259127a4de69b4984e31982288c
|
| 57 |
+
0c58499dbc5343fda217a922f0b01add
|
| 58 |
+
0c6b4f84a6004e98b253fb7737fba44f
|
| 59 |
+
0cb4cd11142f4ff5913d9657ebfdb627
|
| 60 |
+
0cfd15003c8d4342824ce89d2892af7e
|
| 61 |
+
0d098c7bbd5045f4898c64ba7d92599d
|
| 62 |
+
0d6668bcb0644bbaaee81c17cc308845
|
| 63 |
+
0d857ba7fe584d9880497c92bd4f4c3c
|
| 64 |
+
0e68a9b31f1a45b499362f406fdd3518
|
| 65 |
+
0e746b6042b14ce3b08dddfa903e2619
|
| 66 |
+
0e837c21890a4515874247ceb3dbf5c3
|
| 67 |
+
0e85a38544ce49da8244d623c36bdd53
|
| 68 |
+
0ee7e7691e3e4bd88d43150073906a4f
|
| 69 |
+
0f6e5e4ebe014ed0982fc29e4fff21a3
|
| 70 |
+
1046d673d57e4c1682bd7b99750f5640
|
| 71 |
+
106019a552b7422c835a0c6581cc365c
|
| 72 |
+
10e1acb531d14c9baff6e0d758016fc9
|
| 73 |
+
10e75c729af74a539a37348d94b8d4f8
|
| 74 |
+
11733e0d03114fa48d139a8f545138ae
|
| 75 |
+
117850b16f73431baa46d97483cc3c66
|
| 76 |
+
11c3568bc3314bb4a52a8c2a5f301667
|
| 77 |
+
125bf46a76ac4b45852d9771e005dc07
|
| 78 |
+
12b84fc5196541db9e57972493299107
|
| 79 |
+
1309b0946c9e465f8540a9630cc50e78
|
| 80 |
+
1349c952687e4dad82a456f938a25e1e
|
| 81 |
+
134ae8a8f5c340f9894a414fc0966af4
|
| 82 |
+
1378783fae574a64921bd144e13b149a
|
| 83 |
+
1397d97da4be42a28b30f053489a22e3
|
| 84 |
+
13dbe757951f43b1923fed3def0ced06
|
| 85 |
+
13f6a070a53740ea9abc5756ad9f08dd
|
| 86 |
+
140489163db54cd6ba017c6affa8dc1f
|
| 87 |
+
15ddb219df5e44ff97b2f56dfe43f175
|
| 88 |
+
15e0ce420ed241a8a5ad10b7f4312267
|
| 89 |
+
16233b066d6946af8f94d8f1ebfd6cfd
|
| 90 |
+
164f783759ee4cacad5ce057e4bc33f8
|
| 91 |
+
16a84d6a33a54313ab21296acc0a423c
|
| 92 |
+
16be33a44cef4fa48ea6e2e4b28a2b11
|
| 93 |
+
16d452cb1c1b4bb090deaed261fa6325
|
| 94 |
+
16d8d4cd2cb34921ad185ceda2a82aa6
|
| 95 |
+
16ec1ba4fdb045b38ccc8dc4016e73df
|
| 96 |
+
170124d2d0c74999bc66fbf207941777
|
| 97 |
+
178263c0453842c3b66e47b6bc5685f6
|
| 98 |
+
18174b773d9449e489f701535c21abd6
|
| 99 |
+
182dcb88dfcf4c2986230bd139805707
|
| 100 |
+
19bef248fa2f4d62b63c92f08fc5fb34
|
| 101 |
+
19cfb9dfc26947fcbde40c066bb7ad8c
|
| 102 |
+
19d58b42f9bf41c7b23a0ba78f8acb67
|
| 103 |
+
1a41ba0751d5497ebd32df7c86950671
|
| 104 |
+
1a7e91a9b7d0405ba4d261c8d6bc6b82
|
| 105 |
+
1ab39fe9bbe14ff198626e388270fd1e
|
| 106 |
+
1ae5e9934f0f43d89923551200a33641
|
| 107 |
+
1b4add4789c64f84b68643d004173d60
|
| 108 |
+
1b4f3647aeed4b3e96a2aec4fb32ef62
|
| 109 |
+
1b7d0a6d69e542c7955bf942a42f6586
|
| 110 |
+
1bbcede176b14832b9dfc7fcc0418856
|
| 111 |
+
1c5c458b8a654bde93548cd32becd7f0
|
| 112 |
+
1c640fed08564c4881e583e0498b496b
|
| 113 |
+
1c969990eb1f4d9297517d6c11d715cd
|
| 114 |
+
1ce3e34a59a647be8805f0f825934062
|
| 115 |
+
1d0e875fb7134d5ab8927ce64fe2feea
|
| 116 |
+
1d4e17443bf04e95b9207cde259843ef
|
| 117 |
+
1d7a57c5ba544eb49a5e174f8459e628
|
| 118 |
+
1d9de3318c3a417981e3fa4ee89bcbc3
|
| 119 |
+
1dacdffab5c240f1b20e05566b940ef6
|
| 120 |
+
1dc0ba023bb84217a1d1fe534a7d4ab1
|
| 121 |
+
1dd4f030ecdc4ac6ad2d61a5e0b9b1e5
|
| 122 |
+
1e0d1b76ea134c7db0592c4510f5e737
|
| 123 |
+
1e2ca68ae0fe4f0a9c8cecc6e45b0469
|
| 124 |
+
1e80c3c5566e45408195ba718b05165a
|
| 125 |
+
1f07801f3c5a4e189705d749522672ed
|
| 126 |
+
1f4b78720c6343aca9f8d6e5458f5657
|
| 127 |
+
1f4f68261696478e9a392d83f576d068
|
| 128 |
+
1f7eddfff1a64c1c8daa5883783aa3f2
|
| 129 |
+
2063ba46c0de4ca5919dec45ed6e1dc2
|
| 130 |
+
206b92bbf13843779e5278f5b26ede31
|
| 131 |
+
20973517b82a45bd93e1b5ae135791ff
|
| 132 |
+
21ad110301c643c2a2419e130a1f07b8
|
| 133 |
+
2224fdf1bf6e48c285cd07adf152aac9
|
| 134 |
+
22371f36ca124fccba946a71ffcbb3d9
|
| 135 |
+
229711ae135144bbb422244c64ced2d9
|
| 136 |
+
229f774ed3094b2bb23c32c435b8499c
|
| 137 |
+
22b2881ee63046a3b5a680fc86f2023a
|
| 138 |
+
236f1ecb6ee7459d918cd011831674d6
|
| 139 |
+
23871c1ab4b643a89c671ebf3d1f0121
|
| 140 |
+
239c9c2687264bc1b64a154322838f70
|
| 141 |
+
24488637f5c2431a98e6b7cfee3bf857
|
| 142 |
+
245c01efd07649918d7fbdf61df94fe7
|
| 143 |
+
2535ed916a3e45ba8d35636de7a3dcb9
|
| 144 |
+
2566ae6a7e6d43419753a78381cf6067
|
| 145 |
+
256c00199ff648dc96cb0205715d9bdc
|
| 146 |
+
25a4a6aa9096458285cba35c950f2717
|
| 147 |
+
2690c36281244c06b709e9f4eeb1317a
|
| 148 |
+
26f72b4fc58f47a0898dbbdc5023575c
|
| 149 |
+
26f99f91a8e14038bd52aee4d00df394
|
| 150 |
+
273c930b3f384bd58b2bbae02fe81d1e
|
| 151 |
+
27749aa3de2545219186c61d4d415e1c
|
| 152 |
+
277816f6b9d04555bb6db18dc67c89ec
|
| 153 |
+
277b967f11ff4429aa74268c95eead1e
|
| 154 |
+
27811e14e7874dc3b5e861e2b526c760
|
| 155 |
+
27ca643c579f4c129c06afe467093ca7
|
| 156 |
+
283ca7ce51bb4f8c8655cdbf7a431744
|
| 157 |
+
285546185179451da3b0907f8bd0503c
|
| 158 |
+
28e802a0a89e4eee987034d7a13f075a
|
| 159 |
+
2914ccfb8ced4734818e651e3c81993b
|
| 160 |
+
2983c897383e4cb2b2df9351e0bbfad0
|
| 161 |
+
29f369497f264f34a1a9419fc0283e38
|
| 162 |
+
2a001771a6024a64ad3224fb91fa1b06
|
| 163 |
+
2a3e8e88e0bd4bea818d4071d365f700
|
| 164 |
+
2a566b259bde46af9d6df6905a60e5d2
|
| 165 |
+
2aeeb7ac5f244406b8017d1e7b795df8
|
| 166 |
+
2bc817494a974a4ead1b3e6b6bdb4b99
|
| 167 |
+
2bd028e4a38749e28f7df4b26a52d660
|
| 168 |
+
2bea4396f5de448c89589a6895f8eae0
|
| 169 |
+
2c08a86ef0ae462f869a5654daf1c948
|
| 170 |
+
2c54067c142b49fa9e0efa818d46f724
|
| 171 |
+
2c77ee386aa0444aaf27140fe6cc8364
|
| 172 |
+
2cce8c92274641ac80acc16f7a98a77f
|
| 173 |
+
2cdea0117b7b44b3a4be45008566234c
|
| 174 |
+
2ce7bbbe90684f82a0c90da4334f83c4
|
| 175 |
+
2d2b9252567e42338a624c975465849c
|
| 176 |
+
2f877311b702477cb14cdc54936858bd
|
| 177 |
+
3018c0295fb7498baf1bed6096f8ae13
|
| 178 |
+
302bac1b032242fd8bc04ec116bca617
|
| 179 |
+
3075963b6e124521bed2c25996a1c941
|
| 180 |
+
308944b922fa4e6e8803231270223362
|
| 181 |
+
313d88c76fd7443180a2ee61d0eb1904
|
| 182 |
+
31e543b3c4544f33822e046577534d49
|
| 183 |
+
31ee9b01ade74b7da5155965772dea34
|
| 184 |
+
339fee0725b8496e98032f44352a14d7
|
| 185 |
+
33ebeee68d1948d0851f465e8568e174
|
| 186 |
+
3403b23df15a4d6bb7a52dd2d0d8f59d
|
| 187 |
+
340c6ba976c94c3fb3961ad9bf6d420b
|
| 188 |
+
344e3d96df1d44dfb8fe0ee4d69b980b
|
| 189 |
+
34e14c18e08943068c1b216977483bb6
|
| 190 |
+
34fb45d038f24e2b9dc68ef2f9955cf6
|
| 191 |
+
350222ca342b46c195ff574af999bd0a
|
| 192 |
+
35d5917af6a04eaaa6a6a56c9ef0d0d1
|
| 193 |
+
35e97896579e4505910a3ca4b0aeb66c
|
| 194 |
+
36aa1c0eeb50457b97911c3bd742a730
|
| 195 |
+
374cc878c3ac443c8e2a901020a1aa8a
|
| 196 |
+
37a6775bf3634ea2b3a4e814c974fa74
|
| 197 |
+
38372de574a0493caac6f052029f52fc
|
| 198 |
+
3873d8fae816458fb86452f03f74f34e
|
| 199 |
+
38c4644a31bf4b7a9dc5493c3511edb6
|
| 200 |
+
38fcfea08bb94165aa2f7873ef4c8318
|
| 201 |
+
39b83a77abd448fe90c290a16a2df2d1
|
| 202 |
+
39b93b7428954d718a43c7da7b5b01f0
|
| 203 |
+
3a08e36b0a7e4751ad28e4966f7f83ee
|
| 204 |
+
3a215909c71748f4b60e3b8b2365339d
|
| 205 |
+
3b12e85035b54df1a00a596e48efb661
|
| 206 |
+
3b33465711eb4ee3a0afce469738dacc
|
| 207 |
+
3b594831ff7f4e27a9889c7b7d0d8e92
|
| 208 |
+
3b594af1b130490989536590345c9dc9
|
| 209 |
+
3d1a12210ffe40939d87303db27f264b
|
| 210 |
+
3d48b21a2df74b3c8bd2124f5b3dbd66
|
| 211 |
+
3d7b4c9671034d2b998ef6b208191745
|
| 212 |
+
3db1f3dc74494b20b683b5a8e685eb36
|
| 213 |
+
3e16485d2ed3436e8fcb71ed66015120
|
| 214 |
+
3e71a0ee309a4b89b37563e1de2c4a1c
|
| 215 |
+
3ecbfde575374f31ad0f2e0c4547cd60
|
| 216 |
+
3f2ddc9476eb475b8c46f777f508cedb
|
| 217 |
+
3f597ce7f45747a79082e173f4a2b78d
|
| 218 |
+
3fad9ea6895244ceaf1b0306e02eadda
|
| 219 |
+
3ff58ee0fc4748d9895300f02114aa56
|
| 220 |
+
4020f66a67a24f6c9be67d5deae5dc31
|
| 221 |
+
40a75e2e0dc24387bfdb5bffc306eb70
|
| 222 |
+
40c56835c7e94bf290e12aa0b1ea92c2
|
| 223 |
+
413f259bf2284c4682d5fd242f0b6e1a
|
| 224 |
+
41550a1f0b0548e5823b14d95e807c7d
|
| 225 |
+
4167fea025514f9fb2f5643f87862cb4
|
| 226 |
+
418341f41530495dbc5c78e50ac45346
|
| 227 |
+
421d83b3124146469b25b185fc90d74f
|
| 228 |
+
42232640b63d4aedaa3311430a4291e0
|
| 229 |
+
4275833953094de2bdaa78ccf78e51a1
|
| 230 |
+
42c4dd1fcf5147c5b98064455d29141e
|
| 231 |
+
433841506c744582b598c5190a141542
|
| 232 |
+
4358530a0f1e45618515d284d0920a1c
|
| 233 |
+
4363a87202c944aea191d5031bfb1953
|
| 234 |
+
43adecbafa4a49efb4a7614981b71f7b
|
| 235 |
+
445e9dd3fc1348b6b09545b5d88616e9
|
| 236 |
+
44a52213522640f8ae90ea1c4e21e97b
|
| 237 |
+
44bb391f20ef4dd8830f1812ac2c70bd
|
| 238 |
+
45768e4f5b3e4ccca29ce2f3919289d3
|
| 239 |
+
45a0e35595484bc0a6644baf461c99e7
|
| 240 |
+
45e03230485941c89c8835316334e76f
|
| 241 |
+
460528e658d549b68540b4ca9528973b
|
| 242 |
+
46451e11f73942f788ed60ad188e9f29
|
| 243 |
+
46d180be54d3499189bd658c2469fe52
|
| 244 |
+
474423dd45954adbbbf696287ae96225
|
| 245 |
+
47817d5850f94c5aa7ab43f229912025
|
| 246 |
+
47cf66759a934360b07c17911a3c755a
|
| 247 |
+
4858c06688ed47bab82a71184bc0f8dd
|
| 248 |
+
489f5a5bda9d4cd4a9f7f164161c06ca
|
| 249 |
+
4998876515cc4ae8b7c7210433a0b2d4
|
| 250 |
+
49dfd2f2fef447cc9b8dec3e17c1c919
|
| 251 |
+
4a6ea70dea914f2d9cf939dee3f47b4d
|
| 252 |
+
4af3697280874ce9b05ec5b2c442a6e6
|
| 253 |
+
4aff4a8180c4498da1c3292518542c41
|
| 254 |
+
4b9b2c02a4cc49158e3ad9425889daf2
|
| 255 |
+
4bb8746bba0e4762974f5b1cac8b8b2c
|
| 256 |
+
4bc92d753d1a4f9f95ae42f8b0aa6722
|
| 257 |
+
4bf1d36d32d94f04bd09f67d5cd502e8
|
| 258 |
+
4c1de865efc14836953a3cadeb6ea489
|
| 259 |
+
4cd1b64d8de14d06b399e17d15fc2c66
|
| 260 |
+
4cf912b4689c47b38d8d5c226c4b0474
|
| 261 |
+
4d0cfea5b50f43189e9a056cd6a3128d
|
| 262 |
+
4d0fe28f87724aeebaf3892fb366bdeb
|
| 263 |
+
4d4e4c0fd8ec49bdb12788e0a9ecbce3
|
| 264 |
+
4d9aa5c2b7354fdf8e7e47a4bcfff87c
|
| 265 |
+
4ddfec3c0eaa48eebec29444c5ab7e83
|
| 266 |
+
4e169e93acb346d59de1af7f2b4882e1
|
| 267 |
+
4e1d1031fe9f45f981a2f598365fc645
|
| 268 |
+
4e237101f6284da7a84ac9fbe3efa23f
|
| 269 |
+
4e3596e697f049e4aa82953916f48ae0
|
| 270 |
+
4f4d04f823944f4e8bf58bfd9a97088a
|
| 271 |
+
4f5d5716e3c84ff4b1712fe3ca2cddef
|
| 272 |
+
4f6de7952def4f19bc83486b12ab29aa
|
| 273 |
+
4fab01b54ffb4cb292f36a9e37d6042e
|
| 274 |
+
5074ad6e7bbb484091f96d6d5b0b8401
|
| 275 |
+
507efd4d15d54320b3cd6723099bd92a
|
| 276 |
+
509ea128114b40e7b72ecfa0bdc7b490
|
| 277 |
+
5121b3dda80e47b28ffada52f4dc5c95
|
| 278 |
+
522e23c73c58464fb36b78099fbcd116
|
| 279 |
+
52382fba2b69421e91b59ad661d4428c
|
| 280 |
+
52b77f7493534fbdbf9d07728d466421
|
| 281 |
+
53e4ac3bfdfe4de8a10168cb833d1772
|
| 282 |
+
54a0a741163847349e20097f6c63a7e9
|
| 283 |
+
54af3641e4e544a9b36c437f4bff066e
|
| 284 |
+
553535fc45154ecb8103eb6d0429c8d6
|
| 285 |
+
5569a7a3c01e4501b8f3e8f4371def0f
|
| 286 |
+
55addb9cc46645ac92ada6bdcd0b991f
|
| 287 |
+
55fc7ab524af4cbe858e6307b7e6de42
|
| 288 |
+
562afd8761d04b94a1bc4ce1ce15ea82
|
| 289 |
+
56da354d5afa49e68f2c92e49cdb3f67
|
| 290 |
+
573143da5e3e4b2f915115d5fe10cb45
|
| 291 |
+
580aab6fbbfe401797676c4815b35116
|
| 292 |
+
582b905936e44033918b65103a931145
|
| 293 |
+
584d3bbfa37e4ca4ab411c4c3c945c08
|
| 294 |
+
58ef4e1860754b0aaf7645dd9e76de9f
|
| 295 |
+
5a038263bc9a402da315e1fe4e173c7b
|
| 296 |
+
5a3d768f976645ab9561c27c3639d258
|
| 297 |
+
5a89d8fc38014772b9da2c3fd34b8392
|
| 298 |
+
5abb17189643497f8600a187fb20aa55
|
| 299 |
+
5c0bfcbd6a704036afbf21eda15e5486
|
| 300 |
+
5c1d145a31544211aad6b7710a6d0e87
|
| 301 |
+
5c80c08723914501ae10dd59c27c1300
|
| 302 |
+
5d40ca5d881842c2857d9e9bc8068a07
|
| 303 |
+
5d6064d6da1144d0bf844fb1c3d69507
|
| 304 |
+
5d87df9e71524d46a9457acfb230eaac
|
| 305 |
+
5df9c8b7f24e488ea6a922ae74c9c251
|
| 306 |
+
5e4ad06ddfa5444a96a68b698596b944
|
| 307 |
+
5e9bfb1da7cf4469bc29c507e2a885b3
|
| 308 |
+
5ebba3c2a42d46969f8f81897fdabb25
|
| 309 |
+
5f32871d1abc446e9bebabd5c5b1d6f4
|
| 310 |
+
5fc1727d3d9c4e419b969c5fa28c4bd9
|
| 311 |
+
5fc2575690734ec1aa2b45ceb2e12c73
|
| 312 |
+
5fcf31022eb54412a4b954dd0de89767
|
| 313 |
+
609dd6c32a5e43b18737b35aec6b1034
|
| 314 |
+
60bce8b1dbbf4e5b8629b4e59924d3ef
|
| 315 |
+
61147c7e1fd6484cbfb2d2bbce276b73
|
| 316 |
+
614c6962e44240b1b0ebb3eb351fe0eb
|
| 317 |
+
61cfc5554a724824b0d34bddc147d890
|
| 318 |
+
61f949883ba7405d99529a8b9fb9cb0b
|
| 319 |
+
61fd401b91db4c9aaea63945a8b87df1
|
| 320 |
+
626f6ba092844742ac3447b69eb0fe72
|
| 321 |
+
629323e575754fe2815ed5926581565e
|
| 322 |
+
62a9acf2b9ff42c1aebfd10627ef72d8
|
| 323 |
+
634807bc68f94beeb869b9e1c01c6673
|
| 324 |
+
6372712792144ebe9443900597ffbaef
|
| 325 |
+
64493dc3ca644343ace1375e9d34a5bb
|
| 326 |
+
648fe1aeca944fb793b334cb6ee01854
|
| 327 |
+
64ba8182ed7f4690aecb99aeb69b178a
|
| 328 |
+
64bc2a67882a43b7ab4d6349aa8c9f04
|
| 329 |
+
64d3946ee0bf4efdbae21e387d9190ff
|
| 330 |
+
64da0eefc1404f948ef30a6abb88f0e6
|
| 331 |
+
64e66d626d5d42eabcfc1e9b9f2a6e91
|
| 332 |
+
6516cdb76889454c9259e77a68ad38cb
|
| 333 |
+
65db946ee2b24f77b98c8c5a9702f7bc
|
| 334 |
+
65ddadbe30ea4256b6f397b442382d10
|
| 335 |
+
664518a7a7754fabb97c0c4c3d1923a7
|
| 336 |
+
66e35a873b34445793d0efafc9f7e591
|
| 337 |
+
673a97d809524cf795ee4e641bcdd0b1
|
| 338 |
+
67489f6898d24b658f563bbcccc56406
|
| 339 |
+
67bf079a21324b93bc4ed2be26f3e26a
|
| 340 |
+
67d2540d4e104e2fb8a54e7b5a78dc12
|
| 341 |
+
68115096691c4a36ac9fa3ea44dfdd7b
|
| 342 |
+
68ed35936729495799a9ad0ad78b2e10
|
| 343 |
+
691d7f2148fb45498b7160edc98e955d
|
| 344 |
+
697cbf95c5b74e17a6d03b31ba757b44
|
| 345 |
+
69fbac1eaf274e30a8e4f6f4f5bfaef7
|
| 346 |
+
6a19fce898cf4f61b07d7b34db4a45bf
|
| 347 |
+
6a24bf71cc954e0394de813fa846c422
|
| 348 |
+
6a2504e57f5643d49688d5c5c58a1122
|
| 349 |
+
6a5ffff19da3462591f6185983d41138
|
| 350 |
+
6a8a5ad30e114e9e9781c236efc34987
|
| 351 |
+
6aaac99d4a794b54b5f67836a3b25c42
|
| 352 |
+
6bc967a989cf44aebb4d71515221f87d
|
| 353 |
+
6bf25bc4c0ae47068245b05918173ac5
|
| 354 |
+
6bf306fe03a142ed920576d2c9142280
|
| 355 |
+
6c1f430a6a214cbb915401f2d518b5da
|
| 356 |
+
6cb024831cce4b6e8acf85afb7cece6e
|
| 357 |
+
6ce51a9ca9044b0596d44eea36237b58
|
| 358 |
+
6d4b0e4cc7a147c4a0f7e396abd3a0a6
|
| 359 |
+
6d7574d3ac054776b67fdc05a5ddb38d
|
| 360 |
+
6dc25b37f8674e2389690f696392f586
|
| 361 |
+
6ddbe3473f9a4eb1a1e9c5861e19c8f7
|
| 362 |
+
6e47d58dc74a4407a00970ade1b895d1
|
| 363 |
+
6e5e6593b57c43d69d2c237121f41617
|
| 364 |
+
6edb9cb7eb2f4b24956f058dabae8054
|
| 365 |
+
6f3f54eb2ce54888a6c6a8cdca6f2e59
|
| 366 |
+
6f641914dc1a438f9cd22266f049f7fd
|
| 367 |
+
7000bca0e2bd4134b0ed1d6c98d79d3e
|
| 368 |
+
707adf9db2084990973d30ee2f2a04db
|
| 369 |
+
709703b9c11b4adfbf810eb176333ec1
|
| 370 |
+
70f0d89bdf8d4598904f87e9af1f331f
|
| 371 |
+
7147d8d1b51b428fb408f34799325111
|
| 372 |
+
7196e0f5dda2478bbe1ad06eb0e348a4
|
| 373 |
+
71bd05582c274214b7f52d3720e28c3f
|
| 374 |
+
71d53b1b11a7478793e06711896f6810
|
| 375 |
+
721ef3e25efd4e41b7e218cbf3be59fe
|
| 376 |
+
72a02602d97a4e519a18517a989f1c8e
|
| 377 |
+
737062db4f11494aa489045e5b1ea3ad
|
| 378 |
+
73751e603335483eb8d13618d03067ec
|
| 379 |
+
73d0113754fe4c07be8cd9d40d330974
|
| 380 |
+
73f9b30498834df386586c0d3b1f1c72
|
| 381 |
+
74f37d96acd54917992d76cafc3e9944
|
| 382 |
+
75691818ed324d48a20415d0eeb297c2
|
| 383 |
+
75ba8f88124b4daaae05e5e8235ccc34
|
| 384 |
+
7681531dde8f4132b949fb1e2e738fb5
|
| 385 |
+
774680e9468644d7b9f00fb70b784b7b
|
| 386 |
+
77b6b67d28e0452fa935055d4afccdd2
|
| 387 |
+
77fc24547ab34182a945eecb825b6576
|
| 388 |
+
79159f7a87a0472f970e628e1d04b1a4
|
| 389 |
+
79fc824ab8414df09d6f28e06f97e6a6
|
| 390 |
+
7a05436558f5464a858492f762c8419c
|
| 391 |
+
7a2319bdf0b64b498d3026d1c4aa0fa2
|
| 392 |
+
7a60f1da970e43c0b1e915b0d62b8114
|
| 393 |
+
7c299d32fd95451b83e23c6e63a3c548
|
| 394 |
+
7c31fe05e54b4fbebc0b16678fc14b21
|
| 395 |
+
7c619ca63a1e4b788352f861c8d3bcd3
|
| 396 |
+
7cec5e7b20044f5da63c805c8e1adc82
|
| 397 |
+
7d82aa0c679141d1a71733b85fdcd3ed
|
| 398 |
+
7e1b153b446946278fe18853f968eeb6
|
| 399 |
+
7e85de15de2544ff8c2d975acbfc1e5d
|
| 400 |
+
7f51af0bce4b48e7bdb430dc4fdfbdc6
|
| 401 |
+
7ff35bd62c41453c983870a774052345
|
| 402 |
+
80e23e78839d46e795795c4c1a548287
|
| 403 |
+
815da77946a94368a846c6ccd760780a
|
| 404 |
+
8178cfbc864e4cb0b6e35746b32bed9f
|
| 405 |
+
819649b9d40c4a3eb63aa02ea86aa15a
|
| 406 |
+
81b74ed83de54fcebc92c6f8e163c054
|
| 407 |
+
81c355bb940b4809a720b0c1c6ba10fe
|
| 408 |
+
81fc8037246943a592c04c67448fe998
|
| 409 |
+
8205f9e936c6463abbfd485ec5a59385
|
| 410 |
+
825e36c324354f2caf0462dc5fbaa7e6
|
| 411 |
+
82cec7b2aa3246328991165f9eec6dcd
|
| 412 |
+
8336b62c3f6f4bb988c3865cc5df4446
|
| 413 |
+
835b3413b9674cbbb52a3f7649012668
|
| 414 |
+
83c9b9c6781a4808a88c971fcfefc46b
|
| 415 |
+
83fc2ab79a3a400b8aecdd9c81f13790
|
| 416 |
+
840ebbbb8a4446fa9a2421b5c89bb7b6
|
| 417 |
+
84415639b5b448c8b6bfe0744e7dda3d
|
| 418 |
+
84b1faa4aebc4b2f892d7b7a9e775bc2
|
| 419 |
+
851a472129cb4a58bc9a02e243e5c3b2
|
| 420 |
+
857fae3be36443429142346546d7e935
|
| 421 |
+
86786fac1a484d2eb892458add7e4e93
|
| 422 |
+
867b8f137c5048c398bd80a74a2685ea
|
| 423 |
+
86858a1282a44814a52f9daa532cd484
|
| 424 |
+
86a38888decf472b8cd3681d82ec1afa
|
| 425 |
+
8764eda886ba494ea5a1fd1442615d43
|
| 426 |
+
87e4a7140f9247f6b6d6aada9228d4d1
|
| 427 |
+
883405b988db44e0aaa275b45ac716f7
|
| 428 |
+
89354b3eb74b4da78ebc4186d68bb0ec
|
| 429 |
+
8a612f44856c4206b69811d7664e9d9b
|
| 430 |
+
8ac6c53be5e4438aacc163a391e0d963
|
| 431 |
+
8aebf178791146e1ac11a816c5600d48
|
| 432 |
+
8c91fc590a274ec3b67635e7b09c3072
|
| 433 |
+
8cc06390249d4895b5b9b860f0952f24
|
| 434 |
+
8d211c7a254145a5a028b5f3185b12af
|
| 435 |
+
8d684cf8abce4d18a9f0ab8fedd645d7
|
| 436 |
+
8d7dcd1533704f5882a5afcb65509ed5
|
| 437 |
+
8d997cc8ba4340729119cd9989429933
|
| 438 |
+
8da3ec3d729f4b9197a676fe00499fe5
|
| 439 |
+
8dbd093105d04d67babf8bed1b3e2d81
|
| 440 |
+
8de3505db94e4a06b8dfac5fd3d69b03
|
| 441 |
+
8e5512a630dc44c08d3e3f692b34f808
|
| 442 |
+
8e8ea5034d494affac52423548031d1a
|
| 443 |
+
8f4744720f3d43a1a28c0751cc3182ac
|
| 444 |
+
8f535885fc8342368cd9b4c342ab24fd
|
| 445 |
+
8fc8248d37654d33b6b1c747847dbbba
|
| 446 |
+
900d2fa2780448eda28168e64411fedc
|
| 447 |
+
90bc34df30b2428aa1438cd59825b5f8
|
| 448 |
+
91424f52454642eba89bc27284cabf02
|
| 449 |
+
914e2758331d42ad97ede94140784a0c
|
| 450 |
+
917590ac1b874a7eaedfbe691886f7f7
|
| 451 |
+
92026e052bf540dea11a32a7d1cd8197
|
| 452 |
+
9216b3b3223041a38d5f9d6ae243b806
|
| 453 |
+
92d07d4bf543498d92ad3f223b8a1d89
|
| 454 |
+
930bb914469c4efa9e9178b42c57b897
|
| 455 |
+
933f8af57a1a41938e0f60530401acdd
|
| 456 |
+
93581f7f7f414972ab569e80cd924e00
|
| 457 |
+
9368e168276940c49dc882a8323a5bf4
|
| 458 |
+
93f4f8ac1145418cadcf14dfd2a9cf78
|
| 459 |
+
94e0f187cd93419082a95d45eaf4001a
|
| 460 |
+
95c0a92d52584756832ec795d346e296
|
| 461 |
+
9600d2233c784ed7ae90733720688f79
|
| 462 |
+
967a3cd451cc4ce3b12f948060ae8261
|
| 463 |
+
9734fb80334b4a9cbbbd60bad043ee5c
|
| 464 |
+
975753352ae744a4a87053122f9d15a7
|
| 465 |
+
978393f26358477eb27ac5195c20a9a6
|
| 466 |
+
981807149fd145bcba93dbbe2db00ff6
|
| 467 |
+
98f8b165f576482a82d0ced97ae8b866
|
| 468 |
+
98fa81992fb04e799c329eca220e7164
|
| 469 |
+
99cf50171a534cfd9c0318b6303a18d4
|
| 470 |
+
99f903d3f74a4f76a05a4f1e10e49329
|
| 471 |
+
9a179b2ac4e9445abb2c4470d72d89e5
|
| 472 |
+
9af8c6dbe0fe4e70bb2097242737f0c6
|
| 473 |
+
9afc778cc4734c9ba3a12303251d64b7
|
| 474 |
+
9b75adec6dbc44bf937e7f329ad50205
|
| 475 |
+
9bb62f29df1b442d829098eb1193b428
|
| 476 |
+
9bd27a83e6ee47f9aa372bbe8a8573c8
|
| 477 |
+
9c0188bef4aa4f278d50491041553af3
|
| 478 |
+
9c30d85cf4c64d4bbe6ee04d7606a3d8
|
| 479 |
+
9c5c65d8353c4b94b6d7231d0de29284
|
| 480 |
+
9c7c7d5d109c40fcaecd3c422d37b4f6
|
| 481 |
+
9c93690fc9e24ebc90906ed922159d75
|
| 482 |
+
9cc9718713c14974b5e3094e1c4eae1c
|
| 483 |
+
9dd921e3d49942c7adfb611d9a75f8f1
|
| 484 |
+
9ddd760c701345e6aa9a3fb07ba5c297
|
| 485 |
+
9ee59e733dcb4d4b99988c89592f5929
|
| 486 |
+
9f3c1ed777844a748f6a2a4a532d047b
|
| 487 |
+
9f703846f357490aaf8f0fba9e7815b3
|
| 488 |
+
9fa3739836fb43c59a5354759c47fb0a
|
| 489 |
+
a007bb258ef64368935f2134b21bc849
|
| 490 |
+
a01a845d7ed2407fb77fc0f60fc74f19
|
| 491 |
+
a028144375904de79f21f2bd9d10ecf7
|
| 492 |
+
a066eb48903241f890dd842cbb7d1620
|
| 493 |
+
a0c85ae7a1b84a2f86a021f91082ad76
|
| 494 |
+
a0d4c1414db14a0782a7915ebb5785dc
|
| 495 |
+
a1077ca56ae74b0f8bf4d8ba06802472
|
| 496 |
+
a1b4f3ebd2d8441cba221df2441301e2
|
| 497 |
+
a28ba5249a42475b94932d8fa43baf8f
|
| 498 |
+
a28cb3edd8684baa925d5b3dd4454bc4
|
| 499 |
+
a2b4eb85441343dcb30a19c5e60e0b19
|
| 500 |
+
a3c460b4287b4585aa947c41cd022edb
|
| 501 |
+
a40c02648c494fa6b4ad1f8afe39053e
|
| 502 |
+
a43568a562a043f38af0ec0b71520af7
|
| 503 |
+
a480496a5988410fbe3d8ed6c84da996
|
| 504 |
+
a53573b8da254128a3642c1e232a27ec
|
| 505 |
+
a5367adc397b49e3b49dd8e9c37c4596
|
| 506 |
+
a5c0ec90615e42818962e4e002de0cef
|
| 507 |
+
a5c90f849579422ab03f94e0cee03871
|
| 508 |
+
a73303e8adda4632b977ad35ea66fea6
|
| 509 |
+
a7649ab0806c4d91a816f90bf838d6b1
|
| 510 |
+
a7a2c378191b4c4c9abdac947d163e5f
|
| 511 |
+
a804d28db9854d89a01764edacfbf19a
|
| 512 |
+
a80878527ac94625bcf4743fef8206ba
|
| 513 |
+
a84f43c4ef52461d940a6c7d0768b86f
|
| 514 |
+
a86ad4a35e4b4695b1394fc94aaa2967
|
| 515 |
+
a8a6bf5c96d147fcbf49633e0cce7fe7
|
| 516 |
+
aa11fb7855944626a48c58c058899bf2
|
| 517 |
+
aa12f4c45c024f2ca6941f97253232c4
|
| 518 |
+
aad7fcfee87f427f9a2e6baca0a7f656
|
| 519 |
+
ab022d22920347678b6fab7093af8edc
|
| 520 |
+
ab46e245575547ed8fb80530113ad949
|
| 521 |
+
abf2d81e20374408944c8ed68fb76220
|
| 522 |
+
abf3d91d3c28407e80e3334fe89c03cb
|
| 523 |
+
ac2d7d96aba34780830b54a184208302
|
| 524 |
+
ac5909f518af4d008a1c574075454d56
|
| 525 |
+
ac8dc6c5efcc4f3498f4816ecc8af659
|
| 526 |
+
ace4b20b94cf47d0b68addac79fe68de
|
| 527 |
+
acf9fcbeb1e346b98640f694f15460e8
|
| 528 |
+
adb0ca825bbd4386b34be1bddadc5df7
|
| 529 |
+
adeb76288a0345a899f08e1ed70c48a1
|
| 530 |
+
adf3d8b9f7a1450ab670acd10f0b4a2d
|
| 531 |
+
ae110514a90b429187cb3405ce97e635
|
| 532 |
+
ae7f3993b5fb4650ad452cb7757f2c07
|
| 533 |
+
aeaa12755c71497d9f542c238746b3c5
|
| 534 |
+
aed0c4270ed24b40ab1611a071cbaf75
|
| 535 |
+
aedd72e9640d4777a4c763ea73817119
|
| 536 |
+
af005e95927245169c5910870c0d7f2b
|
| 537 |
+
af1dbd3671924284af4ef4f6caf1ad4b
|
| 538 |
+
b085cc54b9c6437db176033620d00529
|
| 539 |
+
b0f78e91c5c64e13b5fb42519832ef04
|
| 540 |
+
b1390401cb684e4e8f8d903d1a4e3e68
|
| 541 |
+
b19e53a336bb41b491b7ce09a2ac9ddf
|
| 542 |
+
b1a4ac5193024c4d90b0b5b55bc127fb
|
| 543 |
+
b20ea8bd7a5041388e81e51091118f34
|
| 544 |
+
b22520071138481794aa8c4947166a4d
|
| 545 |
+
b2af46f0857043b0896fc842f20cd1da
|
| 546 |
+
b2e653258e49404bbdf201aa821326fd
|
| 547 |
+
b314b38e1459477ca91ed6913e0b4431
|
| 548 |
+
b3b64c9385d94d808c56c4d4242ed56a
|
| 549 |
+
b3d5371734ac4c8baa0703020f66cd90
|
| 550 |
+
b3e01aa169d04c9f894907c36a594654
|
| 551 |
+
b3eeb253d2e444309fc0937cc0ca367d
|
| 552 |
+
b449eef85550419c8e09ff89830d1dd9
|
| 553 |
+
b47a4be6a87245969b9f49ec1215a983
|
| 554 |
+
b4c279e61abf49bd871ff2ec4b13e115
|
| 555 |
+
b5851b7cbe254a01915c9c321622ee61
|
| 556 |
+
b61678de2b4844119bfbf99d74c2b8d1
|
| 557 |
+
b6ab3e79582b4a49b3caed9a4be892f9
|
| 558 |
+
b6caf1f9962f4495872cc5c815b94fc3
|
| 559 |
+
b6da7f3a8fef4216bf0def6f69363ecc
|
| 560 |
+
b6fd2d6e2620433d92ea475bbf1d91bb
|
| 561 |
+
b728e1ed7f8649e7b39f840bc3a1031b
|
| 562 |
+
b7a696b7e7c94c9696b23d3c4bfd65a4
|
| 563 |
+
b7cfc4d1da7648f2bd57c6e583bd10df
|
| 564 |
+
b7e3d9d0d0ef44a9a3bed7f1c0d9cab6
|
| 565 |
+
b830d6d66b934b949778645cdafdb956
|
| 566 |
+
b832171fe69a47d9b96083ab0f531a1c
|
| 567 |
+
b87fa2e95b1d4a83ba7b49116f15f0fe
|
| 568 |
+
b88cb3fec5864a7ba33a88d790838b20
|
| 569 |
+
b902d29df24c4efda414a9a88ed57031
|
| 570 |
+
b905f597f32648e5beeba69ef3e5a0c6
|
| 571 |
+
b9254548087a4ba482bf4645a7dffa3d
|
| 572 |
+
b97ab2821fab4550b85fbf345b90b7a3
|
| 573 |
+
b988f44fe5794d419f450352f70cebcf
|
| 574 |
+
b993550e60054741983f8052ba97b0b0
|
| 575 |
+
b9d0fc3883b94a8da761b011392decbb
|
| 576 |
+
ba943d6b836a44fdad968d0a0fe43897
|
| 577 |
+
bba3a54fbc8144c1b0ef934d0a2d5854
|
| 578 |
+
bbb8ac0234ed4febbe17de0a30e418b3
|
| 579 |
+
bbc4b41142d1423484cdc0b7ef18484e
|
| 580 |
+
bbe7c0e4ddbf4a22b88d9eb1e1d18707
|
| 581 |
+
bc1859cd462540869870d7105d977cf6
|
| 582 |
+
bc4a791980fc4ee0bc6e9f4da69acb7c
|
| 583 |
+
bcc5fcfc5a06497e9045f32786ca3f4e
|
| 584 |
+
bd3c3463c03f4e43aa1d3d4d58d06c3d
|
| 585 |
+
bd451ad70ab2497686008bed765d8805
|
| 586 |
+
bdbcf562968544a49f88e477614a7f93
|
| 587 |
+
be16ceec2a864f50843087bc90cbb79d
|
| 588 |
+
be30fde2e91247049ed17afd09cbf912
|
| 589 |
+
be5ea56c21c14be2a43193cf50c520e0
|
| 590 |
+
be75cf94ec3841cca384e1c9a2499a00
|
| 591 |
+
bef46195fa2c403e807f2f44be118dde
|
| 592 |
+
bf70c75762b0498b89f8f5add90726fa
|
| 593 |
+
c0157485f0d5408b8419a8f160afc901
|
| 594 |
+
c08393de25794fdc8df3920705e0690e
|
| 595 |
+
c09943fe824c43ffb53b66afc7e8f110
|
| 596 |
+
c0a1b175c6424dbb84d093c646b04d72
|
| 597 |
+
c10d8ebad6f741d497583ca83a98c53b
|
| 598 |
+
c114fcb56775465eb4d89a3d760c1aff
|
| 599 |
+
c14d2751412248568d8822a852615942
|
| 600 |
+
c18d3bcc9297454ba52112c079cb756e
|
| 601 |
+
c196589195494b19942daa73e25add9a
|
| 602 |
+
c1a1f32e00494e1cb589f02e0561bea9
|
| 603 |
+
c1a38f44070c4bcebca2e21dd4864cef
|
| 604 |
+
c1c5deb545fd4bf9b5ee8da94a783245
|
| 605 |
+
c202ead75d2c4a918c58c9931f5b2cb7
|
| 606 |
+
c208b10f4f8b4e80983b0b369e0da046
|
| 607 |
+
c27993a5abde458695701df7adc6fa9d
|
| 608 |
+
c36e8482feb041de9f081e76396cf4fe
|
| 609 |
+
c3a0c23e73774e34b6f2146130e04d6f
|
| 610 |
+
c3d1bdbb037642e78ecbe1cb99a4f283
|
| 611 |
+
c3fe336c6d9d44d98d9feba35de9cd9e
|
| 612 |
+
c4048cf79e5c4b88a5845dfc98b3b1e9
|
| 613 |
+
c4203acc7a704f61a0a77235c48bb05b
|
| 614 |
+
c43fbd41e79249fd80f1815d241cdf21
|
| 615 |
+
c453481ebcec458db5a180a749257526
|
| 616 |
+
c471213976cf4f4fb376e05917bd5391
|
| 617 |
+
c494dd260b804b13be8ba71b2f93362f
|
| 618 |
+
c55e72e2f2184d12a8928a8be07b28d7
|
| 619 |
+
c5832e65bd1e44f5b7601f788ecf6bb6
|
| 620 |
+
c631b61375a642b6b110f5bd5543ef7a
|
| 621 |
+
c690e424602a4de5afdb2f5194b7fc59
|
| 622 |
+
c6a20a439c0849818c384f3a3c8db7b7
|
| 623 |
+
c6ac7eddf31b468db08d9b8b44686e1a
|
| 624 |
+
c6cc38d1f6ef40b5a30a73374b134bf4
|
| 625 |
+
c74dd74a661e4feb81ef42194324fd1a
|
| 626 |
+
c7975b812f8046ff83953e4ed7bb88c7
|
| 627 |
+
c798517864de45cb8884027b4905758a
|
| 628 |
+
c7e060c12940433bbe2d57be9b6eaf7b
|
| 629 |
+
c845c88b8f2744ac95bea1eb23568097
|
| 630 |
+
c8ae3fcd7e9c48418c7a3b3c5df524cd
|
| 631 |
+
c9e812f2705b4b198f4675dfaa33812d
|
| 632 |
+
ca306db1012f493c99165c73938b37a7
|
| 633 |
+
ca31d398f8f444b88068a92cbac97b0d
|
| 634 |
+
ca88ff32e59b43d5952b5aa0dbd44808
|
| 635 |
+
ccb759e574d247b8ab95199f98552821
|
| 636 |
+
ccc1239373064283aed9c4e7c953862e
|
| 637 |
+
cd4bddd33df244b9b678ae08f3fe710a
|
| 638 |
+
cd5e84537443411fa68cf394c5c80985
|
| 639 |
+
cda1e9b375ab4e7f87495cecb7b7d654
|
| 640 |
+
cdc5d6c40a734dc19c923c4cc6944494
|
| 641 |
+
ce60a5da05064f9e97325c16c51e9f06
|
| 642 |
+
cf289b533aa648eebd634d60bf541935
|
| 643 |
+
cf939373048e4c3b875a6fe5c6b0cda3
|
| 644 |
+
d02bdb7645874fe7a986dfb4159bc84d
|
| 645 |
+
d037991d81494af3830fcf06ea25f28c
|
| 646 |
+
d0762c5e6da44e19aff21a537c99a08a
|
| 647 |
+
d07b019548c74f2491647edabc1a5da3
|
| 648 |
+
d10f852db20e451c87d35b104df09b18
|
| 649 |
+
d1136fce62f14400a069613e274f46f7
|
| 650 |
+
d15cb77b647845d4b6b17b55358f3780
|
| 651 |
+
d1946dfac66548c594900374a8b8da7f
|
| 652 |
+
d236c538c3fc4bdebf206e5d40bcd0ae
|
| 653 |
+
d2510aa8fd564d8c94a83f97a1cf833b
|
| 654 |
+
d297511c1dec40c7ab8f44e54e2f6454
|
| 655 |
+
d297927bf813452cb1f8dd9f83b64f7b
|
| 656 |
+
d2b426460bc241b7bb6921670fcbc425
|
| 657 |
+
d2cf52e741c24378a8b67efaa5c5fb98
|
| 658 |
+
d343077a540647948f11425da34fed5f
|
| 659 |
+
d45cdb52b54c4ca7ab41dbea7c11994b
|
| 660 |
+
d47623a57d094abc9e63f44508299c03
|
| 661 |
+
d4b3cf822022481a86e923f9a8d80642
|
| 662 |
+
d4eab108bd7a44a3a2f741f288e4f8ba
|
| 663 |
+
d4f2d7ebe36943acbd606032ecebbf9b
|
| 664 |
+
d501737a45d146f8af94511adaf27761
|
| 665 |
+
d5129f60381d43219ce73a53dc32aab5
|
| 666 |
+
d572fa26969a460fa4781c27cb57d8b5
|
| 667 |
+
d61ef2ae3bd54793b8beec55061940f0
|
| 668 |
+
d6d4aaf8435d48bf92ccc5db780eb952
|
| 669 |
+
d6ff811ac59b4879982ca9cc6a7724ae
|
| 670 |
+
d7750af01a6e401fa7cae725ae990b6c
|
| 671 |
+
d796fe3fee2a41dca994637677c024ad
|
| 672 |
+
d7cb9aa06de1442d8e2a22d562045cb4
|
| 673 |
+
d80ee373feda4f449b76a06c2afece6d
|
| 674 |
+
d847827ccaec4c5d8d79df4507980d65
|
| 675 |
+
d86f77974e534d1b8c4910251c7b09c7
|
| 676 |
+
d87928de430d46ceac32c80bcb6c2ab8
|
| 677 |
+
d87f850baf014487ba8286d5a4c858f8
|
| 678 |
+
d888055e2d3143279b680a88399b84dc
|
| 679 |
+
d8c48a8010644b9fbc5146bcc5f3423e
|
| 680 |
+
d9acd321e2764ad2ac71cd46955d93cf
|
| 681 |
+
da19913456e84253b7c7a9df8f048f4b
|
| 682 |
+
da1f65a1bf0243599770293ef3eb66f6
|
| 683 |
+
da24031547b04c998ade039ace191ad1
|
| 684 |
+
da5a6eadf7b74abb944df9ae25bf7f5b
|
| 685 |
+
daae21dc94b74898a7362922e8792415
|
| 686 |
+
db276f2010264019b76b7f3cf383343f
|
| 687 |
+
db32662d82ea4a7ca12b3af5934c87af
|
| 688 |
+
db886d257bda4130a355ac13cb3c35ae
|
| 689 |
+
db9921688a634e7e9fc963b9363aa3bb
|
| 690 |
+
dbaed41d17e14b938b775d192a3aaadc
|
| 691 |
+
dc4c80e8a1534ff8a3eb80307341161c
|
| 692 |
+
dc53cf076d114df7bb59c2a0b3bc3154
|
| 693 |
+
dc8f0646f77f4dbead65f5ccfacafa19
|
| 694 |
+
dcd5692dcbfa46d6818875e73d221a4b
|
| 695 |
+
dea589f5596d40dbb2d6f0c817427b34
|
| 696 |
+
def0724c22c14ae2afb3ee752771b84d
|
| 697 |
+
df661459175848dfa13fd474a59c5e68
|
| 698 |
+
e0228577f3584b0ea6f7415baad201f3
|
| 699 |
+
e11197eea9584485b2e1c85bcb952b5f
|
| 700 |
+
e169b19a2829404aa91dcda37e657354
|
| 701 |
+
e254c1f1948044738856fc1f10345fa1
|
| 702 |
+
e25bc59ec54142d9a3436bbf2bea82e1
|
| 703 |
+
e2ecc7dfd4b245c4bb06a24f74d3bf58
|
| 704 |
+
e31aea95240a48f8bfc9353b745384e5
|
| 705 |
+
e32da26413474192bca8dbec5ee55600
|
| 706 |
+
e36c6286d4c04d22934270ebf66fca7e
|
| 707 |
+
e386ce38d87e4e699b13f618af167829
|
| 708 |
+
e399ca0b966248b8b5b3c3131ed80218
|
| 709 |
+
e4299084285843db9970521e8b7212a0
|
| 710 |
+
e473399dc6e648298b6caaef21e9bedc
|
| 711 |
+
e4d73cf6fe45495fa87eed49c3a0d8ce
|
| 712 |
+
e4dd73d0476b4f03881d355cba04654b
|
| 713 |
+
e55c80999e824179a1e973d3a3f543da
|
| 714 |
+
e5754b34b2064f6db39f5d5314f4dac5
|
| 715 |
+
e57fd5ceb5b44be6a8dfc1c1f6b60606
|
| 716 |
+
e5b0dfece8cf49fd860a9a28e3867874
|
| 717 |
+
e5d9750fb461470aa4d6574ba90f69ff
|
| 718 |
+
e5ec2485e3c84ee3b4cd0e5681c7776c
|
| 719 |
+
e6467af1dad8492f8e217a1052271590
|
| 720 |
+
e681bd8589f04cff9593224a4ab35b8e
|
| 721 |
+
e69287eb831a4f9cbe0dd27c0b393514
|
| 722 |
+
e6b0b282aa174a978272dc2d0a89d560
|
| 723 |
+
e6d4036eb8334c2ca5adfe011a767c7c
|
| 724 |
+
e6e5845a2d2848138d35785b3385edae
|
| 725 |
+
e7076f06bea44e239d2ffb8b39509818
|
| 726 |
+
e70facf946444ef1be26db121c57c1bc
|
| 727 |
+
e789e3e84dd74a63901e381a483cf340
|
| 728 |
+
e7cc339e60a24f34a3abc3a32c7dd695
|
| 729 |
+
e8203d67db104c499a0335c38ed0afeb
|
| 730 |
+
e82fab5fc9cb4f11977c5d3e5f8b98d0
|
| 731 |
+
e85dca76da664ef7a1d372e42f44244f
|
| 732 |
+
e8b390ab7a1e4fd9a400561408588cd6
|
| 733 |
+
e91a8780af024d8dae3043ca02b1229a
|
| 734 |
+
e93990fa42474da7aa141524f5f0a7ba
|
| 735 |
+
e9a71dc2441f409aaae0c6c3f333dda8
|
| 736 |
+
e9c7ce55d7704391b63e98ebf89d67b9
|
| 737 |
+
e9cabff1d3904919aa1e006451576764
|
| 738 |
+
ea1ac89bfe814459b84cd151bb75a83b
|
| 739 |
+
ea55b57959724936a4075d12ac714fd3
|
| 740 |
+
ea85483fbaf1483d970878f3556cd8b6
|
| 741 |
+
eaca7c91decb4f3d8c87a7010af3beaa
|
| 742 |
+
eaf17ba77e654c48b53b50f0bcb17d79
|
| 743 |
+
ebcfee01288640f2ad8702c292a17c2c
|
| 744 |
+
ebea992454bc4e418a2b347d24fd2376
|
| 745 |
+
ec0111a6f7de4fc3bd59eaa20a0f2c79
|
| 746 |
+
ec1379a5976f48ea87f9206bc86ca753
|
| 747 |
+
ece32f50fcda43e9948bc9b104dd0f8b
|
| 748 |
+
ed6d74a033d14d5bbd61e4b3cac44fbc
|
| 749 |
+
edbb01fe0c424c64972abf99861ec8a1
|
| 750 |
+
ee2e198aeecf45948045cc1c2ef61ac2
|
| 751 |
+
eeba6acc450643188ba1e613a9200668
|
| 752 |
+
ef245cdcc79c448f8a9488fe9c06ccb9
|
| 753 |
+
ef8d863c3b954ec8b21957a8f29c788d
|
| 754 |
+
eff61ec3657c4d1c9327e3fe6ca639d3
|
| 755 |
+
f0a718e817db4fbf935cf8be161f3382
|
| 756 |
+
f104429d63c7448a813d00e0b1032130
|
| 757 |
+
f1b932b0d0804f02bea440d72047febd
|
| 758 |
+
f20453ea64e1431a9c9c64d4fe8f1cfc
|
| 759 |
+
f2a6d0e38153467ba0d02706024e258d
|
| 760 |
+
f300318644c742fca114ca69bd1f4200
|
| 761 |
+
f301c19f5c5f48429f724621b3f25323
|
| 762 |
+
f49130ea0b28440a888f605e61c19e94
|
| 763 |
+
f4d9b6154b5c4a729ed1884c12695856
|
| 764 |
+
f56c2cd561174a9c981cdd573f6c90bb
|
| 765 |
+
f57645069f9a481f8a388c49ddf9f78f
|
| 766 |
+
f5c84e4a736b45228922d56ce183d334
|
| 767 |
+
f5eefd9b8f024c299253db54fb0677f4
|
| 768 |
+
f5f955d2d7594fb4b18ef615b421c98e
|
| 769 |
+
f65ffdc408fb4a0c8ef0d1614b47dce8
|
| 770 |
+
f6892de50d924e9398769ec60d024283
|
| 771 |
+
f6b0a224aeb14190ab0a535dd2eaf47d
|
| 772 |
+
f6e2437d2e7d4b66afc6278019250c66
|
| 773 |
+
f71601fd11b54eb3a5a8a70b55132b9c
|
| 774 |
+
f7774606bec7410089d84d80f97b6bf6
|
| 775 |
+
f77ef1c17cbf432587d705c88ce76b3b
|
| 776 |
+
f7b7254a6cf948f084581bb098099b0a
|
| 777 |
+
f7c3ee85cd0c44ec83cd3332373f1c64
|
| 778 |
+
f7f1a5bb933049b8adfb93cef00a65a2
|
| 779 |
+
f803286c6f664f8a95d4bf0d383ac9c9
|
| 780 |
+
f82d2f4cc2cb45babb7319f21d1f4b62
|
| 781 |
+
f83089bbb9a7474ab4496a32f9fc600d
|
| 782 |
+
f87542a27d26414a9b39670d2794c195
|
| 783 |
+
f8e43e845ae34028b6358cef2c0b9191
|
| 784 |
+
f90292e4cdf647e1a8842baabdaafcec
|
| 785 |
+
f91afaaf3fea412ebb9d82c8a8349991
|
| 786 |
+
f966614ccaf44d99baa7f1d8f1b7d4b3
|
| 787 |
+
fa6cb2cc72b545ad80972d23d0022791
|
| 788 |
+
fb3d12fd61c646d991866a060179be46
|
| 789 |
+
fb537f9ce318450dbcc91386b71d9d4c
|
| 790 |
+
fb61d590dd1143ccb12ea56fbe9d9d07
|
| 791 |
+
fc8ed14d78fa4879898315f5dee21d38
|
| 792 |
+
fc8f30e5ca4c489d9b780728ae5a13a4
|
| 793 |
+
fc9cf867ac9440779d4b5f3a9d98e878
|
| 794 |
+
fcf937eb6ed740ae87b28d7d5b362930
|
| 795 |
+
fd01fd487ac34d99bd030c6dd55b200d
|
| 796 |
+
fd0a47d4eb624488a444e8c3ad09a724
|
| 797 |
+
fd8a906f9eaf4c969caedfa56d7b0be1
|
| 798 |
+
fd8d991b9622475ca60c1bd48faa1014
|
| 799 |
+
fe40762a54e1414da73de751877ad576
|
| 800 |
+
fe4fb18c37f940a9995998f768417512
|
| 801 |
+
ff1439b86fbb45458842042b93058fdd
|
| 802 |
+
ffaf19c70dab44ff825e76f9d1233e47
|
| 803 |
+
ffcf53e9293241179f1e2fee6b852d05
|
| 804 |
+
ffe1639f24874474b36cdff5c7b8a4f7
|
| 805 |
+
fff7244095b441d6a053da2951cf2b3b
|
training/masks.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e24ceef6297e9542efa4257b643a409080acec21dc18e315b5d635f35287bfd6
|
| 3 |
+
size 10257846
|
validation/masks.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c060135f2ef8f20359dc8f502071c8051e340cc3a9f136664e64f1e43f90255b
|
| 3 |
+
size 2498652
|