Add files using upload-large-folder tool
Browse files- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/_tabdiff_gen.py +36 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/_tabdiff_train.py +21 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/gen_20260501_005103.log +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/input_snapshot.json +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/runtime_result.json +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/staged_features.json +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/test.csv +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/train.csv +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/val.csv +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabdiff-n3-3918-20260501_005103.csv +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabdiff_train_meta.json +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_cat_test.npy +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_cat_train.npy +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_cat_val.npy +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_num_test.npy +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_num_train.npy +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_num_val.npy +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/info.json +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/real.csv +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/test.csv +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/val.csv +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/y_test.npy +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/y_train.npy +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/y_val.npy +3 -0
- syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/train_20260501_004446.log +3 -0
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n3"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3"
|
| 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_n3/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(3918)),
|
| 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/n3/tabdiff/tabdiff-n3-20260501_004446/tabdiff-n3-3918-20260501_005103.csv")
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n3"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3"
|
| 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/n3/tabdiff/tabdiff-n3-20260501_004446/gen_20260501_005103.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2bb6dc678842c114f1cf611551ea8e33b9c867cd1c303062c178c576a93266a3
|
| 3 |
+
size 4533
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad40991501777a59a3e8f48ad5dddcb04f9908559ea41a92cff296753d4ac77b
|
| 3 |
+
size 1346
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/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/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f0d6ea2b78489a6f1d2a4546e12404214ae439c9439a9922bea713ec72b4b12a
|
| 3 |
+
size 5698
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f0ef01a386dd32e531a00a2fe40df2aeed2cbeace8b0beab6956a3accd027a93
|
| 3 |
+
size 914
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36cab428052c1adfe6fdcfd88e57411621113f38031c620b57f78358ae8f27bb
|
| 3 |
+
size 6504
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db0d4d821ac30f7a6a924b12287a26a7381679eff6eb834e8beabe7a4f0971bc
|
| 3 |
+
size 907
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:554e7aee4c0517bcf9d7810fc4a5563b6ed24d721bc267fee16aa28edd889143
|
| 3 |
+
size 1179
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b
|
| 3 |
+
size 28944
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9
|
| 3 |
+
size 229945
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6
|
| 3 |
+
size 28791
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:830d9f6d0ccb56e7de93ba2eb45f2d699a0bf3439eae3afec5a5f4bcc8c1bd0f
|
| 3 |
+
size 321
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/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/n3/tabdiff/tabdiff-n3-20260501_004446/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9582556a0c2db97b328cdaef2ecef8715d58b444399dc7a4317b748c808ead0a
|
| 3 |
+
size 6701
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabdiff-n3-3918-20260501_005103.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc29d58b6452e3c592eabdce0f2cd016bae0097f2e3480481dc89072eb414ace
|
| 3 |
+
size 339570
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:93445d17cabcc42cf0d375747674d69a22f14674047d6a7544d1df2a78ec7348
|
| 3 |
+
size 82
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7
|
| 3 |
+
size 128
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7
|
| 3 |
+
size 128
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7
|
| 3 |
+
size 128
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a
|
| 3 |
+
size 172520
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a
|
| 3 |
+
size 172520
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a
|
| 3 |
+
size 172520
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:54d3ab685b584d0191213f19add3d9670717c82013d503a6b4ce5b0176762e31
|
| 3 |
+
size 2608
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023
|
| 3 |
+
size 229825
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023
|
| 3 |
+
size 229825
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023
|
| 3 |
+
size 229825
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1
|
| 3 |
+
size 31472
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1
|
| 3 |
+
size 31472
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1
|
| 3 |
+
size 31472
|
syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_004446/train_20260501_004446.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cc36ffc16d3a5a3628708bc1337e4733f6eefc2d2eda647495b92de7f796b63e
|
| 3 |
+
size 291235
|