Add files using upload-large-folder tool
Browse files- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/_tabdiff_gen.py +36 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/_tabdiff_train.py +21 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/gen_20260501_083409.log +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/input_snapshot.json +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/runtime_result.json +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/staged/public/staged_features.json +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/staged/public/test.csv +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/staged/public/train.csv +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/staged/public/val.csv +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabdiff-c11-54045-20260501_083409.csv +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabdiff_train_meta.json +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/X_cat_test.npy +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/X_cat_train.npy +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/X_cat_val.npy +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/X_num_test.npy +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/X_num_train.npy +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/X_num_val.npy +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/info.json +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/real.csv +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/test.csv +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/val.csv +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/y_test.npy +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/y_train.npy +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/y_val.npy +3 -0
- syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/train_20260501_081405.log +3 -0
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_c11"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11"
|
| 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_c11/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(54045)),
|
| 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/c11/tabdiff/tabdiff-c11-20260501_081401/tabdiff-c11-54045-20260501_083409.csv")
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_c11"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11"
|
| 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/c11/tabdiff/tabdiff-c11-20260501_081401/gen_20260501_083409.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e3b54f01258af4e1fb58c8d685fadeeff8f1aef146a0d3e59c9a9f643898f37
|
| 3 |
+
size 17419
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac351e649d11d75550aa18ca1aa9613fe1d2821f0aebe0f62cfde008f66afdb1
|
| 3 |
+
size 1362
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/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/c11/tabdiff/tabdiff-c11-20260501_081401/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b387e803521158c1aa700ead7c21618e0e50431f16b63cab8a00e06ab28af399
|
| 3 |
+
size 17917
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b99fb323722f555b9e74e3512866eb944f48bd85e405dcde9c9d7566944f7338
|
| 3 |
+
size 919
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92508191e1667b04d80e9e88bdccc70634b35caae65f53eb2b597c8d5fe3431f
|
| 3 |
+
size 18733
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f8303598f637cca81f367061a4d5521c9948a57ccf44d7c8400b707ffc3bfa18
|
| 3 |
+
size 916
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e99375f3f096bf5d6d52a3e97804773b9ea59316c63312e7fb667cd6b858b78
|
| 3 |
+
size 3874
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7bf013e6809cd2d7d0606cff7ce2daca4b4bdc9683262cfe5458a5d06c8efe15
|
| 3 |
+
size 597067
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea5c56f8337b738f6f4c8fd78647834cf1947072fd207f1a6c3e78453f49e66a
|
| 3 |
+
size 4774600
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:25f005f58bf10bf36365d3b64392af50bc3f14d54ae06b431c381fbc8fcf4c3e
|
| 3 |
+
size 596829
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9505619ff52a1fd91f0336025fdbd671b7c28e74c918f434aba46de3148231b0
|
| 3 |
+
size 323
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/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/c11/tabdiff/tabdiff-c11-20260501_081401/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d3f47dbf0e073e4d36f2f1347345a1fe79f7a6e04ab7b36333056088ee5da518
|
| 3 |
+
size 18932
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabdiff-c11-54045-20260501_083409.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a3e068b70c1cc6fadeee1794dd3765baf88b75105d2697c65bb0a839d6978831
|
| 3 |
+
size 4648002
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e3d4c8b081f4c5dd45c931497996fa641d9a4e5299f8674c98a054921d7a8b6
|
| 3 |
+
size 83
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:815de355de1f2fa446bd7d7c6f1318ca0cee54ef1374d29fca6fb983fe06a273
|
| 3 |
+
size 18159248
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:815de355de1f2fa446bd7d7c6f1318ca0cee54ef1374d29fca6fb983fe06a273
|
| 3 |
+
size 18159248
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:815de355de1f2fa446bd7d7c6f1318ca0cee54ef1374d29fca6fb983fe06a273
|
| 3 |
+
size 18159248
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a73e78d862eff65a895004214847a066a9790abf16e44dd1c87ee8ab444e80f0
|
| 3 |
+
size 128
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a73e78d862eff65a895004214847a066a9790abf16e44dd1c87ee8ab444e80f0
|
| 3 |
+
size 128
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a73e78d862eff65a895004214847a066a9790abf16e44dd1c87ee8ab444e80f0
|
| 3 |
+
size 128
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad3bd6a2007aa9adb5fd3599f6e0288c239230429981bb8f818359710dd13388
|
| 3 |
+
size 5564
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d9b52d40718f261d42d84a3ba1dc4e53e03c62c1f049c2dbd302e2945374e1d6
|
| 3 |
+
size 4774587
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d9b52d40718f261d42d84a3ba1dc4e53e03c62c1f049c2dbd302e2945374e1d6
|
| 3 |
+
size 4774587
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d9b52d40718f261d42d84a3ba1dc4e53e03c62c1f049c2dbd302e2945374e1d6
|
| 3 |
+
size 4774587
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7fee85410a7a9bc9e1d94d86e247c24268580f51464770d8d510e04ad08b2aa
|
| 3 |
+
size 432488
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7fee85410a7a9bc9e1d94d86e247c24268580f51464770d8d510e04ad08b2aa
|
| 3 |
+
size 432488
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/tabular_bundle/pipeline_c11/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7fee85410a7a9bc9e1d94d86e247c24268580f51464770d8d510e04ad08b2aa
|
| 3 |
+
size 432488
|
syntheticSuccess/c11/tabdiff/tabdiff-c11-20260501_081401/train_20260501_081405.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:943e5a08899aec038506e6176fb161a70c0eb0dcc35a83c695fa3be357b59a72
|
| 3 |
+
size 1818429
|