Add files using upload-large-folder tool
Browse files- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/_tabdiff_gen.py +36 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/_tabdiff_train.py +21 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/gen_20260430_235717.log +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/input_snapshot.json +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/runtime_result.json +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/staged_features.json +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/test.csv +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/train.csv +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/val.csv +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabdiff-n11-15215-20260430_235717.csv +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabdiff_train_meta.json +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_cat_test.npy +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_cat_train.npy +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_cat_val.npy +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_num_test.npy +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_num_train.npy +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_num_val.npy +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/info.json +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/real.csv +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/test.csv +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/val.csv +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/y_test.npy +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/y_train.npy +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/y_val.npy +3 -0
- syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/train_20260430_234953.log +3 -0
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n11"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11"
|
| 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_n11/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(15215)),
|
| 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/n11/tabdiff/tabdiff-n11-20260430_234952/tabdiff-n11-15215-20260430_235717.csv")
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n11"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11"
|
| 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/n11/tabdiff/tabdiff-n11-20260430_234952/gen_20260430_235717.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a187b75dc57c0e9de8da75b6c28dd71213398633e32406853dfa00327d85b6b
|
| 3 |
+
size 5234
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d72149d5374a893bfa5c45ba770dafd723399f1e8e700b03f797a0cf5c65dbc4
|
| 3 |
+
size 1360
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/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/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68c3209b66f9891477ccb430a3d02e3a299eb9c1a2d045bbf528bdfeb8de4fb0
|
| 3 |
+
size 5283
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6336138aac04ffe8bd9b1596f9d11556e4417d85ddb950dd20c9532ef6b9fd80
|
| 3 |
+
size 915
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:319d8b7e84b2f8fdf6116b24ef85136cca161e44a0cd37acb64abf69620d2414
|
| 3 |
+
size 6099
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:687ba49a6907e64f803d26ac9e8a911dd2a7d88dee7520734ece5d0bda31da65
|
| 3 |
+
size 916
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ea5e7a5363e366f12e9794c57325c7f28e71ef584464c2f78fa67b80eca9a82
|
| 3 |
+
size 1025
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50
|
| 3 |
+
size 148017
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7
|
| 3 |
+
size 1182326
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44
|
| 3 |
+
size 147784
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b54a75248f4169f1b8cf7baa3ab1bf3dbabfb4985c780f6349c1fd5631be1c66
|
| 3 |
+
size 323
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/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/n11/tabdiff/tabdiff-n11-20260430_234952/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f6da975c8b42486f027f818c73073579d6a23e2b586deabc8c5cba5c2bc568a1
|
| 3 |
+
size 6298
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabdiff-n11-15215-20260430_235717.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c510ac9b5c57de48112b31467e5befb64dc617c935f74f831cfba0a28671e8b
|
| 3 |
+
size 1555988
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4aa2aaa72b969d1c154dbc6db869e7097f5d72d39ced06f53cab09871cf4ecb5
|
| 3 |
+
size 83
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8
|
| 3 |
+
size 128
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8
|
| 3 |
+
size 128
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8
|
| 3 |
+
size 128
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59
|
| 3 |
+
size 608728
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59
|
| 3 |
+
size 608728
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59
|
| 3 |
+
size 608728
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e28ab7e5d1e8ddbdee02b8e6ae92b33ac9bab1b05708c4f5a429d28f14eff1c
|
| 3 |
+
size 2320
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2
|
| 3 |
+
size 1182272
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2
|
| 3 |
+
size 1182272
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2
|
| 3 |
+
size 1182272
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf
|
| 3 |
+
size 121848
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf
|
| 3 |
+
size 121848
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf
|
| 3 |
+
size 121848
|
syntheticSuccess/n11/tabdiff/tabdiff-n11-20260430_234952/train_20260430_234953.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a49888b32205527eafc4ffb5eba65de4c5caf474e94ca2890a41b99d0c0e2e4f
|
| 3 |
+
size 523301
|