Add files using upload-large-folder tool
Browse files- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/_tabdiff_gen.py +36 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/_tabdiff_train.py +21 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/gen_20260501_174802.log +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/input_snapshot.json +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/runtime_result.json +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/staged/public/staged_features.json +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/staged/public/test.csv +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/staged/public/train.csv +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/staged/public/val.csv +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabdiff-m12-95512-20260501_174802.csv +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabdiff_train_meta.json +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/X_cat_test.npy +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/X_cat_train.npy +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/X_cat_val.npy +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/X_num_test.npy +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/X_num_train.npy +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/X_num_val.npy +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/info.json +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/real.csv +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/test.csv +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/val.csv +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/y_test.npy +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/y_train.npy +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/y_val.npy +3 -0
- syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/train_20260501_172041.log +3 -0
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_m12"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12"
|
| 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_m12/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(95512)),
|
| 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/m12/tabdiff/tabdiff-m12-20260501_172034/tabdiff-m12-95512-20260501_174802.csv")
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_m12"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12"
|
| 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/m12/tabdiff/tabdiff-m12-20260501_172034/gen_20260501_174802.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c4819e0bbf9fef2e9dc5f43e90cf9592174284c623313558af90e33dbf9be2d0
|
| 3 |
+
size 45136
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dde9d1ee5e104251cb1c38ae69b5d81553e7882d9887fa387d401ad0c238b8e6
|
| 3 |
+
size 1365
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/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/m12/tabdiff/tabdiff-m12-20260501_172034/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7052f989d690d11594a14d84e1e3e22add4f6ab542249e7d977cffc6e17c1106
|
| 3 |
+
size 14899
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:080d5d2cd0416a45d70034fe951613dee37784a2ced439e62b853db91646aacc
|
| 3 |
+
size 927
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:58dfc7b6b840a5f0ac0bc4b81ed7e152796e3bdb1d6d31418ad5d16b0e6b89c4
|
| 3 |
+
size 15715
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f60a6892665dd52920e68d4e6edf79a6dc1e29434a7f4d7c8394b48820d67381
|
| 3 |
+
size 918
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:099d7c70b678c740a1bbb7c81aa4577744dd2a13bc1d6d4ab29781b2fe361808
|
| 3 |
+
size 3261
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5f493029a41815df91c3b28f521a2264951567318150110e5c27fa757ebc734
|
| 3 |
+
size 1694120
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e2f868c246063628371ded60d767d155528ace18d424271c7271617a8ef4643
|
| 3 |
+
size 13548268
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ce173da72624b2b531e2d913ada1d29b77c0926be15b8d83a75911a1f5e36679
|
| 3 |
+
size 1694777
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3391232a557bf157b75d844a7f37e3202784d3bb07b7fc6880b8c53e6763f49
|
| 3 |
+
size 323
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/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/m12/tabdiff/tabdiff-m12-20260501_172034/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1039e2640b2e7013eac27042e183193a8d98d6d809a0ea3f71938bc46742da50
|
| 3 |
+
size 15914
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabdiff-m12-95512-20260501_174802.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cba37d06b6ab1816ce1753bfa6f629d98b86da6f7b32a1856b6483398489c72f
|
| 3 |
+
size 10969977
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aef91b9ccadcc0c7eee510a4f3d1045ade3cb6262d78585c454c08c68d0c17c3
|
| 3 |
+
size 83
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d46a64880509389229c0bd65f5117ecb73e8e2809b3e548a8af185d85737a126
|
| 3 |
+
size 12989760
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d46a64880509389229c0bd65f5117ecb73e8e2809b3e548a8af185d85737a126
|
| 3 |
+
size 12989760
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d46a64880509389229c0bd65f5117ecb73e8e2809b3e548a8af185d85737a126
|
| 3 |
+
size 12989760
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6858d88008eac5dbfeb9e0068a78aa9698f51aabe0c703bfa50ff77e01144b29
|
| 3 |
+
size 5348800
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6858d88008eac5dbfeb9e0068a78aa9698f51aabe0c703bfa50ff77e01144b29
|
| 3 |
+
size 5348800
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6858d88008eac5dbfeb9e0068a78aa9698f51aabe0c703bfa50ff77e01144b29
|
| 3 |
+
size 5348800
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d668f6163d3dbf52b72ff2a5d1a1d35c4d5ece9d972a99699304daffb6bdfcdd
|
| 3 |
+
size 5714
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e676fbc039675810e21e9895769581a76702560d04cbe9acc56770e2c14b853e
|
| 3 |
+
size 8586691
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e676fbc039675810e21e9895769581a76702560d04cbe9acc56770e2c14b853e
|
| 3 |
+
size 8586691
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e676fbc039675810e21e9895769581a76702560d04cbe9acc56770e2c14b853e
|
| 3 |
+
size 8586691
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:585d082372be612634c9472cd98cfd16667c4a2ec082246cbb34339f54abbf1c
|
| 3 |
+
size 764224
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:585d082372be612634c9472cd98cfd16667c4a2ec082246cbb34339f54abbf1c
|
| 3 |
+
size 764224
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/tabular_bundle/pipeline_m12/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:585d082372be612634c9472cd98cfd16667c4a2ec082246cbb34339f54abbf1c
|
| 3 |
+
size 764224
|
syntheticSuccess/m12/tabdiff/tabdiff-m12-20260501_172034/train_20260501_172041.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f770c29b173ea3e3fff2ee5fbea155b63b0d67382ec7ebbbdc7bc49e0c62c8e3
|
| 3 |
+
size 3065063
|