Add files using upload-large-folder tool
Browse files- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/_tabdiff_gen.py +36 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/_tabdiff_train.py +21 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/gen_20260501_183031.log +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/input_snapshot.json +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/runtime_result.json +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/staged/public/staged_features.json +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/staged/public/test.csv +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/staged/public/train.csv +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/staged/public/val.csv +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabdiff-n8-1253-20260501_183031.csv +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabdiff_train_meta.json +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/X_cat_test.npy +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/X_cat_train.npy +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/X_cat_val.npy +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/X_num_test.npy +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/X_num_train.npy +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/X_num_val.npy +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/info.json +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/real.csv +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/test.csv +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/val.csv +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/y_test.npy +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/y_train.npy +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/y_val.npy +3 -0
- syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/train_20260501_180837.log +3 -0
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n8"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8"
|
| 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_n8/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(1253)),
|
| 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/n8/tabdiff/tabdiff-n8-20260501_180835/tabdiff-n8-1253-20260501_183031.csv")
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n8"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8"
|
| 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/n8/tabdiff/tabdiff-n8-20260501_180835/gen_20260501_183031.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e510c3d322f1704fc934a071c91db340e14d485a2e13e2a0d0648831252be14
|
| 3 |
+
size 9777
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16763b3e8cc8289342cc20ce07eee3eac8f42e3001bfb1432397c73e5fc15431
|
| 3 |
+
size 1353
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/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/n8/tabdiff/tabdiff-n8-20260501_180835/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dfb74aca7aa78c323e23c11bb9d187d7d56f25ee841f5bae0fefa14a629c3452
|
| 3 |
+
size 285716
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8519e06ffb121f172dd7c62305bd4e1a7760c91ff0880271a3acb3f516497de0
|
| 3 |
+
size 914
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19279081f54a6658176a624fd1cd54cba582ab51c4029e3521917d10d33d72aa
|
| 3 |
+
size 286522
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:539484b178260ed67d8412d23c9fcf006c26c0eb4c751156901786375e266ee9
|
| 3 |
+
size 910
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:023f2b4898b0902e78561e9f6519f9dcaca7b7c9edf33d6a8dfa995c2b505644
|
| 3 |
+
size 57501
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8746d2ff3a5c746a183a55abb2d10636ed95082118233f716c06de8b19652781
|
| 3 |
+
size 574665
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e34a97ea3f111b7bed4108447805ffb0fdb2912937947b9ed8547d72f42f3c0
|
| 3 |
+
size 4575725
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec46f42c0d9d9dc8d90b1c55b5315ff92529a66282df9266a3b1aff3b8b3e7b7
|
| 3 |
+
size 548212
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c68ee1656fbdbe5e6929182bc133cc9406cdb4ab4c13d994867e51f0106c3ae0
|
| 3 |
+
size 321
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/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/n8/tabdiff/tabdiff-n8-20260501_180835/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d4d5b1485ece42fb873db3917bbc513e7b373ed65bfa55fdf0558ec3bc7b55b
|
| 3 |
+
size 286719
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabdiff-n8-1253-20260501_183031.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b537778593728e4f6da7d7685176c0a3ca2f96c1005f0b93d6439b8b34f137a
|
| 3 |
+
size 6254829
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:055ff065aae71afee0a06841586f503cc3056fabc7c9d2a68e5fb5011834bf9b
|
| 3 |
+
size 82
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b64832b8e32a5babcab173c2b025998aeabcd8062b009747c525681b7c245fe
|
| 3 |
+
size 1253128
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b64832b8e32a5babcab173c2b025998aeabcd8062b009747c525681b7c245fe
|
| 3 |
+
size 1253128
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b64832b8e32a5babcab173c2b025998aeabcd8062b009747c525681b7c245fe
|
| 3 |
+
size 1253128
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:852ddce9a304c760e6f9f863250dbe9bcadc129e57d041d60328ae98f02787cb
|
| 3 |
+
size 2340732
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:852ddce9a304c760e6f9f863250dbe9bcadc129e57d041d60328ae98f02787cb
|
| 3 |
+
size 2340732
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:852ddce9a304c760e6f9f863250dbe9bcadc129e57d041d60328ae98f02787cb
|
| 3 |
+
size 2340732
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24c17cf7d91f7956cf38bc787d12fea3831e171dc564fc8026af2eac9e4df74d
|
| 3 |
+
size 103408
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:28a8936e1bb1818c266d5339e44309e138b45ebb8fc3ec60c326aa4529ed9bfb
|
| 3 |
+
size 4278071
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:28a8936e1bb1818c266d5339e44309e138b45ebb8fc3ec60c326aa4529ed9bfb
|
| 3 |
+
size 4278071
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:28a8936e1bb1818c266d5339e44309e138b45ebb8fc3ec60c326aa4529ed9bfb
|
| 3 |
+
size 4278071
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b6613789a2222d963b682e7f6d3ce3bb658f7c2fd5e1771c634b1289e8e5c22
|
| 3 |
+
size 10152
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b6613789a2222d963b682e7f6d3ce3bb658f7c2fd5e1771c634b1289e8e5c22
|
| 3 |
+
size 10152
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/tabular_bundle/pipeline_n8/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b6613789a2222d963b682e7f6d3ce3bb658f7c2fd5e1771c634b1289e8e5c22
|
| 3 |
+
size 10152
|
syntheticSuccess/n8/tabdiff/tabdiff-n8-20260501_180835/train_20260501_180837.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:73c5dd8008c33ed889b5c62eb8b123d75b251b22820240b61c438a044946df1a
|
| 3 |
+
size 957097
|