SuperBitDev commited on
Commit
6bf553f
·
verified ·
1 Parent(s): 1994c09

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. README.md +23 -0
  2. chute_config.yml +19 -0
  3. miner.py +484 -0
  4. weights.onnx +3 -0
README.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - element_type:detect
4
+ - model:yolov11-nano
5
+ - object:person
6
+ manako:
7
+ description: Roboflow - generated by element_trainer service to detect person
8
+ source: element_trainer/800e961b-eb64-4380-880c-f1ed67abd563
9
+ prompt_hints: null
10
+ input_payload:
11
+ - name: frame
12
+ type: image
13
+ description: RGB frame
14
+ output_payload:
15
+ - name: detections
16
+ type: detections
17
+ description: List of detections
18
+ evaluation_score: null
19
+ last_benchmark:
20
+ type: synthetic_fixed
21
+ ran_at: '2026-03-06T02:20:51.927289Z'
22
+ result_path: benchmark/synthetic/1ada5b1e-38b8-4bdc-967a-d8a27b0e6afb.json
23
+ ---
chute_config.yml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Image:
2
+ from_base: parachutes/python:3.12
3
+ run_command:
4
+ - pip install --upgrade setuptools wheel
5
+ - pip install 'numpy>=1.23' 'onnxruntime-gpu[cuda,cudnn]>=1.16' 'opencv-python>=4.7' 'pillow>=9.5' 'huggingface_hub>=0.19.4' 'pydantic>=2.0' 'pyyaml>=6.0' 'aiohttp>=3.9'
6
+ - pip install torch torchvision
7
+
8
+ NodeSelector:
9
+ gpu_count: 1
10
+ min_vram_gb_per_gpu: 24
11
+ min_memory_gb: 32
12
+ min_cpu_count: 32
13
+
14
+ Chute:
15
+ timeout_seconds: 900
16
+ concurrency: 4
17
+ max_instances: 5
18
+ scaling_threshold: 0.5
19
+ shutdown_after_seconds: 288000
miner.py ADDED
@@ -0,0 +1,484 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from pathlib import Path
2
+ import math
3
+
4
+ import cv2
5
+ import numpy as np
6
+ import onnxruntime as ort
7
+ from numpy import ndarray
8
+ from pydantic import BaseModel
9
+
10
+
11
+ class BoundingBox(BaseModel):
12
+ x1: int
13
+ y1: int
14
+ x2: int
15
+ y2: int
16
+ cls_id: int
17
+ conf: float
18
+
19
+
20
+ class TVFrameResult(BaseModel):
21
+ frame_id: int
22
+ boxes: list[BoundingBox]
23
+ keypoints: list[tuple[int, int]]
24
+
25
+
26
+ class Miner:
27
+ def __init__(self, path_hf_repo: Path) -> None:
28
+ model_path = path_hf_repo / "weights.onnx"
29
+ self.class_names = ['person']
30
+ print("ORT version:", ort.__version__)
31
+
32
+ try:
33
+ ort.preload_dlls()
34
+ print("✅ onnxruntime.preload_dlls() success")
35
+ except Exception as e:
36
+ print(f"⚠️ preload_dlls failed: {e}")
37
+
38
+ print("ORT available providers BEFORE session:", ort.get_available_providers())
39
+
40
+ sess_options = ort.SessionOptions()
41
+ sess_options.graph_optimization_level = ort.GraphOptimizationLevel.ORT_ENABLE_ALL
42
+
43
+ try:
44
+ self.session = ort.InferenceSession(
45
+ str(model_path),
46
+ sess_options=sess_options,
47
+ providers=["CUDAExecutionProvider", "CPUExecutionProvider"],
48
+ )
49
+ print("✅ Created ORT session with preferred CUDA provider list")
50
+ except Exception as e:
51
+ print(f"⚠️ CUDA session creation failed, falling back to CPU: {e}")
52
+ self.session = ort.InferenceSession(
53
+ str(model_path),
54
+ sess_options=sess_options,
55
+ providers=["CPUExecutionProvider"],
56
+ )
57
+
58
+ print("ORT session providers:", self.session.get_providers())
59
+
60
+ for inp in self.session.get_inputs():
61
+ print("INPUT:", inp.name, inp.shape, inp.type)
62
+
63
+ for out in self.session.get_outputs():
64
+ print("OUTPUT:", out.name, out.shape, out.type)
65
+
66
+ self.input_name = self.session.get_inputs()[0].name
67
+ self.output_names = [output.name for output in self.session.get_outputs()]
68
+ self.input_shape = self.session.get_inputs()[0].shape
69
+
70
+ # Your export is fixed-size 1280, but we still read actual ONNX input shape first.
71
+ self.input_height = self._safe_dim(self.input_shape[2], default=1280)
72
+ self.input_width = self._safe_dim(self.input_shape[3], default=1280)
73
+
74
+ self.conf_thres = 0.1
75
+ self.iou_thres = 0.6
76
+ self.max_det = 300
77
+ self.use_tta = True
78
+
79
+ print(f"✅ ONNX model loaded from: {model_path}")
80
+ print(f"✅ ONNX providers: {self.session.get_providers()}")
81
+ print(f"✅ ONNX input: name={self.input_name}, shape={self.input_shape}")
82
+
83
+ def __repr__(self) -> str:
84
+ return (
85
+ f"ONNXRuntime(session={type(self.session).__name__}, "
86
+ f"providers={self.session.get_providers()})"
87
+ )
88
+
89
+ @staticmethod
90
+ def _safe_dim(value, default: int) -> int:
91
+ return value if isinstance(value, int) and value > 0 else default
92
+
93
+ def _letterbox(
94
+ self,
95
+ image: ndarray,
96
+ new_shape: tuple[int, int],
97
+ color=(114, 114, 114),
98
+ ) -> tuple[ndarray, float, tuple[float, float]]:
99
+ """
100
+ Resize with unchanged aspect ratio and pad to target shape.
101
+ Returns:
102
+ padded_image,
103
+ ratio,
104
+ (pad_w, pad_h) # half-padding
105
+ """
106
+ h, w = image.shape[:2]
107
+ new_w, new_h = new_shape
108
+
109
+ ratio = min(new_w / w, new_h / h)
110
+ resized_w = int(round(w * ratio))
111
+ resized_h = int(round(h * ratio))
112
+
113
+ if (resized_w, resized_h) != (w, h):
114
+ interp = cv2.INTER_CUBIC if ratio > 1.0 else cv2.INTER_LINEAR
115
+ image = cv2.resize(image, (resized_w, resized_h), interpolation=interp)
116
+
117
+ dw = new_w - resized_w
118
+ dh = new_h - resized_h
119
+ dw /= 2.0
120
+ dh /= 2.0
121
+
122
+ left = int(round(dw - 0.1))
123
+ right = int(round(dw + 0.1))
124
+ top = int(round(dh - 0.1))
125
+ bottom = int(round(dh + 0.1))
126
+
127
+ padded = cv2.copyMakeBorder(
128
+ image,
129
+ top,
130
+ bottom,
131
+ left,
132
+ right,
133
+ borderType=cv2.BORDER_CONSTANT,
134
+ value=color,
135
+ )
136
+ return padded, ratio, (dw, dh)
137
+
138
+ def _preprocess(
139
+ self, image: ndarray
140
+ ) -> tuple[np.ndarray, float, tuple[float, float], tuple[int, int]]:
141
+ """
142
+ Preprocess for fixed-size ONNX export:
143
+ - enhance image quality (CLAHE, denoise, sharpen)
144
+ - letterbox to model input size
145
+ - BGR -> RGB
146
+ - normalize to [0,1]
147
+ - HWC -> NCHW float32
148
+ """
149
+ orig_h, orig_w = image.shape[:2]
150
+
151
+ img, ratio, pad = self._letterbox(
152
+ image, (self.input_width, self.input_height)
153
+ )
154
+ img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
155
+ img = img.astype(np.float32) / 255.0
156
+ img = np.transpose(img, (2, 0, 1))[None, ...]
157
+ img = np.ascontiguousarray(img, dtype=np.float32)
158
+
159
+ return img, ratio, pad, (orig_w, orig_h)
160
+
161
+ @staticmethod
162
+ def _clip_boxes(boxes: np.ndarray, image_size: tuple[int, int]) -> np.ndarray:
163
+ w, h = image_size
164
+ boxes[:, 0] = np.clip(boxes[:, 0], 0, w - 1)
165
+ boxes[:, 1] = np.clip(boxes[:, 1], 0, h - 1)
166
+ boxes[:, 2] = np.clip(boxes[:, 2], 0, w - 1)
167
+ boxes[:, 3] = np.clip(boxes[:, 3], 0, h - 1)
168
+ return boxes
169
+
170
+ @staticmethod
171
+ def _xywh_to_xyxy(boxes: np.ndarray) -> np.ndarray:
172
+ out = np.empty_like(boxes)
173
+ out[:, 0] = boxes[:, 0] - boxes[:, 2] / 2.0
174
+ out[:, 1] = boxes[:, 1] - boxes[:, 3] / 2.0
175
+ out[:, 2] = boxes[:, 0] + boxes[:, 2] / 2.0
176
+ out[:, 3] = boxes[:, 1] + boxes[:, 3] / 2.0
177
+ return out
178
+
179
+ def _soft_nms(
180
+ self,
181
+ boxes: np.ndarray,
182
+ scores: np.ndarray,
183
+ sigma: float = 0.5,
184
+ score_thresh: float = 0.01,
185
+ ) -> tuple[np.ndarray, np.ndarray]:
186
+ """
187
+ Soft-NMS: Gaussian decay of overlapping scores instead of hard removal.
188
+ Returns (kept_original_indices, updated_scores).
189
+ """
190
+ N = len(boxes)
191
+ if N == 0:
192
+ return np.array([], dtype=np.intp), np.array([], dtype=np.float32)
193
+
194
+ boxes = boxes.astype(np.float32, copy=True)
195
+ scores = scores.astype(np.float32, copy=True)
196
+ order = np.arange(N)
197
+
198
+ for i in range(N):
199
+ max_pos = i + int(np.argmax(scores[i:]))
200
+ boxes[[i, max_pos]] = boxes[[max_pos, i]]
201
+ scores[[i, max_pos]] = scores[[max_pos, i]]
202
+ order[[i, max_pos]] = order[[max_pos, i]]
203
+
204
+ if i + 1 >= N:
205
+ break
206
+
207
+ xx1 = np.maximum(boxes[i, 0], boxes[i + 1:, 0])
208
+ yy1 = np.maximum(boxes[i, 1], boxes[i + 1:, 1])
209
+ xx2 = np.minimum(boxes[i, 2], boxes[i + 1:, 2])
210
+ yy2 = np.minimum(boxes[i, 3], boxes[i + 1:, 3])
211
+ inter = np.maximum(0.0, xx2 - xx1) * np.maximum(0.0, yy2 - yy1)
212
+
213
+ area_i = max(0.0, float(
214
+ (boxes[i, 2] - boxes[i, 0]) * (boxes[i, 3] - boxes[i, 1])
215
+ ))
216
+ areas_j = (
217
+ np.maximum(0.0, boxes[i + 1:, 2] - boxes[i + 1:, 0])
218
+ * np.maximum(0.0, boxes[i + 1:, 3] - boxes[i + 1:, 1])
219
+ )
220
+ iou = inter / (area_i + areas_j - inter + 1e-7)
221
+ scores[i + 1:] *= np.exp(-(iou ** 2) / sigma)
222
+
223
+ mask = scores > score_thresh
224
+ return order[mask], scores[mask]
225
+
226
+ def _decode_final_dets(
227
+ self,
228
+ preds: np.ndarray,
229
+ ratio: float,
230
+ pad: tuple[float, float],
231
+ orig_size: tuple[int, int],
232
+ apply_optional_dedup: bool = False,
233
+ ) -> list[BoundingBox]:
234
+ """
235
+ Primary path:
236
+ expected output rows like [x1, y1, x2, y2, conf, cls_id]
237
+ in letterboxed input coordinates.
238
+ """
239
+ if preds.ndim == 3 and preds.shape[0] == 1:
240
+ preds = preds[0]
241
+
242
+ if preds.ndim != 2 or preds.shape[1] < 6:
243
+ raise ValueError(f"Unexpected ONNX final-det output shape: {preds.shape}")
244
+
245
+ boxes = preds[:, :4].astype(np.float32)
246
+ scores = preds[:, 4].astype(np.float32)
247
+ cls_ids = preds[:, 5].astype(np.int32)
248
+
249
+ keep = scores >= self.conf_thres
250
+ boxes = boxes[keep]
251
+ scores = scores[keep]
252
+ cls_ids = cls_ids[keep]
253
+
254
+ if len(boxes) == 0:
255
+ return []
256
+
257
+ pad_w, pad_h = pad
258
+ orig_w, orig_h = orig_size
259
+
260
+ # reverse letterbox
261
+ boxes[:, [0, 2]] -= pad_w
262
+ boxes[:, [1, 3]] -= pad_h
263
+ boxes /= ratio
264
+ boxes = self._clip_boxes(boxes, (orig_w, orig_h))
265
+
266
+ if apply_optional_dedup and len(boxes) > 1:
267
+ keep_idx, scores = self._soft_nms(boxes, scores)
268
+ boxes = boxes[keep_idx]
269
+ cls_ids = cls_ids[keep_idx]
270
+
271
+ results: list[BoundingBox] = []
272
+ for box, conf, cls_id in zip(boxes, scores, cls_ids):
273
+ x1, y1, x2, y2 = box.tolist()
274
+
275
+ if x2 <= x1 or y2 <= y1:
276
+ continue
277
+
278
+ results.append(
279
+ BoundingBox(
280
+ x1=int(math.floor(x1)),
281
+ y1=int(math.floor(y1)),
282
+ x2=int(math.ceil(x2)),
283
+ y2=int(math.ceil(y2)),
284
+ cls_id=int(cls_id),
285
+ conf=float(conf),
286
+ )
287
+ )
288
+
289
+ return results
290
+
291
+ def _decode_raw_yolo(
292
+ self,
293
+ preds: np.ndarray,
294
+ ratio: float,
295
+ pad: tuple[float, float],
296
+ orig_size: tuple[int, int],
297
+ ) -> list[BoundingBox]:
298
+ """
299
+ Fallback path for raw YOLO predictions.
300
+ Supports common layouts:
301
+ - [1, C, N]
302
+ - [1, N, C]
303
+ """
304
+ if preds.ndim != 3:
305
+ raise ValueError(f"Unexpected raw ONNX output shape: {preds.shape}")
306
+
307
+ if preds.shape[0] != 1:
308
+ raise ValueError(f"Unexpected batch dimension in raw output: {preds.shape}")
309
+
310
+ preds = preds[0]
311
+
312
+ # Normalize to [N, C]
313
+ if preds.shape[0] <= 16 and preds.shape[1] > preds.shape[0]:
314
+ preds = preds.T
315
+
316
+ if preds.ndim != 2 or preds.shape[1] < 5:
317
+ raise ValueError(f"Unexpected normalized raw output shape: {preds.shape}")
318
+
319
+ boxes_xywh = preds[:, :4].astype(np.float32)
320
+ cls_part = preds[:, 4:].astype(np.float32)
321
+
322
+ if cls_part.shape[1] == 1:
323
+ scores = cls_part[:, 0]
324
+ cls_ids = np.zeros(len(scores), dtype=np.int32)
325
+ else:
326
+ cls_ids = np.argmax(cls_part, axis=1).astype(np.int32)
327
+ scores = cls_part[np.arange(len(cls_part)), cls_ids]
328
+
329
+ keep = scores >= self.conf_thres
330
+ boxes_xywh = boxes_xywh[keep]
331
+ scores = scores[keep]
332
+ cls_ids = cls_ids[keep]
333
+
334
+ if len(boxes_xywh) == 0:
335
+ return []
336
+
337
+ boxes = self._xywh_to_xyxy(boxes_xywh)
338
+ keep_idx, scores = self._soft_nms(boxes, scores)
339
+ keep_idx = keep_idx[: self.max_det]
340
+ scores = scores[: self.max_det]
341
+
342
+ boxes = boxes[keep_idx]
343
+ cls_ids = cls_ids[keep_idx]
344
+
345
+ pad_w, pad_h = pad
346
+ orig_w, orig_h = orig_size
347
+
348
+ boxes[:, [0, 2]] -= pad_w
349
+ boxes[:, [1, 3]] -= pad_h
350
+ boxes /= ratio
351
+ boxes = self._clip_boxes(boxes, (orig_w, orig_h))
352
+
353
+ results: list[BoundingBox] = []
354
+ for box, conf, cls_id in zip(boxes, scores, cls_ids):
355
+ x1, y1, x2, y2 = box.tolist()
356
+
357
+ if x2 <= x1 or y2 <= y1:
358
+ continue
359
+
360
+ results.append(
361
+ BoundingBox(
362
+ x1=int(math.floor(x1)),
363
+ y1=int(math.floor(y1)),
364
+ x2=int(math.ceil(x2)),
365
+ y2=int(math.ceil(y2)),
366
+ cls_id=int(cls_id),
367
+ conf=float(conf),
368
+ )
369
+ )
370
+
371
+ return results
372
+
373
+ def _postprocess(
374
+ self,
375
+ output: np.ndarray,
376
+ ratio: float,
377
+ pad: tuple[float, float],
378
+ orig_size: tuple[int, int],
379
+ ) -> list[BoundingBox]:
380
+ """
381
+ Prefer final detections first.
382
+ Fallback to raw decode only if needed.
383
+ """
384
+ # final detections: [N,6]
385
+ if output.ndim == 2 and output.shape[1] >= 6:
386
+ return self._decode_final_dets(output, ratio, pad, orig_size)
387
+
388
+ # final detections: [1,N,6]
389
+ if output.ndim == 3 and output.shape[0] == 1 and output.shape[2] == 6:
390
+ return self._decode_final_dets(output, ratio, pad, orig_size)
391
+
392
+ # fallback raw decode
393
+ return self._decode_raw_yolo(output, ratio, pad, orig_size)
394
+
395
+ def _predict_single(self, image: np.ndarray) -> list[BoundingBox]:
396
+ if image is None:
397
+ raise ValueError("Input image is None")
398
+ if not isinstance(image, np.ndarray):
399
+ raise TypeError(f"Input is not numpy array: {type(image)}")
400
+ if image.ndim != 3:
401
+ raise ValueError(f"Expected HWC image, got shape={image.shape}")
402
+ if image.shape[0] <= 0 or image.shape[1] <= 0:
403
+ raise ValueError(f"Invalid image shape={image.shape}")
404
+ if image.shape[2] != 3:
405
+ raise ValueError(f"Expected 3 channels, got shape={image.shape}")
406
+
407
+ if image.dtype != np.uint8:
408
+ image = image.astype(np.uint8)
409
+
410
+ input_tensor, ratio, pad, orig_size = self._preprocess(image)
411
+
412
+ expected_shape = (1, 3, self.input_height, self.input_width)
413
+ if input_tensor.shape != expected_shape:
414
+ raise ValueError(
415
+ f"Bad input tensor shape={input_tensor.shape}, expected={expected_shape}"
416
+ )
417
+
418
+ outputs = self.session.run(self.output_names, {self.input_name: input_tensor})
419
+ det_output = outputs[0]
420
+ return self._postprocess(det_output, ratio, pad, orig_size)
421
+
422
+ def _predict_tta(self, image: np.ndarray) -> list[BoundingBox]:
423
+ """Horizontal-flip TTA: run inference on original + flipped, merge with Soft-NMS."""
424
+ boxes_orig = self._predict_single(image)
425
+
426
+ flipped = cv2.flip(image, 1)
427
+ boxes_flip = self._predict_single(flipped)
428
+
429
+ w = image.shape[1]
430
+ boxes_flip = [
431
+ BoundingBox(
432
+ x1=w - b.x2, y1=b.y1, x2=w - b.x1, y2=b.y2,
433
+ cls_id=b.cls_id, conf=b.conf,
434
+ )
435
+ for b in boxes_flip
436
+ ]
437
+
438
+ all_boxes = boxes_orig + boxes_flip
439
+ if len(all_boxes) == 0:
440
+ return []
441
+
442
+ coords = np.array(
443
+ [[b.x1, b.y1, b.x2, b.y2] for b in all_boxes], dtype=np.float32
444
+ )
445
+ scores = np.array([b.conf for b in all_boxes], dtype=np.float32)
446
+
447
+ keep_idx, updated_scores = self._soft_nms(coords, scores)
448
+
449
+ return [
450
+ BoundingBox(
451
+ x1=all_boxes[i].x1, y1=all_boxes[i].y1,
452
+ x2=all_boxes[i].x2, y2=all_boxes[i].y2,
453
+ cls_id=all_boxes[i].cls_id, conf=float(s),
454
+ )
455
+ for i, s in zip(keep_idx, updated_scores)
456
+ ]
457
+
458
+ def predict_batch(
459
+ self,
460
+ batch_images: list[ndarray],
461
+ offset: int,
462
+ n_keypoints: int,
463
+ ) -> list[TVFrameResult]:
464
+ results: list[TVFrameResult] = []
465
+
466
+ for frame_number_in_batch, image in enumerate(batch_images):
467
+ try:
468
+ if self.use_tta:
469
+ boxes = self._predict_tta(image)
470
+ else:
471
+ boxes = self._predict_single(image)
472
+ except Exception as e:
473
+ print(f"⚠️ Inference failed for frame {offset + frame_number_in_batch}: {e}")
474
+ boxes = []
475
+
476
+ results.append(
477
+ TVFrameResult(
478
+ frame_id=offset + frame_number_in_batch,
479
+ boxes=boxes,
480
+ keypoints=[(0, 0) for _ in range(max(0, int(n_keypoints)))],
481
+ )
482
+ )
483
+
484
+ return results
weights.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39f67504790c615b8feca1eaa46c6152e3b113bb2ca671f15f6fedd7b4a61d1c
3
+ size 19405465