diff --git a/README.md b/README.md
index 3e4d1563cc9e4889cac0072a37b2f7ead4771ee5..11a2ef3b9f290881d659f0768066e0c2d4f341cf 100644
--- a/README.md
+++ b/README.md
@@ -8,10 +8,33 @@ pretty_name: a
size_categories:
- 10M
+Wensong Song
+·
+Hong Jiang
+·
+Zongxing Yang
+·
+Ruijie Quan
+·
+Yi Yang
+
+
+
+
+
+
+Zhejiang University | Harvard University | Nanyang Technological University
+
+
+## News
+
+* **[2025.4.24]** Released AnyInsertion v1 mask-prompt dataset on Hugging Face.
+
## Summary
-This is the dataset proposed in our paper [**Insert Anything: Image Insertion via In-Context Editing in DiT**](https://arxiv.org/html/2504.15009)
+This is the dataset proposed in our paper [**Insert Anything: Image Insertion via In-Context Editing in DiT**](https://arxiv.org/abs/2504.15009)
AnyInsertion dataset consists of training and testing subsets. The training set includes 159,908 samples across two prompt types: 58,188 mask-prompt image pairs and 101,720 text-prompt image pairs;the test set includes 158 data pairs: 120 mask-prompt pairs and 38 text-prompt pairs.
@@ -26,56 +49,45 @@ AnyInsertion dataset covers diverse categories including human subjects, daily n
```
+
data/
├── train/
│ ├── accessory/
-│ │ ├── ref_image/ # Reference image containing the element to be inserted
-│ │ ├── ref_mask/ # The mask corresponding to the inserted element
-│ │ ├── tar_image/ # Ground truth
-│ │ ├── tar_mask/ # The mask corresponding to the edited area of target image
-│ │ ├── add/ # The image after removing the inserted element in the tar_image
-│ │ ├── replace_different/ # The image after performing a replacement operation with a different shape on the inserted object in the tar_image
-│ │ └── replace_same/ # The image after performing a replacement operation with the same shape on the inserted object in the tar_image
+│ │ ├── ref_image/ # Reference image containing the element to be inserted
+│ │ ├── ref_mask/ # The mask corresponding to the inserted element
+│ │ ├── tar_image/ # Ground truth
+│ │ ├── tar_mask/ # The mask corresponding to the edited area of target image
+│ │
│ ├── object/
-│ │ ├── ref_image/
-│ │ ├── ref_mask/
-│ │ ├── tar_image/
-│ │ ├── tar_mask/
-│ │ ├── add/
-│ │ └── replace/ # The image after performing a replacement operation on the inserted object in the tar_image
+│ │ ├── ref_image/
+│ │ ├── ref_mask/
+│ │ ├── tar_image/
+│ │ ├── tar_mask/
+│ │
│ └── person/
-│ ├── ref_image/
-│ ├── ref_mask/
-│ ├── tar_image/
-│ ├── tar_mask/
-│ ├── add/
-│ └── replace/
+│ ├── ref_image/
+│ ├── ref_mask/
+│ ├── tar_image/
+│ ├── tar_mask/
+│
└── test/
├── garment/
- │ ├── ref_image/
- │ ├── ref_mask/
- │ ├── tar_image/
- │ ├── tar_mask/
- │ └── src_image/ # The image after performing a replacement operation on the inserted object in the tar_image
+ │ ├── ref_image/
+ │ ├── ref_mask/
+ │ ├── tar_image/
+ │ ├── tar_mask/
+ │
├── object/
- │ ├── ref_image/
- │ ├── ref_mask/
- │ ├── tar_image/
- │ ├── tar_mask/
- │ ├── src_image/ # The image after removing the inserted element in the tar_image
+ │ ├── ref_image/
+ │ ├── ref_mask/
+ │ ├── tar_image/
+ │ ├── tar_mask/
+ │
└── person/
- ├── simple_scene/
- │ ├── ref_image/
- │ ├── ref_mask/
- │ ├── tar_image/
- │ ├── tar_mask/
- └── complex_scene/
- ├── ref_image/
- ├── ref_mask/
- ├── tar_image/
- ├── tar_mask/
-
-
+ ├── ref_image/
+ ├── ref_mask/
+ ├── tar_image/
+ ├── tar_mask/
```
@@ -84,34 +96,159 @@ data/
-
+
Ref_image
-
+
Ref_mask
-
+
Tar_image
-
+
Tar_mask
-
-
-
- Add
-
-
-
- Replace_different
-
-
-
- Replace_same
-
-
\ No newline at end of file
+## Usage
+This guide explains how to load and use the AnyInsertion dataset, specifically the subset focusing on mask-prompt image pairs, which has been prepared in Apache Arrow format for efficient loading with the Hugging Face `datasets` library.
+
+### Installation
+
+First, ensure you have the `datasets` library installed. If not, you can install it via pip:
+
+```bash
+pip install datasets pillow
+```
+
+### Loading the Dataset
+You can load the dataset directly from the Hugging Face Hub using its identifier:
+
+```python
+from datasets import load_dataset
+
+# Replace with the correct Hugging Face Hub repository ID
+repo_id = "WensongSong/AnyInsertion"
+
+# Load the entire dataset (usually returns a DatasetDict with 'train' and 'test' splits)
+dataset = load_dataset(repo_id)
+
+print(dataset)
+# Expected output similar to:
+# DatasetDict({
+# train: Dataset({
+# features: ['id', 'split', 'category', 'main_label', 'ref_image', 'ref_mask', 'tar_image', 'tar_mask'],
+# num_rows: XXXX
+# })
+# test: Dataset({
+# features: ['id', 'split', 'category', 'main_label', 'ref_image', 'ref_mask', 'tar_image', 'tar_mask'],
+# num_rows: YYYY
+# })
+# })
+```
+
+### Loading Specific Splits
+If you only need a specific split (e.g., 'test'), you can specify it during loading:
+``` python
+# Load only the 'test' split
+test_dataset = load_dataset(repo_id, split='test')
+print("Loaded Test Split:")
+print(test_dataset)
+
+# Load only the 'train' split
+train_dataset = load_dataset(repo_id, split='train')
+print("\nLoaded Train Split:")
+print(train_dataset)
+```
+
+### Dataset Structure
+* The loaded dataset (or individual splits) has the following structure and features (columns):
+
+* id (string): A unique identifier for each data sample, typically formatted as "split/category/image_id" (e.g., "train/accessory/0").
+
+* split (string): Indicates whether the sample belongs to the 'train' or 'test' set.
+
+* category (string): The category of the main object or subject in the sample. Possible values include: 'accessory', 'object', 'person' (for train), 'garment', 'object_test', 'person' (for test).
+
+* main_label (string): The label associated with the reference image/mask pair, derived from the original label.json files.
+
+* ref_image (Image): The reference image containing the object or element to be conceptually inserted. Loaded as a PIL (Pillow) Image object.
+
+* ref_mask (Image): The binary mask highlighting the specific element within the ref_image. Loaded as a PIL Image object.
+
+* tar_image (Image): The target image, representing the ground truth result after the conceptual insertion or editing. Loaded as a PIL Image object.
+
+* tar_mask (Image): The binary mask indicating the edited or inserted region within the tar_image. Loaded as a PIL Image object.
+
+### Accessing Data
+
+You can access data like a standard Python dictionary or list:
+
+```python
+# Get the training split from the loaded DatasetDict
+train_ds = dataset['train']
+
+# Get the first sample from the training set
+first_sample = train_ds[0]
+
+# Access specific features (columns) of the sample
+ref_image = first_sample['ref_image']
+label = first_sample['main_label']
+category = first_sample['category']
+
+print(f"\nFirst train sample category: {category}, label: {label}")
+print(f"Reference image size: {ref_image.size}") # ref_image is a PIL Image
+
+# Display the image (requires matplotlib or other image libraries)
+# import matplotlib.pyplot as plt
+# plt.imshow(ref_image)
+# plt.title(f"Category: {category}, Label: {label}")
+# plt.show()
+
+# Iterate through the dataset (e.g., the first 5 test samples)
+print("\nIterating through the first 5 test samples:")
+test_ds = dataset['test']
+for i in range(5):
+ sample = test_ds[i]
+ print(f" Sample {i}: ID={sample['id']}, Category={sample['category']}, Label={sample['main_label']}")
+```
+
+### Filtering Data
+
+The datasets library provides powerful filtering capabilities.
+
+```python
+# Filter the training set to get only 'accessory' samples
+accessory_train_ds = train_ds.filter(lambda example: example['category'] == 'accessory')
+print(f"\nNumber of 'accessory' samples in train split: {len(accessory_train_ds)}")
+
+# Filter the test set for 'person' samples
+person_test_ds = test_ds.filter(lambda example: example['category'] == 'person')
+print(f"Number of 'person' samples in test split: {len(person_test_ds)}")
+```
+#### Filtering by Split (if loaded as DatasetDict)
+Although loading specific splits is preferred, you can also filter by the split column if you loaded the entire DatasetDict and somehow combined them (not typical, but possible):
+
+```python
+# Assuming 'combined_ds' is a dataset containing both train and test rows
+# test_split_filtered = combined_ds.filter(lambda example: example['split'] == 'test')
+```
+
+### Working with Images
+The features defined as Image (ref_image, ref_mask, tar_image, tar_mask) will automatically load the image data as PIL (Pillow) Image objects when accessed. You can then use standard Pillow methods or convert them to other formats (like NumPy arrays or PyTorch tensors) for further processing.
+
+```python
+# Example: Convert reference image to NumPy array
+import numpy as np
+
+first_sample = train_ds[0]
+ref_image_pil = first_sample['ref_image']
+ref_image_np = np.array(ref_image_pil)
+
+print(f"\nReference image shape as NumPy array: {ref_image_np.shape}")
+```
+
+
diff --git a/data/data-00000-of-00114.arrow b/data/data-00000-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..ba5d6a05f9768c4bb5bcbe977c3085773b110d4d
--- /dev/null
+++ b/data/data-00000-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6d9f3bbda82de7762ca7fbfeaea035fc3e5dcd675d34e87fdc162a38e6a95d06
+size 474975064
diff --git a/data/data-00001-of-00114.arrow b/data/data-00001-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..d6d4a17bc1b9582d530797d536939e79a9916b04
--- /dev/null
+++ b/data/data-00001-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bba862cf7b3e4a80f933b6d26d2b1c1ab97997e5bb92a75d16e765bc2875196c
+size 525937968
diff --git a/data/data-00002-of-00114.arrow b/data/data-00002-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..0d53c3c2dab513875484b5f9cbd9f428c1ec6674
--- /dev/null
+++ b/data/data-00002-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:46898f1eb8f5a87f16b69efbf8511a6bc348fc1bfb02244a01287b952155871b
+size 463867544
diff --git a/data/data-00003-of-00114.arrow b/data/data-00003-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..beced1f7c175a9e54f371aa893c06e47fd448990
--- /dev/null
+++ b/data/data-00003-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:908cef6f36c6d5334d90c04d4cf773135ed130270e8230a9ad32560e71effd40
+size 563854592
diff --git a/data/data-00004-of-00114.arrow b/data/data-00004-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..20dfb36b00a843798a07798ea75f7b048b4d00d9
--- /dev/null
+++ b/data/data-00004-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8dec96340bddcb6e9d76b07a941d351c3eeb54f010af7cbbf16cd5826c3d16f2
+size 524517192
diff --git a/data/data-00005-of-00114.arrow b/data/data-00005-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..588f9b920f451c4edc749f6e56b7130e2d6a7e3a
--- /dev/null
+++ b/data/data-00005-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:387d0492713b346125d65eb1203f55379523b483d1c89561e5d3316448b9e839
+size 479262304
diff --git a/data/data-00006-of-00114.arrow b/data/data-00006-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..b3cb9acfc5cbe279e4c45987bf8a5d3a91ca8d2a
--- /dev/null
+++ b/data/data-00006-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9fa0800d8d45dccb709f667fcedd00e9756dd4891576342cfcade682fe3e6baa
+size 515263616
diff --git a/data/data-00007-of-00114.arrow b/data/data-00007-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..6f18fd0c5adb5842ccf6198045eb6af237c1834a
--- /dev/null
+++ b/data/data-00007-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:79dd775adab6384ef5c6658b37f56fa63e7b898314ed5c3a8409197989f9e255
+size 510067040
diff --git a/data/data-00008-of-00114.arrow b/data/data-00008-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..a88dd477983c5a5a881e5c20622629c8c847631e
--- /dev/null
+++ b/data/data-00008-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0e3f44ce584f8466f682218c2f3202b12a6651a712879a5ad78b8df2b8d14e47
+size 466063224
diff --git a/data/data-00009-of-00114.arrow b/data/data-00009-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..b0cc573e9afa37281adce3be81e7f4d1e62d82cc
--- /dev/null
+++ b/data/data-00009-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ea0cb8af33a1901f18942ffb8fc77e7042ff5b2a80fa35499c1363cb6bd29407
+size 502884952
diff --git a/data/data-00010-of-00114.arrow b/data/data-00010-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..4a5e643ec2302f5cef028334afaf83c524d1b735
--- /dev/null
+++ b/data/data-00010-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5b5ec9c05c28a4ea03b41252da1aeff4ff3552898e1be09c306e396f9b91253b
+size 494910392
diff --git a/data/data-00011-of-00114.arrow b/data/data-00011-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..ab4a406a4a25c18099257c14689efb8f39a88720
--- /dev/null
+++ b/data/data-00011-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:617a0d5be756a7509110deabd0c7f6690d9788c917e96426a3581ecfcc257712
+size 537808576
diff --git a/data/data-00012-of-00114.arrow b/data/data-00012-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..24bdb619866369b22a9474ccb88770349e57cf9b
--- /dev/null
+++ b/data/data-00012-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b2e01730a141d6570029b313b4a756abeb24b0966de633f3ceec5d37170b6a
+size 554465064
diff --git a/data/data-00013-of-00114.arrow b/data/data-00013-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..0ac02433d9bd1992be1311b977cf1cc475eda007
--- /dev/null
+++ b/data/data-00013-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8c8118aec814815a5729e1f93e5e7e069fe4c09dad2db45950540dfa8e001da9
+size 469411056
diff --git a/data/data-00014-of-00114.arrow b/data/data-00014-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..a33cc780af576c024726d384ead9538a985f00e0
--- /dev/null
+++ b/data/data-00014-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4b3772cd3f5cd6a52bf0d5faa65725ee4e1a4f9911d22fc6ad56d2fdcb757028
+size 460387160
diff --git a/data/data-00015-of-00114.arrow b/data/data-00015-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..c1fd42c63cc41215dfa03905e953c3ed839e5c0a
--- /dev/null
+++ b/data/data-00015-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ca0c053245bc9fa55901de7e45f12bd885fd7f921caa1f98667e00a4ee75228c
+size 489784024
diff --git a/data/data-00016-of-00114.arrow b/data/data-00016-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..1d8a5435c3a4b09ce57da6de08171916400e78ef
--- /dev/null
+++ b/data/data-00016-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dc4ef0446a104a9cc48f7ca693a82c0c4dbf0978b10ca8cb3ff5994739381c59
+size 448053784
diff --git a/data/data-00017-of-00114.arrow b/data/data-00017-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..ad2f90c156d0be7d4d07eaa2fc5f620a551a1531
--- /dev/null
+++ b/data/data-00017-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:50112cfb59d25e5be3d72d9574af330efc1d542bc18e72c70a07004026aacb98
+size 505285864
diff --git a/data/data-00018-of-00114.arrow b/data/data-00018-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..321ef105d61178cf39b932b25843a50cc5fae431
--- /dev/null
+++ b/data/data-00018-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:db2cf60c62635bf4bba7f165229529faa646f2a3c95fa4ab4ef28b3e1358d65f
+size 496326024
diff --git a/data/data-00019-of-00114.arrow b/data/data-00019-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..672e8e223296f5af2586a8d56db2f2a204abf5ad
--- /dev/null
+++ b/data/data-00019-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2cec42ec8b1fbbb316830769913d399fd5c713387dda20b0183ef691ccb34c6e
+size 511383568
diff --git a/data/data-00020-of-00114.arrow b/data/data-00020-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..ecb23b439d6cd12c5e0a0b1fc92e76468303cdf8
--- /dev/null
+++ b/data/data-00020-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c5ebe354b6ff6ca6f592ab186ce1c9abf336b31b2c16293ef5b5bce4e09ff0ae
+size 530941392
diff --git a/data/data-00021-of-00114.arrow b/data/data-00021-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..3bff7c77a55f00b2fbaaf222d4fba06a105ce62d
--- /dev/null
+++ b/data/data-00021-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cfcf1ca689c4facc9c7e4c0cb1bde4fe7d3e4b8aac9a23fcb4559c8302c43bed
+size 496689616
diff --git a/data/data-00022-of-00114.arrow b/data/data-00022-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..bccda263c24df0799cc5798bf5da90e9e824e86b
--- /dev/null
+++ b/data/data-00022-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cc489b4172e114fbb687c768bba307f761f2d7de6ba4024a204a090ef23f3d7e
+size 502617072
diff --git a/data/data-00023-of-00114.arrow b/data/data-00023-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..e9ac1bbe990555e7dce2a0068210406e97c7a07f
--- /dev/null
+++ b/data/data-00023-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a49c73a6274d3871d49afdd80c649fe5bec5f63914c20e7037ab3dc7eac6ff75
+size 471003128
diff --git a/data/data-00024-of-00114.arrow b/data/data-00024-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..c27c7564ae35be237c2069cc4526249268ea7fdf
--- /dev/null
+++ b/data/data-00024-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1eafdab91101ba633808b882ca18e986df4b0ede870ad8b95da2c9f7dd296fee
+size 531301184
diff --git a/data/data-00025-of-00114.arrow b/data/data-00025-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..699ca6bb9fb6776bbf06466e40dea44c4ad0bb4e
--- /dev/null
+++ b/data/data-00025-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2a247a651f32d3462cb35c3baa47cb2b00f59dfa5ce66d1a0931fc0259d55e4d
+size 496839184
diff --git a/data/data-00026-of-00114.arrow b/data/data-00026-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..792526c01a5d25c106c7acde5b0e99b24f49c6ee
--- /dev/null
+++ b/data/data-00026-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:947c1026737cc0b1150b96b3a97c294a3df53f2dddbb983faf711115d334e7b8
+size 518928624
diff --git a/data/data-00027-of-00114.arrow b/data/data-00027-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..f585a9823cdd450d5406d788b0b6a92ec292e1f3
--- /dev/null
+++ b/data/data-00027-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4b04e18835280e4ea8d7e3330c601e07982b343c0596626aba82fd466dd146f2
+size 559354696
diff --git a/data/data-00028-of-00114.arrow b/data/data-00028-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..8e5547bdbd970f0475d2c79301cde3f6678d2317
--- /dev/null
+++ b/data/data-00028-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:900bccd8122f1630738169f07f69df9d9c5eb0303ecb80a842ce9f721ebd5b9d
+size 570597816
diff --git a/data/data-00029-of-00114.arrow b/data/data-00029-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..9b2ed5e3a5f5c9bd6cd42ea07247b4be5f276f2c
--- /dev/null
+++ b/data/data-00029-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9e48fed7e488255d5b5850564a09f23c3ab0626e56c36f92c54d26559df68358
+size 531577760
diff --git a/data/data-00030-of-00114.arrow b/data/data-00030-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..f6aebe6c6ebcb9698a13bfb0ab4ad6c33ca22337
--- /dev/null
+++ b/data/data-00030-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:87cf462fd48140acf2da1b790480682c6d33197f0604e9d3da37b659dc6faf26
+size 532478152
diff --git a/data/data-00031-of-00114.arrow b/data/data-00031-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..c0cc8aa78c6bf79d3e6095f57869d2aa832018b6
--- /dev/null
+++ b/data/data-00031-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d246f4d50ef901fb4a7aa30dbda9a2c8ec823c49a3fae3da2e01d98c7f48cbd9
+size 483345136
diff --git a/data/data-00032-of-00114.arrow b/data/data-00032-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..19b2547a9b8233439d965a056ede90dad7ba6fbd
--- /dev/null
+++ b/data/data-00032-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ac857ae1eddc4c3ae546f7881b9bc337ee8e21952ba3201b926af3916cf47f19
+size 493566832
diff --git a/data/data-00033-of-00114.arrow b/data/data-00033-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..90c1602f6224d4202c48b4c3e4cb9090eaa8b373
--- /dev/null
+++ b/data/data-00033-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3e2d6f15b41a5bf8e371acddc1363bc6be92c386621c9b49e736429caa83638a
+size 493810640
diff --git a/data/data-00034-of-00114.arrow b/data/data-00034-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..9d42ca186cdaddb341abf353f751a5f1c09d4edc
--- /dev/null
+++ b/data/data-00034-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1c1bbd5fa39b26733495d58f234accddfca596f17641840003dfb4696cfc7e04
+size 491795560
diff --git a/data/data-00035-of-00114.arrow b/data/data-00035-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..49df117214d546b8d0454637e7588a1b828a91c2
--- /dev/null
+++ b/data/data-00035-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f6a34010f9fbcb4b3a52a4ab7fa7d0998967db1e7c6103537ac53cd85bc8b092
+size 505171288
diff --git a/data/data-00036-of-00114.arrow b/data/data-00036-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..e4eb76b14e1b53fe4c2b86495b13ce664bdca182
--- /dev/null
+++ b/data/data-00036-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b6052ee91f8664b190a3aea1656c2d4dd02b567bc048ae8d63f760cf5c584e72
+size 521061640
diff --git a/data/data-00037-of-00114.arrow b/data/data-00037-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..c4fe5529946240d0a60b2deb06c67e05843c330e
--- /dev/null
+++ b/data/data-00037-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5c025237e5998f2883c598c7150560d6317fa1384688d572ff84b82effe0d10f
+size 512820304
diff --git a/data/data-00038-of-00114.arrow b/data/data-00038-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..271de2a710c7d30f53780ff9a4adb34b1f13c3c3
--- /dev/null
+++ b/data/data-00038-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ad4e87e08afd044b34fa0cb76685fa535895c550e0ea38f41072cb945452bfaf
+size 543024936
diff --git a/data/data-00039-of-00114.arrow b/data/data-00039-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..902c49223c91876fba24d74991037de51cb7c7e0
--- /dev/null
+++ b/data/data-00039-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4de195d92e7994908cad34954f41a481f913687c11457bf2875905efbe4bdd3d
+size 560109936
diff --git a/data/data-00040-of-00114.arrow b/data/data-00040-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..496519769f92dcbf2de7f237df38c2e551b2c86a
--- /dev/null
+++ b/data/data-00040-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c086f8823cb87051fbd93cf6614acdef02021cff6f13890fa9474e8031dd9375
+size 505348200
diff --git a/data/data-00041-of-00114.arrow b/data/data-00041-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..8f6d5c354d7219ece60537601177945ed9e16ec3
--- /dev/null
+++ b/data/data-00041-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b4c29513b9941cf622e2827baa5858870f51dac8dd2a03df2e9d9cc390adac99
+size 560055928
diff --git a/data/data-00042-of-00114.arrow b/data/data-00042-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..b8cac99a2e1e11e474eb27b7bf0ebf4eb982124a
--- /dev/null
+++ b/data/data-00042-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:222fbd2adf9537660809bceb35eb5c2b846a0bce938adf52ccbcc660bd7d98cc
+size 502179312
diff --git a/data/data-00043-of-00114.arrow b/data/data-00043-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..2699292be40486e2cbe452905f06f624ed77f7d6
--- /dev/null
+++ b/data/data-00043-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0f66ad63fe3afb9c65d7c3e85e6bc26076156f5a8a46f820900b80784280d738
+size 525341656
diff --git a/data/data-00044-of-00114.arrow b/data/data-00044-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..0a5e1ccc471d8c6b40a2060b7fd3d07066bc9230
--- /dev/null
+++ b/data/data-00044-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:df3b479a893f5eafd27e9d9c5cc79f8d4bd08914a716e977b372769579849eed
+size 499594128
diff --git a/data/data-00045-of-00114.arrow b/data/data-00045-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..ab1bc2a27274692713f72fb207542c7fef7abc85
--- /dev/null
+++ b/data/data-00045-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:95348c4d56e63a5cbcd88df81754da7b0fb3908ae5f1d2447a7baff244179d84
+size 505039296
diff --git a/data/data-00046-of-00114.arrow b/data/data-00046-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..f3f5f245d7b9c0a3a18efbafaebc3f894f90ec96
--- /dev/null
+++ b/data/data-00046-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f203a18cdcdbed2caed4e340b9c0b71246f45a44a52b88c4f76d452fd529f545
+size 443965448
diff --git a/data/data-00047-of-00114.arrow b/data/data-00047-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..f49b60278466d7720d388e977f97588332ffe30c
--- /dev/null
+++ b/data/data-00047-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3492ecb126c35a51d47c6db5f1aa02bae2b5d0033774a4e52dba5a14bf995774
+size 512559944
diff --git a/data/data-00048-of-00114.arrow b/data/data-00048-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..30f379a4983c5d53c33f76f99614499eecf73d5b
--- /dev/null
+++ b/data/data-00048-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:671e113fa7c9177ae8a25584d94ae290ebd930ca344002650fc4ed1b896b760e
+size 555810024
diff --git a/data/data-00049-of-00114.arrow b/data/data-00049-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..779c3bee81355588978131718b65fe889674ff1b
--- /dev/null
+++ b/data/data-00049-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8ef4ed93c3788174b07aba6af007f0694fe5b9e4941a0665e87f24875c5c4102
+size 535211640
diff --git a/data/data-00050-of-00114.arrow b/data/data-00050-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..929f432866cac854c1f70b3d97c4c4f3ecbc2a7a
--- /dev/null
+++ b/data/data-00050-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2536c8f9a6553dc1b46c908374edfa7f7a699b71439e5fbb31aa18dcd914bb22
+size 497693936
diff --git a/data/data-00051-of-00114.arrow b/data/data-00051-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..85989b69d92bdf04cb4d02fc1f499bb6b65e8ef0
--- /dev/null
+++ b/data/data-00051-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1a8e8f0dc2a14b7a6eddef4ef3c072fd83bb30bbf0b765697189d511e96aaea3
+size 502123272
diff --git a/data/data-00052-of-00114.arrow b/data/data-00052-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..de759e3de4bdb2f727546dd4c26577586da79929
--- /dev/null
+++ b/data/data-00052-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d7abbe2865c294e47ae7205211e6759e880df2ea369e5ee54baafab1c9b14cc7
+size 515166976
diff --git a/data/data-00053-of-00114.arrow b/data/data-00053-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..09f5f1e87ceba47cee7c0a5b413546ea80840804
--- /dev/null
+++ b/data/data-00053-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5dab63ac1555be78302de0dce59a4c824fce21d1e66ff27836366682401695cf
+size 523899776
diff --git a/data/data-00054-of-00114.arrow b/data/data-00054-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..322d5a0e0be07ba189c5ca4cef9121c348dc8857
--- /dev/null
+++ b/data/data-00054-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2884ad36e0e15fd87f0390b119b8f81eaeaeb5c879bc0ff500e5787f45ab58fd
+size 500365024
diff --git a/data/data-00055-of-00114.arrow b/data/data-00055-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..0610674dbb5fd2d1641e1f353af83fd722d12520
--- /dev/null
+++ b/data/data-00055-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ccf1f37700ebf59802091e0c258b60d881b5665146a33e196f69a130507090f0
+size 521863200
diff --git a/data/data-00056-of-00114.arrow b/data/data-00056-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..9c54963436ba4e902481ec34e23b3086ddf55cdb
--- /dev/null
+++ b/data/data-00056-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d3d1893fd1a3a374f2172e696dcf71639c20db96d1fb4c714f9896a00f28d4ff
+size 487536904
diff --git a/data/data-00057-of-00114.arrow b/data/data-00057-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..c1f95806a4bb46073064f500414e1e67981628e9
--- /dev/null
+++ b/data/data-00057-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f39240dc77b490b84bcdd97ae18b62cb4379c25d754fe3921be771b5d77b6d39
+size 533878856
diff --git a/data/data-00058-of-00114.arrow b/data/data-00058-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..89686222e75354a9e1cf551bb1ebe651f5976eae
--- /dev/null
+++ b/data/data-00058-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:17a82db3904f0d2c9614162f7a28f13955b699a3aec01b0710f3e95af325617c
+size 498949744
diff --git a/data/data-00059-of-00114.arrow b/data/data-00059-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..6191aeccb3b4a1087b827ac1cb1cfb7f7af59743
--- /dev/null
+++ b/data/data-00059-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:eca4fb2e6dcc8de9a4bba0fca99b69c911a568506bdda8827750ea69ed21b9f0
+size 502186728
diff --git a/data/data-00060-of-00114.arrow b/data/data-00060-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..79561f2713197099a06d8a4f8e913f5058210711
--- /dev/null
+++ b/data/data-00060-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b1f96e60c264c4ee93aa9026667f2adedfb33e764640f377054b860e257905a0
+size 483663592
diff --git a/data/data-00061-of-00114.arrow b/data/data-00061-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..d225d3c79b2e9bc7301e10b4282a263d2a94c69d
--- /dev/null
+++ b/data/data-00061-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5b0bbfaa0f0c13b18af9087d56e8e265a3fad508bedd6e3298cea4372f87de00
+size 529191568
diff --git a/data/data-00062-of-00114.arrow b/data/data-00062-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..d84d3c550f6505834e7df176e57c8fcac1bcfc68
--- /dev/null
+++ b/data/data-00062-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9aaedbdfb2dd162d1dac3798599681dbebf31a1294966f50e7de9e87470c1bd6
+size 515469096
diff --git a/data/data-00063-of-00114.arrow b/data/data-00063-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..025cc66498868f3171e142835991905639526c1b
--- /dev/null
+++ b/data/data-00063-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:39ea95d8b5062da2dd744df5ce55ccc1b3bc59ea7f9d45abc8ec191db54469db
+size 526855656
diff --git a/data/data-00064-of-00114.arrow b/data/data-00064-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..c69c2b0707287c0a7688e58521841b24a8e3ec56
--- /dev/null
+++ b/data/data-00064-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:79b9b809dd8f0dda61c5583e0c5b7214c7453b3d638ac0ad275c41c2fcff94d3
+size 534357800
diff --git a/data/data-00065-of-00114.arrow b/data/data-00065-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..d87ff7cadd1fe83d16d07fdfe5633c8c7058335b
--- /dev/null
+++ b/data/data-00065-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8bbe9c915038a462d2414ebd4fd5d933297f0e020a311b365eb08cb616bb176c
+size 522029048
diff --git a/data/data-00066-of-00114.arrow b/data/data-00066-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..aa4aa028967fc4061fdc24c9bf224913ca3e63ac
--- /dev/null
+++ b/data/data-00066-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a951e701bcc4acf2c899001c5ded563e2d015551865aaa6c3c4eee3f6f3bde20
+size 540295336
diff --git a/data/data-00067-of-00114.arrow b/data/data-00067-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..895b7a8afed97c1a040210168e3139520190b6cd
--- /dev/null
+++ b/data/data-00067-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f50464d44ac65ea924bc0c984f8bd2353f4f2674d307e74b1c732a6615870029
+size 467098472
diff --git a/data/data-00068-of-00114.arrow b/data/data-00068-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..7fcb75274dccda9e4dc95a91727d84f8289daf3c
--- /dev/null
+++ b/data/data-00068-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b38e0652c7ba8a754e0507779c15554d88daca5672399dbff15ade504b6e7e7f
+size 473541640
diff --git a/data/data-00069-of-00114.arrow b/data/data-00069-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..e53467b4557917fbe9ce0e7eba77ec4fcfc19314
--- /dev/null
+++ b/data/data-00069-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:febdc7448bd032c688f0a0d5fe0a0e6f1704d2832d7f5c53dac921eef7807198
+size 539761624
diff --git a/data/data-00070-of-00114.arrow b/data/data-00070-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..291b318a5236a15836ffe4479055d1fe1d79f149
--- /dev/null
+++ b/data/data-00070-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3f19ade6e1709dcdbc74eb3c6f5349d03509494246c3947e9bef9f5b55a6564f
+size 513692280
diff --git a/data/data-00071-of-00114.arrow b/data/data-00071-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..d695045ae4eb2418a782e88239bc67ff0cc563df
--- /dev/null
+++ b/data/data-00071-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5b8413701941395857e4d496337da7f0add0510dda1bd91108e96f9a567fe2d1
+size 497805368
diff --git a/data/data-00072-of-00114.arrow b/data/data-00072-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..bc98c637a0901f5204a48ea2e383b596daa2213e
--- /dev/null
+++ b/data/data-00072-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5c0aa9f6113f04ceb91d1a8ce5a28e60d48eb8da78476532627fdf46c8eaca07
+size 472643896
diff --git a/data/data-00073-of-00114.arrow b/data/data-00073-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..329b15bb77c087340671a10cd2702e64a6078b81
--- /dev/null
+++ b/data/data-00073-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:93978241c9676d5801eff33ea5325eabfece56e303f97cfcbfdbc4cc43f1c0e4
+size 474788560
diff --git a/data/data-00074-of-00114.arrow b/data/data-00074-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..b73e1263a50cef9a00023b8ff091a9a27acf1d43
--- /dev/null
+++ b/data/data-00074-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:32d30e22351914d16ed55c6673a7efb0f566a98af9b7de901f04d33a58847253
+size 462872688
diff --git a/data/data-00075-of-00114.arrow b/data/data-00075-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..82e19e5e9b84afe524e6a21efade712a43103240
--- /dev/null
+++ b/data/data-00075-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9ff2e031e328b96901e911dcdf1ff101570e4c2f4bec3197ae4bedba798421fb
+size 552368960
diff --git a/data/data-00076-of-00114.arrow b/data/data-00076-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..50f26adfe2d87ac0242b476f5891461f893f6eab
--- /dev/null
+++ b/data/data-00076-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1db3032abeeefda63ebdb78cb43c1300ad8ed30edcde995884fb3719b989f5fc
+size 493048648
diff --git a/data/data-00077-of-00114.arrow b/data/data-00077-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..cfa1553ad95fee4c7da1e7c1ea34dc5e82293972
--- /dev/null
+++ b/data/data-00077-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fee57044a9d744f2127e917b3f3a25f5873c814ba20acebc319dc951a83d47fa
+size 497850136
diff --git a/data/data-00078-of-00114.arrow b/data/data-00078-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..e4cd3518ecec3efda5bd21eabd8b08a61727fd7f
--- /dev/null
+++ b/data/data-00078-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6a147a65680daf1f81f092a7474bec18677d6e78221b1b4a7c14e76c2475a078
+size 507205776
diff --git a/data/data-00079-of-00114.arrow b/data/data-00079-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..559679987b96739be302fc49fe2c4f7ec94cb428
--- /dev/null
+++ b/data/data-00079-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1c371bf3257067b56c10a72a0a589282bbd0f376866d8b571f77c2a862015220
+size 504791920
diff --git a/data/data-00080-of-00114.arrow b/data/data-00080-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..84f88e4c1827f49f9635d68ca03674db12cb41c7
--- /dev/null
+++ b/data/data-00080-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:39f25abee71710c369359d660b9d68c260d426a80674d1d533294eb8f3534e5f
+size 495484760
diff --git a/data/data-00081-of-00114.arrow b/data/data-00081-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..8e7f31078e649dbfcf8190d2c7dba111008ac45c
--- /dev/null
+++ b/data/data-00081-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d67825ea3150f8c6b3dc5a8add8b66c657771319b1339a6431b9ec6dccc346b3
+size 548401056
diff --git a/data/data-00082-of-00114.arrow b/data/data-00082-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..5b5165cf02f68209336b312d5d771a32e196abc0
--- /dev/null
+++ b/data/data-00082-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ac50fee1f4f23b505f2964e2708b63187bf0e0094cceb5d460fb46e6c2e80a99
+size 517584568
diff --git a/data/data-00083-of-00114.arrow b/data/data-00083-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..e987e2b5ce2b21a3dc574669d00c678aaab4023a
--- /dev/null
+++ b/data/data-00083-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8de3de0c66f798c4cb8767fcc9185e4518165bea6c2ab9bc6ad794ee076099b5
+size 495684840
diff --git a/data/data-00084-of-00114.arrow b/data/data-00084-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..7140b91ec8f1f7eaae57419afc13fb928b1edc6b
--- /dev/null
+++ b/data/data-00084-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0857072e912be34b878af1151413f4ebfc63a60978ad3fc4aa65557f6ef62330
+size 543360352
diff --git a/data/data-00085-of-00114.arrow b/data/data-00085-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..754fca99d9eefa48b4a08ebe8050f81e73e6797a
--- /dev/null
+++ b/data/data-00085-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:77bbc2ba6b53a4acd751496a42e43df4f36c59906251a1c6f92fee0514658586
+size 485942816
diff --git a/data/data-00086-of-00114.arrow b/data/data-00086-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..ef87f8d1636bf37747c963c88847c106a9aa090d
--- /dev/null
+++ b/data/data-00086-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9b29f4946bc3f569c7e68d4917971f87e07f30d43f6aeb34932731007d1fb42a
+size 474148480
diff --git a/data/data-00087-of-00114.arrow b/data/data-00087-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..0843054726ca9997902cb31861ca2f6bcd36be9b
--- /dev/null
+++ b/data/data-00087-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9f0f3e71d12638a117db6dbbbdf8e745cf23e872104ea3e72bf9d4637db50a6b
+size 487264416
diff --git a/data/data-00088-of-00114.arrow b/data/data-00088-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..f6eff24ac52d9729e327334ccf279159b48bd9d5
--- /dev/null
+++ b/data/data-00088-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c48307102bd840228f8f1e6af96deb1a98a9bd2847a058032656e7b783a03a7a
+size 501621848
diff --git a/data/data-00089-of-00114.arrow b/data/data-00089-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..3d58db3d7498156666939d6d2503fb751b14d933
--- /dev/null
+++ b/data/data-00089-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0f9a21bfb5443414bd17bd7a7db43fe349e16af5e7be6614fc218a0cc59350cd
+size 513375896
diff --git a/data/data-00090-of-00114.arrow b/data/data-00090-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..4f27a352eaec3ad26d2f876d9ccf2f996246b014
--- /dev/null
+++ b/data/data-00090-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:db132860ff73c13760efcbe6f9dc4730d05d3a2b93c2ab45ccda552705ee1c1d
+size 482737936
diff --git a/data/data-00091-of-00114.arrow b/data/data-00091-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..11e9423db9a85754776bc0b922ef49f6f67bf219
--- /dev/null
+++ b/data/data-00091-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59dd6f707fddba5a9e3add5ef9921820c3bd15d301269be3e9e458c823a4e907
+size 518054448
diff --git a/data/data-00092-of-00114.arrow b/data/data-00092-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..2c4421031ce0f5e6f4d15ef1022fdc8ffb6707f7
--- /dev/null
+++ b/data/data-00092-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:40c6b6b77daddd14ddf77742ceb3bd20da3babf1ecdaa7b49b97e60b7b3a60a5
+size 517062200
diff --git a/data/data-00093-of-00114.arrow b/data/data-00093-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..61c6b01f453f7f584ed7c4c40f260dd2e110eee2
--- /dev/null
+++ b/data/data-00093-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:60b6f14cc3f13ad2d9e1f74067b40329bb9951dbd22ff2197af99855e588f277
+size 523853456
diff --git a/data/data-00094-of-00114.arrow b/data/data-00094-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..3fc97ff37e3df827bf712a631d8724551de6c199
--- /dev/null
+++ b/data/data-00094-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:835345e6cf94bbb691e49f92e00be6ea3d6d868c02d7dfd90e4b9ed8525e0e0c
+size 509090536
diff --git a/data/data-00095-of-00114.arrow b/data/data-00095-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..68da5c23759175980dd91700e54cd9e1a9d6dde8
--- /dev/null
+++ b/data/data-00095-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:17a65daad835261987a4c23460cd28a00d6cde2267302ee83fb006af1387db6c
+size 556510080
diff --git a/data/data-00096-of-00114.arrow b/data/data-00096-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..451e406b501ef711d605f8ad5158d13940d33aef
--- /dev/null
+++ b/data/data-00096-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e186992fc69c8ee8c85bbd39de8c25939e803bf27286257ce9847a28611d6b99
+size 488103936
diff --git a/data/data-00097-of-00114.arrow b/data/data-00097-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..ceffb7cfb6fdcb87cd7c5d21415fbd79d694d69d
--- /dev/null
+++ b/data/data-00097-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6ce6249da7b94f5d6918e4a94ecc73e6dd4cf43b1dce2f320edfc8566936df7a
+size 532039792
diff --git a/data/data-00098-of-00114.arrow b/data/data-00098-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..5f728dd1b97060bdc993cf8671e5813f02ee0a5f
--- /dev/null
+++ b/data/data-00098-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dec01ad346237a26afa1d9da92d79f7de8daaa0a4576ca61821b56e20928942d
+size 517458648
diff --git a/data/data-00099-of-00114.arrow b/data/data-00099-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..08f6fa51b541df86dd121e6828ce5d0eff278df5
--- /dev/null
+++ b/data/data-00099-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:482e5d13dc9c69c9669bb6349592c8c859279a86a3b06700c183a1d582728ba3
+size 490842096
diff --git a/data/data-00100-of-00114.arrow b/data/data-00100-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..a2116826e6b0589856d96db22cbba4b47d99c837
--- /dev/null
+++ b/data/data-00100-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3a251965d3d8a0ddfbde93baf8235681715daea32f39aa77baa03c60c92096fb
+size 482544416
diff --git a/data/data-00101-of-00114.arrow b/data/data-00101-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..2984c062f52224419ee8523ec2ac7029f3521d6e
--- /dev/null
+++ b/data/data-00101-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:158433a68c1b8bfdee73a23ed0dca2bf96f19e195bdd37a1d2747b28a7046fd0
+size 519984544
diff --git a/data/data-00102-of-00114.arrow b/data/data-00102-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..c974fd14530715881c7a4a5f46b32ab3be803ae2
--- /dev/null
+++ b/data/data-00102-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4aec40025f3ebf62ccc20e19fb741005a417d850526756a4d746a6f9e5835f34
+size 546036784
diff --git a/data/data-00103-of-00114.arrow b/data/data-00103-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..1833ea67fa3d0e96980139da6f11dd2f4b875001
--- /dev/null
+++ b/data/data-00103-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae4cdd127465683ea2509164a969fc9abd4bfaffc01f00183c91c82cea9bd2e2
+size 488920480
diff --git a/data/data-00104-of-00114.arrow b/data/data-00104-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..9de7a0256972822016e860f12f2a4d12d7c38833
--- /dev/null
+++ b/data/data-00104-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a405eca710dcb83b4b0956aea5e2e684478aa54d0b4e1fcb69d702d010aebeef
+size 535770032
diff --git a/data/data-00105-of-00114.arrow b/data/data-00105-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..958686162a682b926e49b553d7db201c74953e31
--- /dev/null
+++ b/data/data-00105-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:62c006d3d7b57bf5a57ccd07bf8bcb417c9c593f7baa6e75f09bfbdf31e1d754
+size 471737704
diff --git a/data/data-00106-of-00114.arrow b/data/data-00106-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..50f3d8da97fa1086c7249f9303849fa38cafca9a
--- /dev/null
+++ b/data/data-00106-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7e854f513199bfa89e35f86aebfe1ef616316bc6127ff7e6cbcc7cc24a3c9d67
+size 508664272
diff --git a/data/data-00107-of-00114.arrow b/data/data-00107-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..2aa3786a2740a2ef76ea23d32874fa305ea3289a
--- /dev/null
+++ b/data/data-00107-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b8b0eda5d81dad2827fe71cba25c88e3513de2bc8c0bd4045e0bdb2c7b226076
+size 572525832
diff --git a/data/data-00108-of-00114.arrow b/data/data-00108-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..f35c048b8d5e91ab9e6794d4d985cdcd85754bdb
--- /dev/null
+++ b/data/data-00108-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7e9f45447d0aae58bf21b56a2ffea671ecfd0308a747eb3d8cdb709be8622ab6
+size 517725640
diff --git a/data/data-00109-of-00114.arrow b/data/data-00109-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..405390828264d3481ff91c0abddfde223c621815
--- /dev/null
+++ b/data/data-00109-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:66aa4178913982367fb818db46f2576e1cdfc42f0717610dd75e3c29b88585a3
+size 492917224
diff --git a/data/data-00110-of-00114.arrow b/data/data-00110-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..100832e2893833b32bdcc4947a8bf51e7a93f9d5
--- /dev/null
+++ b/data/data-00110-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:511d21895503f4755cf09e974ca24cc5bddcdf1ef26a23f65779071e7a5bfff5
+size 490079104
diff --git a/data/data-00111-of-00114.arrow b/data/data-00111-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..9574d5d635740f34d510b8833754e30e6b465ce6
--- /dev/null
+++ b/data/data-00111-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:df8b5ef615caad3267a19037ba19fabe4e3f1751346cc7e78258221003f4ddc3
+size 517748152
diff --git a/data/data-00112-of-00114.arrow b/data/data-00112-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..d2cfbbaf1cb6638efc2c039729dc407f34b36a78
--- /dev/null
+++ b/data/data-00112-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ac199e4f2b1ddb0cd9a207aeccb2e21ccb1e184e836789849e71e606443b4c41
+size 500292232
diff --git a/data/data-00113-of-00114.arrow b/data/data-00113-of-00114.arrow
new file mode 100644
index 0000000000000000000000000000000000000000..64fbd519d4f227d4d0120c52e44733aa95523f14
--- /dev/null
+++ b/data/data-00113-of-00114.arrow
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c9251f38d99d191f846d303901290953b5b9f50128c0f26a670f6ee17711133e
+size 536113384
diff --git a/dataset_info.json b/dataset_info.json
new file mode 100644
index 0000000000000000000000000000000000000000..f824864ebe47d6768f0b2dfc6bc3559691d78656
--- /dev/null
+++ b/dataset_info.json
@@ -0,0 +1,57 @@
+{
+ "builder_name": "generator",
+ "citation": "",
+ "config_name": "default",
+ "dataset_name": "generator",
+ "dataset_size": 23054655,
+ "description": "",
+ "download_checksums": {},
+ "download_size": 0,
+ "features": {
+ "id": {
+ "dtype": "string",
+ "_type": "Value"
+ },
+ "split": {
+ "dtype": "string",
+ "_type": "Value"
+ },
+ "category": {
+ "dtype": "string",
+ "_type": "Value"
+ },
+ "main_label": {
+ "dtype": "string",
+ "_type": "Value"
+ },
+ "ref_image": {
+ "_type": "Image"
+ },
+ "ref_mask": {
+ "_type": "Image"
+ },
+ "tar_image": {
+ "_type": "Image"
+ },
+ "tar_mask": {
+ "_type": "Image"
+ }
+ },
+ "homepage": "",
+ "license": "",
+ "size_in_bytes": 23054655,
+ "splits": {
+ "train": {
+ "name": "train",
+ "num_bytes": 23054655,
+ "num_examples": 58318,
+ "dataset_name": "generator"
+ }
+ },
+ "version": {
+ "version_str": "0.0.0",
+ "major": 0,
+ "minor": 0,
+ "patch": 0
+ }
+}
\ No newline at end of file
diff --git a/examples/ref_image.png b/examples/ref_image.png
new file mode 100644
index 0000000000000000000000000000000000000000..590d56c8e32152faae91d28687375ef045067b80
--- /dev/null
+++ b/examples/ref_image.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:74aee15a8263559e395684ced64b44c6609af8d2570e786941d78220637b5992
+size 275863
diff --git a/examples/ref_mask.png b/examples/ref_mask.png
new file mode 100644
index 0000000000000000000000000000000000000000..b59a7fc24d265377352efb0a8ee9cb49a043919b
--- /dev/null
+++ b/examples/ref_mask.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fc5ab7617365167edc4871c0f015666d6afcd3882ce83e4985c01201efc2f92a
+size 16495
diff --git a/examples/tar_image.png b/examples/tar_image.png
new file mode 100644
index 0000000000000000000000000000000000000000..ddf18b08c9a1be91182ab9975a67c378e8fbc1a1
--- /dev/null
+++ b/examples/tar_image.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6f815ac28d55ac8f973351055e01c1039eb6162b7e6262daf3796b8170e586b0
+size 377306
diff --git a/examples/tar_mask.png b/examples/tar_mask.png
new file mode 100644
index 0000000000000000000000000000000000000000..a35f86a666a9a0df4d5d95aee8fe7437574784b2
--- /dev/null
+++ b/examples/tar_mask.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:77ea794e95e53387eaf5682e07c05b665339dfbd363347bb957f8e69d8b0e61d
+size 16966
diff --git a/state.json b/state.json
new file mode 100644
index 0000000000000000000000000000000000000000..0dd833b19b026df9d9c4d31c4267448f1e0882a8
--- /dev/null
+++ b/state.json
@@ -0,0 +1,352 @@
+{
+ "_data_files": [
+ {
+ "filename": "data-00000-of-00114.arrow"
+ },
+ {
+ "filename": "data-00001-of-00114.arrow"
+ },
+ {
+ "filename": "data-00002-of-00114.arrow"
+ },
+ {
+ "filename": "data-00003-of-00114.arrow"
+ },
+ {
+ "filename": "data-00004-of-00114.arrow"
+ },
+ {
+ "filename": "data-00005-of-00114.arrow"
+ },
+ {
+ "filename": "data-00006-of-00114.arrow"
+ },
+ {
+ "filename": "data-00007-of-00114.arrow"
+ },
+ {
+ "filename": "data-00008-of-00114.arrow"
+ },
+ {
+ "filename": "data-00009-of-00114.arrow"
+ },
+ {
+ "filename": "data-00010-of-00114.arrow"
+ },
+ {
+ "filename": "data-00011-of-00114.arrow"
+ },
+ {
+ "filename": "data-00012-of-00114.arrow"
+ },
+ {
+ "filename": "data-00013-of-00114.arrow"
+ },
+ {
+ "filename": "data-00014-of-00114.arrow"
+ },
+ {
+ "filename": "data-00015-of-00114.arrow"
+ },
+ {
+ "filename": "data-00016-of-00114.arrow"
+ },
+ {
+ "filename": "data-00017-of-00114.arrow"
+ },
+ {
+ "filename": "data-00018-of-00114.arrow"
+ },
+ {
+ "filename": "data-00019-of-00114.arrow"
+ },
+ {
+ "filename": "data-00020-of-00114.arrow"
+ },
+ {
+ "filename": "data-00021-of-00114.arrow"
+ },
+ {
+ "filename": "data-00022-of-00114.arrow"
+ },
+ {
+ "filename": "data-00023-of-00114.arrow"
+ },
+ {
+ "filename": "data-00024-of-00114.arrow"
+ },
+ {
+ "filename": "data-00025-of-00114.arrow"
+ },
+ {
+ "filename": "data-00026-of-00114.arrow"
+ },
+ {
+ "filename": "data-00027-of-00114.arrow"
+ },
+ {
+ "filename": "data-00028-of-00114.arrow"
+ },
+ {
+ "filename": "data-00029-of-00114.arrow"
+ },
+ {
+ "filename": "data-00030-of-00114.arrow"
+ },
+ {
+ "filename": "data-00031-of-00114.arrow"
+ },
+ {
+ "filename": "data-00032-of-00114.arrow"
+ },
+ {
+ "filename": "data-00033-of-00114.arrow"
+ },
+ {
+ "filename": "data-00034-of-00114.arrow"
+ },
+ {
+ "filename": "data-00035-of-00114.arrow"
+ },
+ {
+ "filename": "data-00036-of-00114.arrow"
+ },
+ {
+ "filename": "data-00037-of-00114.arrow"
+ },
+ {
+ "filename": "data-00038-of-00114.arrow"
+ },
+ {
+ "filename": "data-00039-of-00114.arrow"
+ },
+ {
+ "filename": "data-00040-of-00114.arrow"
+ },
+ {
+ "filename": "data-00041-of-00114.arrow"
+ },
+ {
+ "filename": "data-00042-of-00114.arrow"
+ },
+ {
+ "filename": "data-00043-of-00114.arrow"
+ },
+ {
+ "filename": "data-00044-of-00114.arrow"
+ },
+ {
+ "filename": "data-00045-of-00114.arrow"
+ },
+ {
+ "filename": "data-00046-of-00114.arrow"
+ },
+ {
+ "filename": "data-00047-of-00114.arrow"
+ },
+ {
+ "filename": "data-00048-of-00114.arrow"
+ },
+ {
+ "filename": "data-00049-of-00114.arrow"
+ },
+ {
+ "filename": "data-00050-of-00114.arrow"
+ },
+ {
+ "filename": "data-00051-of-00114.arrow"
+ },
+ {
+ "filename": "data-00052-of-00114.arrow"
+ },
+ {
+ "filename": "data-00053-of-00114.arrow"
+ },
+ {
+ "filename": "data-00054-of-00114.arrow"
+ },
+ {
+ "filename": "data-00055-of-00114.arrow"
+ },
+ {
+ "filename": "data-00056-of-00114.arrow"
+ },
+ {
+ "filename": "data-00057-of-00114.arrow"
+ },
+ {
+ "filename": "data-00058-of-00114.arrow"
+ },
+ {
+ "filename": "data-00059-of-00114.arrow"
+ },
+ {
+ "filename": "data-00060-of-00114.arrow"
+ },
+ {
+ "filename": "data-00061-of-00114.arrow"
+ },
+ {
+ "filename": "data-00062-of-00114.arrow"
+ },
+ {
+ "filename": "data-00063-of-00114.arrow"
+ },
+ {
+ "filename": "data-00064-of-00114.arrow"
+ },
+ {
+ "filename": "data-00065-of-00114.arrow"
+ },
+ {
+ "filename": "data-00066-of-00114.arrow"
+ },
+ {
+ "filename": "data-00067-of-00114.arrow"
+ },
+ {
+ "filename": "data-00068-of-00114.arrow"
+ },
+ {
+ "filename": "data-00069-of-00114.arrow"
+ },
+ {
+ "filename": "data-00070-of-00114.arrow"
+ },
+ {
+ "filename": "data-00071-of-00114.arrow"
+ },
+ {
+ "filename": "data-00072-of-00114.arrow"
+ },
+ {
+ "filename": "data-00073-of-00114.arrow"
+ },
+ {
+ "filename": "data-00074-of-00114.arrow"
+ },
+ {
+ "filename": "data-00075-of-00114.arrow"
+ },
+ {
+ "filename": "data-00076-of-00114.arrow"
+ },
+ {
+ "filename": "data-00077-of-00114.arrow"
+ },
+ {
+ "filename": "data-00078-of-00114.arrow"
+ },
+ {
+ "filename": "data-00079-of-00114.arrow"
+ },
+ {
+ "filename": "data-00080-of-00114.arrow"
+ },
+ {
+ "filename": "data-00081-of-00114.arrow"
+ },
+ {
+ "filename": "data-00082-of-00114.arrow"
+ },
+ {
+ "filename": "data-00083-of-00114.arrow"
+ },
+ {
+ "filename": "data-00084-of-00114.arrow"
+ },
+ {
+ "filename": "data-00085-of-00114.arrow"
+ },
+ {
+ "filename": "data-00086-of-00114.arrow"
+ },
+ {
+ "filename": "data-00087-of-00114.arrow"
+ },
+ {
+ "filename": "data-00088-of-00114.arrow"
+ },
+ {
+ "filename": "data-00089-of-00114.arrow"
+ },
+ {
+ "filename": "data-00090-of-00114.arrow"
+ },
+ {
+ "filename": "data-00091-of-00114.arrow"
+ },
+ {
+ "filename": "data-00092-of-00114.arrow"
+ },
+ {
+ "filename": "data-00093-of-00114.arrow"
+ },
+ {
+ "filename": "data-00094-of-00114.arrow"
+ },
+ {
+ "filename": "data-00095-of-00114.arrow"
+ },
+ {
+ "filename": "data-00096-of-00114.arrow"
+ },
+ {
+ "filename": "data-00097-of-00114.arrow"
+ },
+ {
+ "filename": "data-00098-of-00114.arrow"
+ },
+ {
+ "filename": "data-00099-of-00114.arrow"
+ },
+ {
+ "filename": "data-00100-of-00114.arrow"
+ },
+ {
+ "filename": "data-00101-of-00114.arrow"
+ },
+ {
+ "filename": "data-00102-of-00114.arrow"
+ },
+ {
+ "filename": "data-00103-of-00114.arrow"
+ },
+ {
+ "filename": "data-00104-of-00114.arrow"
+ },
+ {
+ "filename": "data-00105-of-00114.arrow"
+ },
+ {
+ "filename": "data-00106-of-00114.arrow"
+ },
+ {
+ "filename": "data-00107-of-00114.arrow"
+ },
+ {
+ "filename": "data-00108-of-00114.arrow"
+ },
+ {
+ "filename": "data-00109-of-00114.arrow"
+ },
+ {
+ "filename": "data-00110-of-00114.arrow"
+ },
+ {
+ "filename": "data-00111-of-00114.arrow"
+ },
+ {
+ "filename": "data-00112-of-00114.arrow"
+ },
+ {
+ "filename": "data-00113-of-00114.arrow"
+ }
+ ],
+ "_fingerprint": "cd5d0a03f3f1267d",
+ "_format_columns": null,
+ "_format_kwargs": {},
+ "_format_type": null,
+ "_output_all_columns": false,
+ "_split": "train"
+}
\ No newline at end of file