Add files using upload-large-folder tool
Browse files- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/_tabdiff_gen.py +36 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/_tabdiff_train.py +21 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/gen_20260501_190744.log +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/input_snapshot.json +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/runtime_result.json +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/staged/public/staged_features.json +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/staged/public/test.csv +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/staged/public/train.csv +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/staged/public/val.csv +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabdiff-n12-196045-20260501_190744.csv +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabdiff_train_meta.json +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/X_cat_test.npy +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/X_cat_train.npy +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/X_cat_val.npy +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/X_num_test.npy +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/X_num_train.npy +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/X_num_val.npy +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/info.json +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/real.csv +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/test.csv +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/val.csv +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/y_test.npy +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/y_train.npy +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/y_val.npy +3 -0
- syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/train_20260501_184309.log +3 -0
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n12"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12"
|
| 6 |
+
dst_data = os.path.join(td, "data", name)
|
| 7 |
+
dst_syn = os.path.join(td, "synthetic", name)
|
| 8 |
+
shutil.rmtree(dst_data, ignore_errors=True)
|
| 9 |
+
shutil.copytree(src, dst_data)
|
| 10 |
+
os.makedirs(dst_syn, exist_ok=True)
|
| 11 |
+
for fn in ("real.csv", "test.csv", "val.csv"):
|
| 12 |
+
shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn))
|
| 13 |
+
os.chdir(td)
|
| 14 |
+
os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "")
|
| 15 |
+
subprocess.check_call([
|
| 16 |
+
sys.executable, "-m", "tabdiff.main",
|
| 17 |
+
"--dataname", name, "--mode", "test", "--gpu", "0",
|
| 18 |
+
"--no_wandb", "--exp_name", r"adapter_learnable",
|
| 19 |
+
"--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_n12/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(196045)),
|
| 21 |
+
])
|
| 22 |
+
# test() 写入 tabdiff/result/<dataname>/<exp>/<epoch>/samples.csv
|
| 23 |
+
import glob as g
|
| 24 |
+
base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable")
|
| 25 |
+
best = None
|
| 26 |
+
best_t = -1.0
|
| 27 |
+
for root, _, files in os.walk(base):
|
| 28 |
+
if "samples.csv" in files:
|
| 29 |
+
p = os.path.join(root, "samples.csv")
|
| 30 |
+
t = os.path.getmtime(p)
|
| 31 |
+
if t > best_t:
|
| 32 |
+
best_t = t
|
| 33 |
+
best = p
|
| 34 |
+
if not best:
|
| 35 |
+
raise SystemExit("tabdiff: no samples.csv under " + base)
|
| 36 |
+
shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n12/tabdiff/tabdiff-n12-20260501_184309/tabdiff-n12-196045-20260501_190744.csv")
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n12"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12"
|
| 6 |
+
dst_data = os.path.join(td, "data", name)
|
| 7 |
+
dst_syn = os.path.join(td, "synthetic", name)
|
| 8 |
+
shutil.rmtree(dst_data, ignore_errors=True)
|
| 9 |
+
shutil.copytree(src, dst_data)
|
| 10 |
+
os.makedirs(dst_syn, exist_ok=True)
|
| 11 |
+
for fn in ("real.csv", "test.csv", "val.csv"):
|
| 12 |
+
shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn))
|
| 13 |
+
os.chdir(td)
|
| 14 |
+
os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "")
|
| 15 |
+
os.environ["TABDIFF_SMOKE_STEPS"] = "500"
|
| 16 |
+
os.environ["TABDIFF_ADAPTER_TRAIN"] = "1"
|
| 17 |
+
subprocess.check_call([
|
| 18 |
+
sys.executable, "-m", "tabdiff.main",
|
| 19 |
+
"--dataname", name, "--mode", "train", "--gpu", "0",
|
| 20 |
+
"--no_wandb", "--exp_name", r"adapter_learnable",
|
| 21 |
+
])
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/gen_20260501_190744.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2021b7cacae0f5c614cd878268e30ae38f5919c29ed0e7f59387bec8324951bb
|
| 3 |
+
size 16347
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:012f1ab9daa34f0780b642fbfe77319df6c96b8c407ac47b6a710a9eeeb33a42
|
| 3 |
+
size 1360
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/models_tabdiff/trained.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb
|
| 3 |
+
size 74
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f557e091384db0c72c9acb9ef1549554fc2a2d69f9990d9697104a90556b8a68
|
| 3 |
+
size 1878
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2669f797a1e70611d433ac20e4b082cf45938adaeb6f5fdc85dda5e18bcfaf48
|
| 3 |
+
size 920
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ab40fac1789e1ec6133b500c6d77e8e70b0641acdae998b98d3ab2d81306782
|
| 3 |
+
size 2694
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3abc4bf3c3d7bde09fa0320e3da397b05704c8a80f9a1b23c532b08458fae611
|
| 3 |
+
size 918
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:148b95cbf4c3da3ebc38686f20ef1e724b56b701abfa24065d77f9b417e8671e
|
| 3 |
+
size 382
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4972eb2812d325c143ec99492afa470fe047141a9bdf34893ec0133a12b8dc26
|
| 3 |
+
size 315789
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:728fec9c0ec06ca4b292989614be4374c308d9a15b1e0002c3daeb3a68d5d350
|
| 3 |
+
size 2524420
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8931c0b2402466ccca41868fc484ab4bc6f627d68422570b20d47d1104922959
|
| 3 |
+
size 315663
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9a82ec9a16b79cec1db635f2bf121410725c7ba5b2ad35e205f4efdccd0a3098
|
| 3 |
+
size 323
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/staged/tabdiff/adapter_transforms_applied.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945
|
| 3 |
+
size 2
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cafa42d5366e88d543d59e1256b82855c65a8bad6ae241fbf7743d76ffffac8e
|
| 3 |
+
size 2893
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabdiff-n12-196045-20260501_190744.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5843008074789e39d22e3a316e563a35107d147f499c1edef8a8794b77359e65
|
| 3 |
+
size 4285168
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3894be2341d7454f17bd0108b93abc4d547ef97fd95f841f06dab07a5036c16
|
| 3 |
+
size 83
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2990601a724cc562f148a8faccfd59df9d7f0a12638af6e2ef170b620ef2ed45
|
| 3 |
+
size 128
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2990601a724cc562f148a8faccfd59df9d7f0a12638af6e2ef170b620ef2ed45
|
| 3 |
+
size 128
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2990601a724cc562f148a8faccfd59df9d7f0a12638af6e2ef170b620ef2ed45
|
| 3 |
+
size 128
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49524bebda68f2ad3e5d8743be06fd57d099132e132562e7806ad11ee5aca1d2
|
| 3 |
+
size 2352668
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49524bebda68f2ad3e5d8743be06fd57d099132e132562e7806ad11ee5aca1d2
|
| 3 |
+
size 2352668
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49524bebda68f2ad3e5d8743be06fd57d099132e132562e7806ad11ee5aca1d2
|
| 3 |
+
size 2352668
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:27bb51a3f40122f7d7bdf037b2062b163dc9002ed6232a01c41a8f1055ddee1b
|
| 3 |
+
size 1214
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:54e3ee0b835809efbb49a4ffe456a07a881360f7c60a28cb07794a1056609b2b
|
| 3 |
+
size 2524391
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:54e3ee0b835809efbb49a4ffe456a07a881360f7c60a28cb07794a1056609b2b
|
| 3 |
+
size 2524391
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:54e3ee0b835809efbb49a4ffe456a07a881360f7c60a28cb07794a1056609b2b
|
| 3 |
+
size 2524391
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:287f6835c6d89c1245143b25166673da2a55377c2ca2ead7f5bbc0e34cc03c1b
|
| 3 |
+
size 1568488
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:287f6835c6d89c1245143b25166673da2a55377c2ca2ead7f5bbc0e34cc03c1b
|
| 3 |
+
size 1568488
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/tabular_bundle/pipeline_n12/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:287f6835c6d89c1245143b25166673da2a55377c2ca2ead7f5bbc0e34cc03c1b
|
| 3 |
+
size 1568488
|
syntheticSuccess/n12/tabdiff/tabdiff-n12-20260501_184309/train_20260501_184309.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b69de9d917a8863bd7eea40571c2ec02c4bc71a503575cc4947c5a4f27108032
|
| 3 |
+
size 5281960
|