commit 5cb1f8cf10f1be38f09206f8d2c18b55eef06461 Author: Lili Hacika Putri Date: Mon Jul 27 11:15:54 2026 +0700 Upload project smart drop point diff --git a/smart-drop-point/.vscode/launch.json b/smart-drop-point/.vscode/launch.json new file mode 100644 index 0000000..2ba986f --- /dev/null +++ b/smart-drop-point/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "chrome", + "request": "launch", + "name": "Launch Chrome against localhost", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file diff --git a/smart-drop-point/assets/style.css b/smart-drop-point/assets/style.css new file mode 100644 index 0000000..1cf929f --- /dev/null +++ b/smart-drop-point/assets/style.css @@ -0,0 +1,141 @@ +:root{ + --bg: #0b1220; + --panel: rgba(255,255,255,.06); + --panel2: rgba(255,255,255,.08); + --border: rgba(255,255,255,.12); + --text: rgba(255,255,255,.92); + --muted: rgba(255,255,255,.70); + --accent: #7c3aed; +} + +body{ + background: radial-gradient(1200px 700px at 10% 10%, rgba(124,58,237,.35), transparent 60%), + radial-gradient(900px 600px at 90% 20%, rgba(34,197,94,.22), transparent 55%), + var(--bg); + color: var(--text); +} + +.app{ display:flex; min-height:100vh; } + +.sidebar{ + width: 280px; + padding: 18px; + background: rgba(255,255,255,.04); + border-right: 1px solid var(--border); + backdrop-filter: blur(14px); +} + +.brand{ display:flex; gap:12px; align-items:center; } +.brand-badge{ + width:44px; height:44px; border-radius:14px; + display:grid; place-items:center; + background: linear-gradient(135deg, rgba(124,58,237,.9), rgba(34,197,94,.7)); + box-shadow: 0 10px 30px rgba(0,0,0,.25); +} +.brand-title{ font-weight:800; letter-spacing:.3px; } +.brand-sub{ color: var(--muted); font-size:.86rem; margin-top:-2px; } + +.nav-link{ + color: var(--muted); + border-radius: 14px; + padding: 10px 12px; + margin-bottom: 6px; + border: 1px solid transparent; +} +.nav-link:hover{ + color: var(--text); + background: var(--panel); + border-color: var(--border); +} +.nav-link.active{ + color: var(--text); + background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(34,197,94,.12)); + border-color: rgba(124,58,237,.25); +} + +.nav-divider{ height:1px; background: var(--border); margin: 10px 0; } + +.sidebar-footer{ + margin-top: auto; + padding-top: 14px; + border-top: 1px solid var(--border); +} + +.main{ flex:1; display:flex; flex-direction:column; } +.topbar{ + display:flex; justify-content:space-between; align-items:center; + padding: 18px 22px; +} +.topbar-pill{ + display:inline-flex; align-items:center; gap:8px; + padding: 8px 12px; + border-radius: 999px; + background: var(--panel); + border: 1px solid var(--border); + color: var(--muted); +} +.topbar-user{ display:flex; gap:10px; align-items:center; } +.avatar{ + width:38px; height:38px; border-radius: 14px; + display:grid; place-items:center; + background: var(--panel2); + border:1px solid var(--border); + font-weight:700; +} + +.content{ padding: 0 22px 28px; } +.card-glass{ + background: var(--panel); + border: 1px solid var(--border); + border-radius: 18px; + backdrop-filter: blur(14px); + box-shadow: 0 20px 55px rgba(0,0,0,.25); +} + +.form-control, .form-select{ + background: rgba(255,255,255,.05) !important; + border: 1px solid var(--border) !important; + color: var(--text) !important; + border-radius: 14px !important; +} +.form-control::placeholder{ color: rgba(255,255,255,.45); } +.btn-accent{ + background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(34,197,94,.75)); + border: none; + border-radius: 14px; +} + +/* ========================================================= + FIX TABLE TEXT (BIAR TULISANNYA GA GELAP) + ========================================================= */ +.table{ + color: var(--text) !important; +} +.table thead th{ + color: rgba(255,255,255,.90) !important; + border-bottom-color: var(--border) !important; +} +.table td, .table th{ + border-top-color: var(--border) !important; + color: rgba(255,255,255,.90) !important; +} + +/* bootstrap kadang bikin .text-muted jadi gelap */ +.text-muted{ + color: rgba(255,255,255,.78) !important; +} + +/* hover biar makin jelas */ +.table-hover tbody tr:hover td, +.table-hover tbody tr:hover th{ + color: rgba(255,255,255,1) !important; +} + +/* supaya baris table-dark ga override warna */ +.table-dark{ + --bs-table-color: rgba(255,255,255,.90); + --bs-table-bg: transparent; + --bs-table-border-color: rgba(255,255,255,.12); + --bs-table-hover-color: #fff; + --bs-table-hover-bg: rgba(255,255,255,.06); +} \ No newline at end of file diff --git a/smart-drop-point/config/db.php b/smart-drop-point/config/db.php new file mode 100644 index 0000000..5565a1c --- /dev/null +++ b/smart-drop-point/config/db.php @@ -0,0 +1,31 @@ +connect_error) { + + die("Koneksi DB gagal: " . $conn->connect_error); +} + +// ======================= +// UTF8 +// ======================= +$conn->set_charset("utf8mb4"); + +?> \ No newline at end of file diff --git a/smart-drop-point/index.php b/smart-drop-point/index.php new file mode 100644 index 0000000..2c3d37f --- /dev/null +++ b/smart-drop-point/index.php @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/smart-drop-point/partials/footer.php b/smart-drop-point/partials/footer.php new file mode 100644 index 0000000..8fb92c8 --- /dev/null +++ b/smart-drop-point/partials/footer.php @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/smart-drop-point/partials/header.php b/smart-drop-point/partials/header.php new file mode 100644 index 0000000..da64350 --- /dev/null +++ b/smart-drop-point/partials/header.php @@ -0,0 +1,13 @@ + + + + + + Smart Drop Point + + + + + + +
\ No newline at end of file diff --git a/smart-drop-point/partials/sidebar.php b/smart-drop-point/partials/sidebar.php new file mode 100644 index 0000000..dd980b6 --- /dev/null +++ b/smart-drop-point/partials/sidebar.php @@ -0,0 +1,65 @@ + + + + +
+
+
+
+ +
+
+
TA
+
+
Monitoring
+
ESP32-CAM + Barcode
+
+
+
+
+ +
\ No newline at end of file diff --git a/smart-drop-point/public/#include esp_camera.h.txt b/smart-drop-point/public/#include esp_camera.h.txt new file mode 100644 index 0000000..d3cbab9 --- /dev/null +++ b/smart-drop-point/public/#include esp_camera.h.txt @@ -0,0 +1,338 @@ +#include "esp_camera.h" +#include +#include + +// ======================= +// WIFI +// ======================= +const char* ssid = "P nyoman"; +const char* password = "123456789"; + +// ======================= +// SERVER +// ======================= +const char* serverHost = "192.168.1.5"; +const int serverPort = 80; +const char* serverPath = "/smart-drop-point/public/api/upload_cam.php"; + +// ======================= +// RELAY + LED +// ======================= +#define RELAY_PIN 13 +#define LED_MERAH 12 +#define LED_HIJAU 14 + +// ======================= +// AI THINKER CAMERA PIN +// ======================= +#define PWDN_GPIO_NUM 32 +#define RESET_GPIO_NUM -1 +#define XCLK_GPIO_NUM 0 +#define SIOD_GPIO_NUM 26 +#define SIOC_GPIO_NUM 27 + +#define Y9_GPIO_NUM 35 +#define Y8_GPIO_NUM 34 +#define Y7_GPIO_NUM 39 +#define Y6_GPIO_NUM 36 +#define Y5_GPIO_NUM 21 +#define Y4_GPIO_NUM 19 +#define Y3_GPIO_NUM 18 +#define Y2_GPIO_NUM 5 +#define VSYNC_GPIO_NUM 25 +#define HREF_GPIO_NUM 23 +#define PCLK_GPIO_NUM 22 + +// ======================= +// CAMERA INIT +// ======================= +bool initCamera() { + + camera_config_t config; + + config.ledc_channel = LEDC_CHANNEL_0; + config.ledc_timer = LEDC_TIMER_0; + + config.pin_d0 = Y2_GPIO_NUM; + config.pin_d1 = Y3_GPIO_NUM; + config.pin_d2 = Y4_GPIO_NUM; + config.pin_d3 = Y5_GPIO_NUM; + config.pin_d4 = Y6_GPIO_NUM; + config.pin_d5 = Y7_GPIO_NUM; + config.pin_d6 = Y8_GPIO_NUM; + config.pin_d7 = Y9_GPIO_NUM; + + config.pin_xclk = XCLK_GPIO_NUM; + config.pin_pclk = PCLK_GPIO_NUM; + config.pin_vsync = VSYNC_GPIO_NUM; + config.pin_href = HREF_GPIO_NUM; + + config.pin_sccb_sda = SIOD_GPIO_NUM; + config.pin_sccb_scl = SIOC_GPIO_NUM; + + config.pin_pwdn = PWDN_GPIO_NUM; + config.pin_reset = RESET_GPIO_NUM; + + config.xclk_freq_hz = 20000000; + config.pixel_format = PIXFORMAT_JPEG; + + config.frame_size = FRAMESIZE_QVGA; + config.jpeg_quality = 15; + config.fb_count = 1; + + esp_err_t err = esp_camera_init(&config); + + if (err != ESP_OK) { + + Serial.printf("Camera init gagal: 0x%x\n", err); + + return false; + } + + Serial.println("Camera OK"); + + return true; +} + +// ======================= +// WIFI CONNECT +// ======================= +bool connectWiFi() { + + Serial.println("CONNECT WIFI"); + + WiFi.begin(ssid, password); + + int retry = 0; + + while (WiFi.status() != WL_CONNECTED && retry < 30) { + + delay(500); + Serial.print("."); + + retry++; + } + + Serial.println(); + + if (WiFi.status() == WL_CONNECTED) { + + Serial.println("WiFi Connected"); + Serial.println(WiFi.localIP()); + + return true; + } + + Serial.println("WiFi gagal"); + + return false; +} + +// ======================= +// CAPTURE FOTO +// ======================= +camera_fb_t* capturePhoto() { + + Serial.println("CAPTURE FOTO"); + + camera_fb_t *fb = esp_camera_fb_get(); + + if (!fb) { + + Serial.println("Capture gagal"); + + return NULL; + } + + Serial.println("Foto berhasil"); + + return fb; +} + +// ======================= +// UPLOAD FOTO +// ======================= +String uploadPhoto(camera_fb_t *fb) { + + Serial.println("UPLOAD FOTO"); + + WiFiClient client; + + if (!client.connect(serverHost, serverPort)) { + + Serial.println("Server gagal connect"); + + return "CONNECT_FAILED"; + } + + String boundary = "----ESP32CAM"; + + String head = ""; + head += "--" + boundary + "\r\n"; + head += "Content-Disposition: form-data; name=\"foto\"; filename=\"capture.jpg\"\r\n"; + head += "Content-Type: image/jpeg\r\n\r\n"; + + String tail = "\r\n--" + boundary + "--\r\n"; + + uint32_t contentLength = + head.length() + + fb->len + + tail.length(); + + client.print( + String("POST ") + + serverPath + + " HTTP/1.1\r\n" + ); + + client.print( + String("Host: ") + + serverHost + + "\r\n" + ); + + client.print("Connection: close\r\n"); + + client.print( + String("Content-Type: multipart/form-data; boundary=") + + boundary + + "\r\n" + ); + + client.print( + String("Content-Length: ") + + contentLength + + "\r\n\r\n" + ); + + client.print(head); + + client.write(fb->buf, fb->len); + + client.print(tail); + + String response = ""; + + unsigned long timeout = millis(); + + while (millis() - timeout < 10000) { + + while (client.available()) { + + char c = client.read(); + + response += c; + + timeout = millis(); + } + + if (!client.connected()) { + break; + } + + delay(10); + } + + client.stop(); + + Serial.println("RESPONSE:"); + Serial.println(response); + + return response; +} + +// ======================= +// SETUP +// ======================= +void setup() { + + Serial.begin(115200); + + delay(2000); + + // ======================= + // PIN MODE + // ======================= + pinMode(RELAY_PIN, OUTPUT); + pinMode(LED_MERAH, OUTPUT); + pinMode(LED_HIJAU, OUTPUT); + + // ======================= + // AWAL TERKUNCI + // ======================= + digitalWrite(RELAY_PIN, HIGH); + + digitalWrite(LED_MERAH, LOW); + digitalWrite(LED_HIJAU, LOW); + + Serial.println("ESP32 START"); + + // ======================= + // CAMERA + // ======================= + if (!initCamera()) { + return; + } + + // ======================= + // WIFI + // ======================= + if (!connectWiFi()) { + return; + } + + // ======================= + // FOTO + // ======================= + camera_fb_t *fb = capturePhoto(); + + if (!fb) { + return; + } + + // ======================= + // UPLOAD + // ======================= + String response = uploadPhoto(fb); + + esp_camera_fb_return(fb); + + // ======================= + // CEK VALID + // ======================= + if (response.indexOf("VALID") >= 0) { + + Serial.println("RESI VALID"); + + digitalWrite(LED_HIJAU, HIGH); + digitalWrite(LED_MERAH, LOW); + + // BUKA SOLENOID + digitalWrite(RELAY_PIN, LOW); + + delay(5000); + + // KUNCI LAGI + digitalWrite(RELAY_PIN, HIGH); + + digitalWrite(LED_HIJAU, LOW); + + } else { + + Serial.println("RESI TIDAK VALID"); + + digitalWrite(LED_MERAH, HIGH); + + delay(3000); + + digitalWrite(LED_MERAH, LOW); + + digitalWrite(RELAY_PIN, HIGH); + } + + Serial.println("SELESAI"); +} + +void loop() { + +} \ No newline at end of file diff --git a/smart-drop-point/public/api/debug.txt b/smart-drop-point/public/api/debug.txt new file mode 100644 index 0000000..dddea33 --- /dev/null +++ b/smart-drop-point/public/api/debug.txt @@ -0,0 +1,1864 @@ +08:49:52 - REQUEST MASUK +08:49:52 - FILE FOTO TERDETEKSI +08:49:52 - FILE BERHASIL DISIMPAN +08:49:52 - ZBAR DITEMUKAN +08:49:52 - JALANKAN ZBAR +08:49:52 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +08:49:52 - LOG BERHASIL DISIMPAN +08:49:52 - KIRIM RESPONSE JSON +08:49:52 - SELESAI +08:51:14 - REQUEST MASUK +08:51:14 - FILE FOTO TERDETEKSI +08:51:14 - UPLOAD ERROR: 3 +08:56:08 - REQUEST MASUK +08:56:08 - FILE FOTO TERDETEKSI +08:56:08 - UPLOAD ERROR: 3 +09:01:17 - REQUEST MASUK +09:01:17 - FILE FOTO TERDETEKSI +09:01:17 - FILE BERHASIL DISIMPAN +09:01:17 - ZBAR DITEMUKAN +09:01:17 - JALANKAN ZBAR +09:01:17 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +09:01:17 - LOG BERHASIL DISIMPAN +09:01:17 - KIRIM RESPONSE JSON +09:01:17 - SELESAI +09:09:32 - REQUEST MASUK +09:09:32 - FILE FOTO TERDETEKSI +09:09:32 - UPLOAD ERROR: 3 +18:04:21 - REQUEST MASUK +18:04:21 - FILE FOTO TERDETEKSI +18:04:21 - UPLOAD ERROR: 3 +18:07:56 - REQUEST MASUK +18:07:56 - FILE FOTO TIDAK ADA +18:15:44 - REQUEST MASUK +18:15:44 - FILE FOTO TIDAK ADA +18:25:18 - REQUEST MASUK +18:25:18 - FILE FOTO TERDETEKSI +18:25:18 - UPLOAD ERROR: 3 +18:25:26 - REQUEST MASUK +18:25:26 - FILE FOTO TERDETEKSI +18:25:26 - UPLOAD ERROR: 3 +18:26:38 - REQUEST MASUK +18:26:38 - FILE FOTO TIDAK ADA +18:26:40 - REQUEST MASUK +18:26:40 - FILE FOTO TIDAK ADA +18:29:57 - REQUEST MASUK +18:29:57 - FILE FOTO TERDETEKSI +18:29:57 - UPLOAD ERROR: 3 +18:44:43 - REQUEST MASUK +18:44:43 - FILE FOTO TERDETEKSI +18:44:43 - FILE BERHASIL DISIMPAN +18:44:43 - ZBAR DITEMUKAN +18:44:43 - JALANKAN ZBAR +18:44:44 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:44:44 - ZBAR GAGAL -> COBA OCR +18:44:44 - JALANKAN OCR +18:44:45 - HASIL OCR: Estimating resolution as 547 + +18:44:45 - OCR BERHASIL BACA RESI: ESTIMATING +18:44:45 - CEK RESI DATABASE +18:44:45 - RESI TIDAK TERDAFTAR +18:44:45 - LOG BERHASIL DISIMPAN +18:44:45 - KIRIM RESPONSE JSON +18:44:45 - SELESAI +18:51:22 - REQUEST MASUK +18:51:22 - FILE FOTO TIDAK ADA +08:41:35 - REQUEST MASUK +08:41:35 - FILE FOTO TERDETEKSI +08:41:35 - FILE BERHASIL DISIMPAN +08:41:35 - ZBAR DITEMUKAN +08:41:35 - JALANKAN ZBAR +08:41:35 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +08:41:35 - ZBAR GAGAL -> COBA OCR +08:41:35 - JALANKAN OCR +08:41:37 - HASIL OCR: Corrupt JPEG data: 6397 extraneous bytes before marker 0xd9 + +08:41:37 - OCR TIDAK MENEMUKAN ANGKA RESI +08:41:37 - LOG BERHASIL DISIMPAN +08:41:37 - KIRIM RESPONSE JSON +08:41:37 - SELESAI +08:43:13 - REQUEST MASUK +08:43:13 - FILE FOTO TERDETEKSI +08:43:13 - FILE BERHASIL DISIMPAN +08:43:13 - ZBAR DITEMUKAN +08:43:13 - JALANKAN ZBAR +08:43:13 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +08:43:13 - ZBAR GAGAL -> COBA OCR +08:43:13 - JALANKAN OCR +08:43:13 - HASIL OCR: Estimating resolution as 571 + +08:43:13 - OCR TIDAK MENEMUKAN ANGKA RESI +08:43:13 - LOG BERHASIL DISIMPAN +08:43:13 - KIRIM RESPONSE JSON +08:43:13 - SELESAI +08:48:00 - REQUEST MASUK +08:48:00 - FILE FOTO TERDETEKSI +08:48:00 - FILE BERHASIL DISIMPAN +08:48:00 - ZBAR DITEMUKAN +08:48:00 - JALANKAN ZBAR +08:48:00 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +08:48:00 - ZBAR GAGAL -> COBA OCR +08:48:00 - JALANKAN OCR +08:48:03 - HASIL OCR: Estimating resolution as 555 + +08:48:03 - OCR TIDAK MENEMUKAN RESI +08:48:03 - LOG BERHASIL DISIMPAN +08:48:03 - KIRIM RESPONSE JSON +08:48:03 - SELESAI +08:57:35 - REQUEST MASUK +08:57:35 - FILE FOTO TIDAK ADA +16:57:17 - REQUEST MASUK +16:57:17 - FILE FOTO TERDETEKSI +16:57:17 - FILE BERHASIL DISIMPAN +16:57:17 - ZBAR DITEMUKAN +16:57:17 - JALANKAN ZBAR +16:57:17 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +16:57:17 - ZBAR GAGAL -> COBA OCR +16:57:17 - JALANKAN OCR +16:57:18 - HASIL OCR ASLI: i + +Corrupt JPEG data: 6617 extraneous bytes before marker 0xd9 +Estimating resolution as 616 + +16:57:18 - HASIL OCR BERSIH: I CORRUPT JPEG DATA 6617 EXTRANEOUS BYTES BEFORE MARKER 0XD9 ESTIMATING RESOLUTION AS 616 +16:57:18 - OCR BERHASIL BACA RESI: EXTRANEOUS +16:57:18 - CEK RESI DATABASE +16:57:18 - RESI TIDAK TERDAFTAR +16:57:18 - LOG BERHASIL DISIMPAN +16:57:18 - KIRIM RESPONSE JSON +16:57:18 - SELESAI +17:07:51 - REQUEST MASUK +17:07:51 - FILE FOTO TIDAK ADA +19:19:12 - REQUEST MASUK +19:19:12 - FILE FOTO TERDETEKSI +19:19:12 - FILE BERHASIL DISIMPAN +19:19:12 - ZBAR DITEMUKAN +19:19:12 - JALANKAN ZBAR +19:19:12 - HASIL ZBAR: CODE-128:JX7733615817 +scanned 1 barcode symbols from 1 images + +19:19:12 - BARCODE CODE128 TERBACA: JX7733615817 +19:19:12 - CEK RESI DATABASE +19:19:12 - RESI VALID +19:19:12 - LOG BERHASIL DISIMPAN +19:19:12 - KIRIM RESPONSE JSON +19:19:12 - SELESAI +08:10:10 - REQUEST MASUK +08:10:10 - FILE FOTO TERDETEKSI +08:10:10 - FILE BERHASIL DISIMPAN +08:10:10 - ZBAR DITEMUKAN +08:10:10 - JALANKAN ZBAR +08:10:11 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +08:10:11 - ZBAR GAGAL -> COBA OCR +08:10:11 - JALANKAN OCR +08:10:12 - HASIL OCR ASLI: Estimating resolution as 234 + +08:10:12 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 234 +08:10:12 - OCR BERHASIL BACA RESI: ESTIMATING +08:10:12 - CEK RESI DATABASE +08:10:12 - RESI TIDAK TERDAFTAR +08:10:12 - LOG BERHASIL DISIMPAN +08:10:12 - KIRIM RESPONSE JSON +08:10:12 - SELESAI +08:13:54 - REQUEST MASUK +08:13:54 - FILE FOTO TERDETEKSI +08:13:54 - FILE BERHASIL DISIMPAN +08:13:54 - ZBAR DITEMUKAN +08:13:54 - JALANKAN ZBAR +08:13:54 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +08:13:54 - ZBAR GAGAL -> COBA OCR +08:13:54 - JALANKAN OCR +08:13:54 - HASIL OCR ASLI: eo + +Estimating resolution as 234 + +08:13:54 - HASIL OCR BERSIH: EO ESTIMATING RESOLUTION AS 234 +08:13:54 - OCR BERHASIL BACA RESI: ESTIMATING +08:13:54 - CEK RESI DATABASE +08:13:54 - RESI TIDAK TERDAFTAR +08:13:54 - LOG BERHASIL DISIMPAN +08:13:54 - KIRIM RESPONSE JSON +08:13:54 - SELESAI +08:16:33 - REQUEST MASUK +08:16:33 - FILE FOTO TERDETEKSI +08:16:33 - FILE BERHASIL DISIMPAN +08:16:33 - ZBAR DITEMUKAN +08:16:33 - JALANKAN ZBAR +08:16:33 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +08:16:33 - ZBAR GAGAL -> COBA OCR +08:16:33 - JALANKAN OCR +08:16:33 - HASIL OCR ASLI: . i TM) +Estimating resolution as 581 +Detected 13 diacritics + +08:16:33 - HASIL OCR BERSIH: I TM ESTIMATING RESOLUTION AS 581 DETECTED 13 DIACRITICS +08:16:33 - OCR BERHASIL BACA RESI: ESTIMATING +08:16:33 - CEK RESI DATABASE +08:16:33 - RESI TIDAK TERDAFTAR +08:16:33 - LOG BERHASIL DISIMPAN +08:16:33 - KIRIM RESPONSE JSON +08:16:33 - SELESAI +08:20:58 - REQUEST MASUK +08:20:58 - FILE FOTO TERDETEKSI +08:20:58 - UPLOAD ERROR: 3 +08:21:26 - REQUEST MASUK +08:21:26 - FILE FOTO TERDETEKSI +08:21:26 - FILE BERHASIL DISIMPAN +08:21:26 - ZBAR DITEMUKAN +08:21:26 - JALANKAN ZBAR +08:21:26 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +08:21:26 - ZBAR GAGAL -> COBA OCR +08:21:26 - JALANKAN OCR +08:21:26 - HASIL OCR ASLI: Estimating resolution as 723 + +08:21:26 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 723 +08:21:26 - OCR BERHASIL BACA RESI: ESTIMATING +08:21:26 - CEK RESI DATABASE +08:21:26 - RESI TIDAK TERDAFTAR +08:21:26 - LOG BERHASIL DISIMPAN +08:21:26 - KIRIM RESPONSE JSON +08:21:26 - SELESAI +08:24:15 - REQUEST MASUK +08:24:15 - FILE FOTO TERDETEKSI +08:24:15 - FILE BERHASIL DISIMPAN +08:24:15 - ZBAR DITEMUKAN +08:24:15 - JALANKAN ZBAR +08:24:15 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +08:24:15 - ZBAR GAGAL -> COBA OCR +08:24:15 - JALANKAN OCR +08:24:16 - HASIL OCR ASLI: Estimating resolution as 569 + +08:24:16 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 569 +08:24:16 - OCR BERHASIL BACA RESI: ESTIMATING +08:24:16 - CEK RESI DATABASE +08:24:16 - RESI TIDAK TERDAFTAR +08:24:16 - LOG BERHASIL DISIMPAN +08:24:16 - KIRIM RESPONSE JSON +08:24:16 - SELESAI +08:29:15 - REQUEST MASUK +08:29:15 - FILE FOTO TERDETEKSI +08:29:15 - FILE BERHASIL DISIMPAN +08:29:15 - ZBAR DITEMUKAN +08:29:15 - JALANKAN ZBAR +08:29:15 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +08:29:15 - ZBAR GAGAL -> COBA OCR +08:29:15 - JALANKAN OCR +08:29:15 - HASIL OCR ASLI: Estimating resolution as 459 + +08:29:15 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 459 +08:29:15 - OCR BERHASIL BACA RESI: ESTIMATING +08:29:15 - CEK RESI DATABASE +08:29:15 - RESI TIDAK TERDAFTAR +08:29:15 - LOG BERHASIL DISIMPAN +08:29:15 - KIRIM RESPONSE JSON +08:29:15 - SELESAI +08:34:46 - REQUEST MASUK +08:34:46 - FILE FOTO TERDETEKSI +08:34:46 - FILE BERHASIL DISIMPAN +08:34:46 - ZBAR DITEMUKAN +08:34:46 - JALANKAN ZBAR +08:34:46 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +08:34:46 - ZBAR GAGAL -> COBA OCR +08:34:46 - JALANKAN OCR +08:34:46 - HASIL OCR ASLI: Estimating resolution as 419 + +08:34:46 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 419 +08:34:46 - OCR BERHASIL BACA RESI: ESTIMATING +08:34:46 - CEK RESI DATABASE +08:34:46 - RESI TIDAK TERDAFTAR +08:34:46 - LOG BERHASIL DISIMPAN +08:34:46 - KIRIM RESPONSE JSON +08:34:46 - SELESAI +17:38:36 - REQUEST MASUK +17:38:36 - FILE FOTO TERDETEKSI +17:38:36 - UPLOAD ERROR: 3 +17:40:30 - REQUEST MASUK +17:40:30 - FILE FOTO TERDETEKSI +17:40:30 - UPLOAD ERROR: 3 +17:57:57 - REQUEST MASUK +17:57:57 - FILE FOTO TERDETEKSI +17:57:57 - FILE BERHASIL DISIMPAN +17:57:57 - ZBAR DITEMUKAN +17:57:57 - JALANKAN ZBAR +17:57:57 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +17:57:58 - ZBAR GAGAL -> COBA OCR +17:57:58 - JALANKAN OCR +17:58:00 - HASIL OCR ASLI: ' 3 +4 mm ‘ i : + +Corrupt JPEG data: 4515 extraneous bytes before marker 0xd9 +Estimating resolution as 393 +Detected 29 diacritics + +17:58:00 - HASIL OCR BERSIH: 3 4 MM I CORRUPT JPEG DATA 4515 EXTRANEOUS BYTES BEFORE MARKER 0XD9 ESTIMATING RESOLUTION AS 393 DETECTED 29 DIACRITICS +17:58:00 - OCR BERHASIL BACA RESI: EXTRANEOUS +17:58:00 - CEK RESI DATABASE +17:58:00 - RESI TIDAK TERDAFTAR +17:58:00 - LOG BERHASIL DISIMPAN +17:58:00 - KIRIM RESPONSE JSON +17:58:00 - SELESAI +18:18:38 - REQUEST MASUK +18:18:38 - FILE FOTO TERDETEKSI +18:18:38 - FILE BERHASIL DISIMPAN +18:18:38 - ZBAR DITEMUKAN +18:18:38 - JALANKAN ZBAR +18:18:39 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:18:39 - ZBAR GAGAL -> COBA OCR +18:18:39 - JALANKAN OCR +18:18:40 - HASIL OCR ASLI: Estimating resolution as 100 + +18:18:40 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 100 +18:18:40 - OCR BERHASIL BACA RESI: ESTIMATING +18:18:40 - CEK RESI DATABASE +18:18:40 - RESI TIDAK TERDAFTAR +18:18:40 - LOG BERHASIL DISIMPAN +18:18:40 - KIRIM RESPONSE JSON +18:18:40 - SELESAI +18:22:06 - REQUEST MASUK +18:22:06 - FILE FOTO TERDETEKSI +18:22:06 - FILE BERHASIL DISIMPAN +18:22:06 - ZBAR DITEMUKAN +18:22:06 - JALANKAN ZBAR +18:22:06 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:22:06 - ZBAR GAGAL -> COBA OCR +18:22:06 - JALANKAN OCR +18:22:07 - HASIL OCR ASLI: Corrupt JPEG data: 4743 extraneous bytes before marker 0xd9 +Estimating resolution as 222 + +18:22:07 - HASIL OCR BERSIH: CORRUPT JPEG DATA 4743 EXTRANEOUS BYTES BEFORE MARKER 0XD9 ESTIMATING RESOLUTION AS 222 +18:22:07 - OCR BERHASIL BACA RESI: EXTRANEOUS +18:22:07 - CEK RESI DATABASE +18:22:07 - RESI TIDAK TERDAFTAR +18:22:07 - LOG BERHASIL DISIMPAN +18:22:07 - KIRIM RESPONSE JSON +18:22:07 - SELESAI +18:22:18 - REQUEST MASUK +18:22:18 - FILE FOTO TERDETEKSI +18:22:18 - UPLOAD ERROR: 3 +18:24:15 - REQUEST MASUK +18:24:15 - FILE FOTO TERDETEKSI +18:24:15 - FILE BERHASIL DISIMPAN +18:24:15 - ZBAR DITEMUKAN +18:24:15 - JALANKAN ZBAR +18:24:16 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:24:16 - ZBAR GAGAL -> COBA OCR +18:24:16 - JALANKAN OCR +18:24:16 - HASIL OCR ASLI: Tn) + +Estimating resolution as 556 + +18:24:16 - HASIL OCR BERSIH: TN ESTIMATING RESOLUTION AS 556 +18:24:16 - OCR BERHASIL BACA RESI: ESTIMATING +18:24:16 - CEK RESI DATABASE +18:24:16 - RESI TIDAK TERDAFTAR +18:24:16 - LOG BERHASIL DISIMPAN +18:24:16 - KIRIM RESPONSE JSON +18:24:16 - SELESAI +18:27:57 - REQUEST MASUK +18:27:57 - FILE FOTO TERDETEKSI +18:27:57 - FILE BERHASIL DISIMPAN +18:27:57 - ZBAR DITEMUKAN +18:27:57 - JALANKAN ZBAR +18:27:57 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:27:57 - ZBAR GAGAL -> COBA OCR +18:27:57 - JALANKAN OCR +18:27:58 - HASIL OCR ASLI: = ‘ + +i + +aie + +Estimating resolution as 793 + +18:27:58 - HASIL OCR BERSIH: I AIE ESTIMATING RESOLUTION AS 793 +18:27:58 - OCR BERHASIL BACA RESI: ESTIMATING +18:27:58 - CEK RESI DATABASE +18:27:58 - RESI TIDAK TERDAFTAR +18:27:58 - LOG BERHASIL DISIMPAN +18:27:58 - KIRIM RESPONSE JSON +18:27:58 - SELESAI +18:30:10 - REQUEST MASUK +18:30:10 - FILE FOTO TERDETEKSI +18:30:10 - FILE BERHASIL DISIMPAN +18:30:10 - ZBAR DITEMUKAN +18:30:10 - JALANKAN ZBAR +18:30:11 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:30:11 - ZBAR GAGAL -> COBA OCR +18:30:11 - JALANKAN OCR +18:30:11 - HASIL OCR ASLI: Estimating resolution as 1256 + +18:30:11 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 1256 +18:30:11 - OCR BERHASIL BACA RESI: ESTIMATING +18:30:11 - CEK RESI DATABASE +18:30:11 - RESI TIDAK TERDAFTAR +18:30:11 - LOG BERHASIL DISIMPAN +18:30:11 - KIRIM RESPONSE JSON +18:30:11 - SELESAI +18:33:08 - REQUEST MASUK +18:33:08 - FILE FOTO TERDETEKSI +18:33:08 - FILE BERHASIL DISIMPAN +18:33:08 - ZBAR DITEMUKAN +18:33:08 - JALANKAN ZBAR +18:33:08 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:33:08 - ZBAR GAGAL -> COBA OCR +18:33:08 - JALANKAN OCR +18:33:08 - HASIL OCR ASLI: Estimating resolution as 1013 + +18:33:08 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 1013 +18:33:08 - OCR BERHASIL BACA RESI: ESTIMATING +18:33:08 - CEK RESI DATABASE +18:33:08 - RESI TIDAK TERDAFTAR +18:33:08 - LOG BERHASIL DISIMPAN +18:33:08 - KIRIM RESPONSE JSON +18:33:08 - SELESAI +18:36:52 - REQUEST MASUK +18:36:52 - FILE FOTO TERDETEKSI +18:36:52 - FILE BERHASIL DISIMPAN +18:36:52 - ZBAR DITEMUKAN +18:36:52 - JALANKAN ZBAR +18:36:52 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:36:52 - ZBAR GAGAL -> COBA OCR +18:36:52 - JALANKAN OCR +18:36:52 - HASIL OCR ASLI: Corrupt JPEG data: 4929 extraneous bytes before marker 0xd9 +Estimating resolution as 245 + +18:36:52 - HASIL OCR BERSIH: CORRUPT JPEG DATA 4929 EXTRANEOUS BYTES BEFORE MARKER 0XD9 ESTIMATING RESOLUTION AS 245 +18:36:52 - OCR BERHASIL BACA RESI: EXTRANEOUS +18:36:52 - CEK RESI DATABASE +18:36:52 - RESI TIDAK TERDAFTAR +18:36:52 - LOG BERHASIL DISIMPAN +18:36:52 - KIRIM RESPONSE JSON +18:36:52 - SELESAI +18:39:48 - REQUEST MASUK +18:39:48 - FILE FOTO TERDETEKSI +18:39:48 - FILE BERHASIL DISIMPAN +18:39:48 - ZBAR DITEMUKAN +18:39:48 - JALANKAN ZBAR +18:39:49 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:39:49 - ZBAR GAGAL -> COBA OCR +18:39:49 - JALANKAN OCR +18:39:49 - HASIL OCR ASLI: . + +HV LTA AL +Estimating resolution as 956 + +18:39:49 - HASIL OCR BERSIH: HV LTA AL ESTIMATING RESOLUTION AS 956 +18:39:49 - OCR BERHASIL BACA RESI: ESTIMATING +18:39:49 - CEK RESI DATABASE +18:39:49 - RESI TIDAK TERDAFTAR +18:39:49 - LOG BERHASIL DISIMPAN +18:39:49 - KIRIM RESPONSE JSON +18:39:49 - SELESAI +18:50:26 - REQUEST MASUK +18:50:26 - FILE FOTO TERDETEKSI +18:50:26 - FILE BERHASIL DISIMPAN +18:50:26 - ZBAR DITEMUKAN +18:50:26 - JALANKAN ZBAR +18:50:26 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:50:26 - ZBAR GAGAL -> COBA OCR +18:50:26 - JALANKAN OCR +18:50:27 - HASIL OCR ASLI: Estimating resolution as 1931 + +18:50:27 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 1931 +18:50:27 - OCR BERHASIL BACA RESI: ESTIMATING +18:50:27 - CEK RESI DATABASE +18:50:27 - RESI TIDAK TERDAFTAR +18:50:27 - LOG BERHASIL DISIMPAN +18:50:27 - KIRIM RESPONSE JSON +18:50:27 - SELESAI +18:54:33 - REQUEST MASUK +18:54:33 - FILE FOTO TERDETEKSI +18:54:33 - FILE BERHASIL DISIMPAN +18:54:33 - ZBAR DITEMUKAN +18:54:33 - JALANKAN ZBAR +18:54:33 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:54:33 - ZBAR GAGAL -> COBA OCR +18:54:33 - JALANKAN OCR +18:54:33 - HASIL OCR ASLI: Estimating resolution as 2175 + +18:54:33 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 2175 +18:54:33 - OCR BERHASIL BACA RESI: ESTIMATING +18:54:33 - CEK RESI DATABASE +18:54:33 - RESI TIDAK TERDAFTAR +18:54:33 - LOG BERHASIL DISIMPAN +18:54:33 - KIRIM RESPONSE JSON +18:54:33 - SELESAI +18:58:42 - REQUEST MASUK +18:58:42 - FILE FOTO TERDETEKSI +18:58:42 - UPLOAD ERROR: 3 +19:00:59 - REQUEST MASUK +19:00:59 - FILE FOTO TERDETEKSI +19:00:59 - UPLOAD ERROR: 3 +19:18:00 - REQUEST MASUK +19:18:00 - FILE FOTO TERDETEKSI +19:18:00 - FILE BERHASIL DISIMPAN +19:18:00 - ZBAR DITEMUKAN +19:18:00 - JALANKAN ZBAR +19:18:01 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +19:18:01 - ZBAR GAGAL -> COBA OCR +19:18:01 - JALANKAN OCR +19:18:01 - HASIL OCR ASLI: Estimating resolution as 370 + +19:18:01 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 370 +19:18:01 - OCR BERHASIL BACA RESI: ESTIMATING +19:18:01 - CEK RESI DATABASE +19:18:01 - RESI TIDAK TERDAFTAR +19:18:01 - LOG BERHASIL DISIMPAN +19:18:01 - KIRIM RESPONSE JSON +19:18:01 - SELESAI +19:22:46 - REQUEST MASUK +19:22:46 - FILE FOTO TIDAK ADA +07:14:37 - REQUEST MASUK +07:14:37 - FILE FOTO TERDETEKSI +07:14:37 - FILE BERHASIL DISIMPAN +07:14:37 - ZBAR DITEMUKAN +07:14:37 - JALANKAN ZBAR +07:14:38 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +07:14:38 - ZBAR GAGAL -> COBA OCR +07:14:38 - JALANKAN OCR +07:14:38 - HASIL OCR ASLI: nN + +Estimating resolution as 963 + +07:14:38 - HASIL OCR BERSIH: NN ESTIMATING RESOLUTION AS 963 +07:14:38 - OCR BERHASIL BACA RESI: ESTIMATING +07:14:38 - CEK RESI DATABASE +07:14:38 - RESI TIDAK TERDAFTAR +07:14:38 - LOG BERHASIL DISIMPAN +07:14:38 - KIRIM RESPONSE JSON +07:14:38 - SELESAI +07:19:23 - REQUEST MASUK +07:19:23 - FILE FOTO TERDETEKSI +07:19:23 - FILE BERHASIL DISIMPAN +07:19:23 - ZBAR DITEMUKAN +07:19:23 - JALANKAN ZBAR +07:19:24 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +07:19:24 - ZBAR GAGAL -> COBA OCR +07:19:24 - JALANKAN OCR +07:19:26 - HASIL OCR ASLI: Estimating resolution as 1825 + +07:19:26 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 1825 +07:19:26 - OCR BERHASIL BACA RESI: ESTIMATING +07:19:26 - CEK RESI DATABASE +07:19:26 - RESI TIDAK TERDAFTAR +07:19:26 - LOG BERHASIL DISIMPAN +07:19:26 - KIRIM RESPONSE JSON +07:19:26 - SELESAI +07:26:31 - REQUEST MASUK +07:26:31 - FILE FOTO TERDETEKSI +07:26:31 - FILE BERHASIL DISIMPAN +07:26:31 - ZBAR DITEMUKAN +07:26:31 - JALANKAN ZBAR +07:26:32 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +07:26:32 - ZBAR GAGAL -> COBA OCR +07:26:32 - JALANKAN OCR +07:26:33 - HASIL OCR ASLI: Tt Le : + +Estimating resolution as 972 +Detected 28 diacritics + +07:26:33 - HASIL OCR BERSIH: TT LE ESTIMATING RESOLUTION AS 972 DETECTED 28 DIACRITICS +07:26:33 - OCR BERHASIL BACA RESI: ESTIMATING +07:26:33 - CEK RESI DATABASE +07:26:33 - RESI TIDAK TERDAFTAR +07:26:33 - LOG BERHASIL DISIMPAN +07:26:33 - KIRIM RESPONSE JSON +07:26:33 - SELESAI +07:29:27 - REQUEST MASUK +07:29:27 - FILE FOTO TERDETEKSI +07:29:27 - UPLOAD ERROR: 3 +07:31:03 - REQUEST MASUK +07:31:03 - FILE FOTO TERDETEKSI +07:31:03 - FILE BERHASIL DISIMPAN +07:31:03 - ZBAR DITEMUKAN +07:31:03 - JALANKAN ZBAR +07:31:03 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +07:31:03 - ZBAR GAGAL -> COBA OCR +07:31:03 - JALANKAN OCR +07:31:03 - HASIL OCR ASLI: Estimating resolution as 1092 + +07:31:03 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 1092 +07:31:03 - OCR BERHASIL BACA RESI: ESTIMATING +07:31:03 - CEK RESI DATABASE +07:31:03 - RESI TIDAK TERDAFTAR +07:31:03 - LOG BERHASIL DISIMPAN +07:31:03 - KIRIM RESPONSE JSON +07:31:03 - SELESAI +07:36:30 - REQUEST MASUK +07:36:30 - FILE FOTO TERDETEKSI +07:36:30 - FILE BERHASIL DISIMPAN +07:36:30 - ZBAR DITEMUKAN +07:36:30 - JALANKAN ZBAR +07:36:30 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +07:36:30 - ZBAR GAGAL -> COBA OCR +07:36:30 - JALANKAN OCR +07:36:31 - HASIL OCR ASLI: Estimating resolution as 1047 + +07:36:31 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 1047 +07:36:31 - OCR BERHASIL BACA RESI: ESTIMATING +07:36:31 - CEK RESI DATABASE +07:36:31 - RESI TIDAK TERDAFTAR +07:36:31 - LOG BERHASIL DISIMPAN +07:36:31 - KIRIM RESPONSE JSON +07:36:31 - SELESAI +07:42:38 - REQUEST MASUK +07:42:38 - FILE FOTO TERDETEKSI +07:42:38 - FILE BERHASIL DISIMPAN +07:42:38 - ZBAR DITEMUKAN +07:42:38 - JALANKAN ZBAR +07:42:38 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +07:42:38 - ZBAR GAGAL -> COBA OCR +07:42:38 - JALANKAN OCR +07:42:38 - HASIL OCR ASLI: Estimating resolution as 642 + +07:42:38 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 642 +07:42:38 - OCR BERHASIL BACA RESI: ESTIMATING +07:42:38 - CEK RESI DATABASE +07:42:38 - RESI TIDAK TERDAFTAR +07:42:38 - LOG BERHASIL DISIMPAN +07:42:38 - KIRIM RESPONSE JSON +07:42:38 - SELESAI +07:48:31 - REQUEST MASUK +07:48:31 - FILE FOTO TERDETEKSI +07:48:31 - FILE BERHASIL DISIMPAN +07:48:31 - ZBAR DITEMUKAN +07:48:31 - JALANKAN ZBAR +07:48:31 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +07:48:31 - ZBAR GAGAL -> COBA OCR +07:48:31 - JALANKAN OCR +07:48:31 - HASIL OCR ASLI: 0 +Estimating resolution as 1233 + +07:48:31 - HASIL OCR BERSIH: 0 ESTIMATING RESOLUTION AS 1233 +07:48:31 - OCR BERHASIL BACA RESI: ESTIMATING +07:48:31 - CEK RESI DATABASE +07:48:31 - RESI TIDAK TERDAFTAR +07:48:31 - LOG BERHASIL DISIMPAN +07:48:31 - KIRIM RESPONSE JSON +07:48:31 - SELESAI +07:58:21 - REQUEST MASUK +07:58:21 - FILE FOTO TERDETEKSI +07:58:21 - FILE BERHASIL DISIMPAN +07:58:21 - ZBAR DITEMUKAN +07:58:21 - JALANKAN ZBAR +07:58:22 - HASIL ZBAR: CODE-128:020110004827426 +scanned 1 barcode symbols from 1 images + +07:58:22 - BARCODE CODE128 TERBACA: 020110004827426 +07:58:22 - CEK RESI DATABASE +07:58:22 - RESI VALID +07:58:22 - LOG BERHASIL DISIMPAN +07:58:22 - KIRIM RESPONSE JSON +07:58:22 - SELESAI +08:01:14 - REQUEST MASUK +08:01:14 - FILE FOTO TERDETEKSI +08:01:14 - FILE BERHASIL DISIMPAN +08:01:14 - ZBAR DITEMUKAN +08:01:14 - JALANKAN ZBAR +08:01:14 - HASIL ZBAR: CODE-128:020110004827426 +scanned 1 barcode symbols from 1 images + +08:01:14 - BARCODE CODE128 TERBACA: 020110004827426 +08:01:14 - CEK RESI DATABASE +08:01:14 - RESI VALID +08:01:14 - LOG BERHASIL DISIMPAN +08:01:14 - KIRIM RESPONSE JSON +08:01:14 - SELESAI +08:03:28 - REQUEST MASUK +08:03:28 - FILE FOTO TERDETEKSI +08:03:28 - FILE BERHASIL DISIMPAN +08:03:28 - ZBAR DITEMUKAN +08:03:28 - JALANKAN ZBAR +08:03:28 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +08:03:28 - ZBAR GAGAL -> COBA OCR +08:03:28 - JALANKAN OCR +08:03:29 - HASIL OCR ASLI: Pe PE TELE EDEL A ELE pe +ae + +Ata TS 26.4 +Ag? /Abas +a=. + +sr Ff = +lt RL EMOT PELO MOLE GIGS TEESE PEGE + +io ok Fes | +it yo ce + +ap re + +og OT + +peeeesr anexacetnareearre® + +Baia” Ate ee t% +PKR PHHOPERTA TALEO 7S 9 ORE +PIPE EI em + +e) +2 +at +*) + +| No. Resi: +| SPXID062449773613 + +Estimating resolution as 815 + +08:03:29 - HASIL OCR BERSIH: PE PE TELE EDEL A ELE PE AE ATA TS 26 4 AG ABAS A SR FF LT RL EMOT PELO MOLE GIGS TEESE PEGE IO OK FES IT YO CE AP RE OG OT PEEEESR ANEXACETNAREEARRE BAIA ATE EE T PKR PHHOPERTA TALEO 7S 9 ORE PIPE EI EM E 2 AT NO RESI SPXID062449773613 ESTIMATING RESOLUTION AS 815 +08:03:29 - OCR BERHASIL BACA RESI: ANEXACETNAREEARRE +08:03:29 - CEK RESI DATABASE +08:03:29 - RESI TIDAK TERDAFTAR +08:03:29 - LOG BERHASIL DISIMPAN +08:03:29 - KIRIM RESPONSE JSON +08:03:29 - SELESAI +08:13:27 - REQUEST MASUK +08:13:27 - FILE FOTO TERDETEKSI +08:13:27 - FILE BERHASIL DISIMPAN +08:13:27 - ZBAR DITEMUKAN +08:13:27 - JALANKAN ZBAR +08:13:27 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +08:13:27 - ZBAR GAGAL -> COBA OCR +08:13:27 - JALANKAN OCR +08:13:28 - HASIL OCR ASLI: Pe PE TELE EDEL A ELE pe +ae + +Ata TS 26.4 +Ag? /Abas +a=. + +sr Ff = +lt RL EMOT PELO MOLE GIGS TEESE PEGE + +io ok Fes | +it yo ce + +ap re + +og OT + +peeeesr anexacetnareearre® + +Baia” Ate ee t% +PKR PHHOPERTA TALEO 7S 9 ORE +PIPE EI em + +e) +2 +at +*) + +| No. Resi: +| SPXID062449773613 + +Estimating resolution as 815 + +08:13:28 - HASIL OCR BERSIH: PE PE TELE EDEL A ELE PE AE ATA TS 26 4 AG ABAS A SR FF LT RL EMOT PELO MOLE GIGS TEESE PEGE IO OK FES IT YO CE AP RE OG OT PEEEESR ANEXACETNAREEARRE BAIA ATE EE T PKR PHHOPERTA TALEO 7S 9 ORE PIPE EI EM E 2 AT NO RESI SPXID062449773613 ESTIMATING RESOLUTION AS 815 +08:13:28 - OCR BERHASIL BACA RESI: SPXID062449773613 +08:13:28 - CEK RESI DATABASE +08:13:28 - RESI VALID +08:13:28 - LOG BERHASIL DISIMPAN +08:13:28 - KIRIM RESPONSE JSON +08:13:28 - SELESAI +08:02:54 - REQUEST MASUK +08:02:54 - FILE FOTO TERDETEKSI +08:02:54 - UPLOAD ERROR: 3 +08:27:38 - REQUEST MASUK +08:27:38 - FILE FOTO TERDETEKSI +08:27:38 - FILE BERHASIL DISIMPAN +08:27:38 - ZBAR DITEMUKAN +08:27:38 - JALANKAN ZBAR +08:27:39 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +08:27:39 - ZBAR GAGAL -> COBA OCR +08:27:39 - JALANKAN OCR +08:27:42 - HASIL OCR ASLI: WIN Mt i | il l \ +Estimating resolution as 550 +Detected 44 diacritics + +08:27:42 - HASIL OCR BERSIH: WIN MT I IL L ESTIMATING RESOLUTION AS 550 DETECTED 44 DIACRITICS +08:27:42 - OCR TIDAK MENEMUKAN RESI +08:27:42 - LOG BERHASIL DISIMPAN +08:27:42 - KIRIM RESPONSE JSON +08:27:42 - SELESAI +08:29:27 - REQUEST MASUK +08:29:27 - FILE FOTO TERDETEKSI +08:29:27 - FILE BERHASIL DISIMPAN +08:29:27 - ZBAR DITEMUKAN +08:29:27 - JALANKAN ZBAR +08:29:27 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +08:29:27 - ZBAR GAGAL -> COBA OCR +08:29:27 - JALANKAN OCR +08:29:28 - HASIL OCR ASLI: Estimating resolution as 503 + +08:29:28 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 503 +08:29:28 - OCR TIDAK MENEMUKAN RESI +08:29:28 - LOG BERHASIL DISIMPAN +08:29:28 - KIRIM RESPONSE JSON +08:29:28 - SELESAI +09:36:25 - REQUEST MASUK +09:36:25 - FILE FOTO TERDETEKSI +09:36:25 - FILE BERHASIL DISIMPAN +09:36:25 - ZBAR DITEMUKAN +09:36:25 - JALANKAN ZBAR +09:36:25 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +09:36:25 - ZBAR GAGAL -> COBA OCR +09:36:25 - JALANKAN OCR +09:36:26 - HASIL OCR ASLI: Estimating resolution as 286 + +09:36:26 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 286 +09:36:26 - OCR TIDAK MENEMUKAN RESI +09:36:26 - LOG BERHASIL DISIMPAN +09:36:26 - KIRIM RESPONSE JSON +09:36:26 - SELESAI +09:41:23 - REQUEST MASUK +09:41:23 - FILE FOTO TERDETEKSI +09:41:23 - FILE BERHASIL DISIMPAN +09:41:23 - ZBAR DITEMUKAN +09:41:23 - JALANKAN ZBAR +09:41:23 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +09:41:23 - ZBAR GAGAL -> COBA OCR +09:41:23 - JALANKAN OCR +09:41:24 - HASIL OCR ASLI: ‘S60-JIUEOT A +Estimating resolution as 291 + +09:41:24 - HASIL OCR BERSIH: S60 JIUEOT A ESTIMATING RESOLUTION AS 291 +09:41:24 - OCR TIDAK MENEMUKAN RESI +09:41:24 - LOG BERHASIL DISIMPAN +09:41:24 - KIRIM RESPONSE JSON +09:41:24 - SELESAI +09:45:34 - REQUEST MASUK +09:45:34 - FILE FOTO TERDETEKSI +09:45:34 - FILE BERHASIL DISIMPAN +09:45:34 - ZBAR DITEMUKAN +09:45:34 - JALANKAN ZBAR +09:45:34 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +09:45:34 - ZBAR GAGAL -> COBA OCR +09:45:34 - JALANKAN OCR +09:45:35 - HASIL OCR ASLI: Estimating resolution as 383 + +09:45:35 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 383 +09:45:35 - OCR TIDAK MENEMUKAN RESI +09:45:35 - LOG BERHASIL DISIMPAN +09:45:35 - KIRIM RESPONSE JSON +09:45:35 - SELESAI +11:02:22 - REQUEST MASUK +11:02:22 - FILE FOTO TERDETEKSI +11:02:22 - FILE BERHASIL DISIMPAN +11:02:22 - ZBAR DITEMUKAN +11:02:22 - JALANKAN ZBAR +11:02:22 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +11:02:22 - ZBAR GAGAL -> COBA OCR +11:02:22 - JALANKAN OCR +11:02:25 - HASIL OCR ASLI: Estimating resolution as 373 + +11:02:25 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 373 +11:02:25 - OCR TIDAK MENEMUKAN RESI +11:02:25 - LOG BERHASIL DISIMPAN +11:02:25 - KIRIM RESPONSE JSON +11:02:25 - SELESAI +11:02:44 - REQUEST MASUK +11:02:44 - FILE FOTO TERDETEKSI +11:02:44 - FILE BERHASIL DISIMPAN +11:02:44 - ZBAR DITEMUKAN +11:02:44 - JALANKAN ZBAR +11:02:44 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +11:02:44 - ZBAR GAGAL -> COBA OCR +11:02:44 - JALANKAN OCR +11:02:45 - HASIL OCR ASLI: Estimating resolution as 266 + +11:02:45 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 266 +11:02:45 - OCR TIDAK MENEMUKAN RESI +11:02:45 - LOG BERHASIL DISIMPAN +11:02:45 - KIRIM RESPONSE JSON +11:02:45 - SELESAI +11:03:30 - REQUEST MASUK +11:03:30 - FILE FOTO TERDETEKSI +11:03:30 - FILE BERHASIL DISIMPAN +11:03:30 - ZBAR DITEMUKAN +11:03:30 - JALANKAN ZBAR +11:03:30 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +11:03:30 - ZBAR GAGAL -> COBA OCR +11:03:30 - JALANKAN OCR +11:03:31 - HASIL OCR ASLI: Estimating resolution as 385 + +11:03:31 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 385 +11:03:31 - OCR TIDAK MENEMUKAN RESI +11:03:31 - LOG BERHASIL DISIMPAN +11:03:31 - KIRIM RESPONSE JSON +11:03:31 - SELESAI +11:04:39 - REQUEST MASUK +11:04:39 - FILE FOTO TERDETEKSI +11:04:39 - FILE BERHASIL DISIMPAN +11:04:39 - ZBAR DITEMUKAN +11:04:39 - JALANKAN ZBAR +11:04:39 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +11:04:39 - ZBAR GAGAL -> COBA OCR +11:04:39 - JALANKAN OCR +11:04:39 - HASIL OCR ASLI: Estimating resolution as 421 + +11:04:39 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 421 +11:04:39 - OCR TIDAK MENEMUKAN RESI +11:04:39 - LOG BERHASIL DISIMPAN +11:04:39 - KIRIM RESPONSE JSON +11:04:39 - SELESAI +11:05:34 - REQUEST MASUK +11:05:34 - FILE FOTO TERDETEKSI +11:05:34 - FILE BERHASIL DISIMPAN +11:05:34 - ZBAR DITEMUKAN +11:05:34 - JALANKAN ZBAR +11:05:34 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +11:05:34 - ZBAR GAGAL -> COBA OCR +11:05:34 - JALANKAN OCR +11:05:34 - HASIL OCR ASLI: Estimating resolution as 440 + +11:05:34 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 440 +11:05:34 - OCR TIDAK MENEMUKAN RESI +11:05:34 - LOG BERHASIL DISIMPAN +11:05:34 - KIRIM RESPONSE JSON +11:05:34 - SELESAI +11:07:43 - REQUEST MASUK +11:07:43 - FILE FOTO TERDETEKSI +11:07:43 - FILE BERHASIL DISIMPAN +11:07:43 - ZBAR DITEMUKAN +11:07:43 - JALANKAN ZBAR +11:07:43 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +11:07:43 - ZBAR GAGAL -> COBA OCR +11:07:43 - JALANKAN OCR +11:07:43 - HASIL OCR ASLI: LS + +mr + +Estimating resolution as 422 + +11:07:43 - HASIL OCR BERSIH: LS MR ESTIMATING RESOLUTION AS 422 +11:07:43 - OCR TIDAK MENEMUKAN RESI +11:07:43 - LOG BERHASIL DISIMPAN +11:07:43 - KIRIM RESPONSE JSON +11:07:43 - SELESAI +11:13:29 - REQUEST MASUK +11:13:29 - FILE FOTO TERDETEKSI +11:13:29 - FILE BERHASIL DISIMPAN +11:13:29 - ZBAR DITEMUKAN +11:13:29 - JALANKAN ZBAR +11:13:29 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +11:13:29 - ZBAR GAGAL -> COBA OCR +11:13:29 - JALANKAN OCR +11:13:29 - HASIL OCR ASLI: Estimating resolution as 441 + +11:13:29 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 441 +11:13:29 - OCR TIDAK MENEMUKAN RESI +11:13:29 - LOG BERHASIL DISIMPAN +11:13:29 - KIRIM RESPONSE JSON +11:13:29 - SELESAI +11:15:09 - REQUEST MASUK +11:15:09 - FILE FOTO TERDETEKSI +11:15:09 - FILE BERHASIL DISIMPAN +11:15:09 - ZBAR DITEMUKAN +11:15:09 - JALANKAN ZBAR +11:15:09 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +11:15:09 - ZBAR GAGAL -> COBA OCR +11:15:09 - JALANKAN OCR +11:15:10 - HASIL OCR ASLI: Estimating resolution as 431 + +11:15:10 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 431 +11:15:10 - OCR TIDAK MENEMUKAN RESI +11:15:10 - LOG BERHASIL DISIMPAN +11:15:10 - KIRIM RESPONSE JSON +11:15:10 - SELESAI +11:20:39 - REQUEST MASUK +11:20:39 - FILE FOTO TERDETEKSI +11:20:39 - FILE BERHASIL DISIMPAN +11:20:39 - ZBAR DITEMUKAN +11:20:39 - JALANKAN ZBAR +11:20:39 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +11:20:39 - ZBAR GAGAL -> COBA OCR +11:20:39 - JALANKAN OCR +11:20:40 - HASIL OCR ASLI: il + +i + +Ny +Estimating resolution as 369 + +11:20:40 - HASIL OCR BERSIH: IL I NY ESTIMATING RESOLUTION AS 369 +11:20:40 - OCR TIDAK MENEMUKAN RESI +11:20:40 - LOG BERHASIL DISIMPAN +11:20:40 - KIRIM RESPONSE JSON +11:20:40 - SELESAI +11:21:58 - REQUEST MASUK +11:21:58 - FILE FOTO TERDETEKSI +11:21:58 - FILE BERHASIL DISIMPAN +11:21:58 - ZBAR DITEMUKAN +11:21:58 - JALANKAN ZBAR +11:21:58 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +11:21:58 - ZBAR GAGAL -> COBA OCR +11:21:58 - JALANKAN OCR +11:21:58 - HASIL OCR ASLI: SF : +AMAT io) +Estimating resolution as 384 +Detected 38 diacritics + +11:21:58 - HASIL OCR BERSIH: SF AMAT IO ESTIMATING RESOLUTION AS 384 DETECTED 38 DIACRITICS +11:21:58 - OCR TIDAK MENEMUKAN RESI +11:21:58 - LOG BERHASIL DISIMPAN +11:21:58 - KIRIM RESPONSE JSON +11:21:58 - SELESAI +11:22:43 - REQUEST MASUK +11:22:43 - FILE FOTO TERDETEKSI +11:22:43 - FILE BERHASIL DISIMPAN +11:22:43 - ZBAR DITEMUKAN +11:22:43 - JALANKAN ZBAR +11:22:44 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +11:22:44 - ZBAR GAGAL -> COBA OCR +11:22:44 - JALANKAN OCR +11:22:44 - HASIL OCR ASLI: Estimating resolution as 298 + +11:22:44 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 298 +11:22:44 - OCR TIDAK MENEMUKAN RESI +11:22:44 - LOG BERHASIL DISIMPAN +11:22:44 - KIRIM RESPONSE JSON +11:22:44 - SELESAI +11:24:00 - REQUEST MASUK +11:24:00 - FILE FOTO TERDETEKSI +11:24:00 - FILE BERHASIL DISIMPAN +11:24:00 - ZBAR DITEMUKAN +11:24:00 - JALANKAN ZBAR +11:24:00 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +11:24:00 - ZBAR GAGAL -> COBA OCR +11:24:00 - JALANKAN OCR +11:24:00 - HASIL OCR ASLI: Estimating resolution as 324 + +11:24:00 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 324 +11:24:00 - OCR TIDAK MENEMUKAN RESI +11:24:00 - LOG BERHASIL DISIMPAN +11:24:00 - KIRIM RESPONSE JSON +11:24:00 - SELESAI +16:48:17 - REQUEST MASUK +16:48:17 - FILE FOTO TERDETEKSI +16:48:17 - FILE BERHASIL DISIMPAN +16:48:17 - ZBAR DITEMUKAN +16:48:17 - JALANKAN ZBAR +16:48:17 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +16:48:17 - ZBAR GAGAL -> COBA OCR +16:48:17 - JALANKAN OCR +16:48:19 - HASIL OCR ASLI: Estimating resolution as 301 + +16:48:19 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 301 +16:48:19 - OCR TIDAK MENEMUKAN RESI +16:48:19 - LOG BERHASIL DISIMPAN +16:48:19 - KIRIM RESPONSE JSON +16:48:19 - SELESAI +16:50:06 - REQUEST MASUK +16:50:06 - FILE FOTO TERDETEKSI +16:50:06 - FILE BERHASIL DISIMPAN +16:50:06 - ZBAR DITEMUKAN +16:50:06 - JALANKAN ZBAR +16:50:06 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +16:50:06 - ZBAR GAGAL -> COBA OCR +16:50:06 - JALANKAN OCR +16:50:06 - HASIL OCR ASLI: Estimating resolution as 308 + +16:50:06 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 308 +16:50:06 - OCR TIDAK MENEMUKAN RESI +16:50:06 - LOG BERHASIL DISIMPAN +16:50:06 - KIRIM RESPONSE JSON +16:50:06 - SELESAI +16:51:46 - REQUEST MASUK +16:51:46 - FILE FOTO TERDETEKSI +16:51:46 - FILE BERHASIL DISIMPAN +16:51:46 - ZBAR DITEMUKAN +16:51:46 - JALANKAN ZBAR +16:51:46 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +16:51:46 - ZBAR GAGAL -> COBA OCR +16:51:46 - JALANKAN OCR +16:51:46 - HASIL OCR ASLI: Estimating resolution as 371 + +16:51:46 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 371 +16:51:46 - OCR TIDAK MENEMUKAN RESI +16:51:46 - LOG BERHASIL DISIMPAN +16:51:46 - KIRIM RESPONSE JSON +16:51:46 - SELESAI +18:21:27 - REQUEST MASUK +18:21:27 - FILE FOTO TERDETEKSI +18:21:27 - FILE BERHASIL DISIMPAN +18:21:27 - ZBAR DITEMUKAN +18:21:27 - JALANKAN ZBAR +18:21:28 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:21:28 - ZBAR GAGAL -> COBA OCR +18:21:28 - JALANKAN OCR +18:21:28 - HASIL OCR ASLI: PN MTT) + +— +Estimating resolution as 441 + +18:21:28 - HASIL OCR BERSIH: PN MTT ESTIMATING RESOLUTION AS 441 +18:21:28 - OCR TIDAK MENEMUKAN RESI +18:21:28 - LOG BERHASIL DISIMPAN +18:21:28 - KIRIM RESPONSE JSON +18:21:28 - SELESAI +18:26:52 - REQUEST MASUK +18:26:52 - FILE FOTO TERDETEKSI +18:26:52 - FILE BERHASIL DISIMPAN +18:26:52 - ZBAR DITEMUKAN +18:26:52 - JALANKAN ZBAR +18:26:52 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:26:52 - ZBAR GAGAL -> COBA OCR +18:26:52 - JALANKAN OCR +18:26:53 - HASIL OCR ASLI: Estimating resolution as 238 +Detected 6 diacritics + +18:26:53 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 238 DETECTED 6 DIACRITICS +18:26:53 - OCR TIDAK MENEMUKAN RESI +18:26:53 - LOG BERHASIL DISIMPAN +18:26:53 - KIRIM RESPONSE JSON +18:26:53 - SELESAI +18:35:49 - REQUEST MASUK +18:35:49 - FILE FOTO TERDETEKSI +18:35:49 - FILE BERHASIL DISIMPAN +18:35:49 - ZBAR DITEMUKAN +18:35:49 - JALANKAN ZBAR +18:35:49 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:35:49 - ZBAR GAGAL -> COBA OCR +18:35:49 - JALANKAN OCR +18:35:50 - HASIL OCR ASLI: Estimating resolution as 424 + +18:35:50 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 424 +18:35:50 - OCR TIDAK MENEMUKAN RESI +18:35:50 - LOG BERHASIL DISIMPAN +18:35:50 - KIRIM RESPONSE JSON +18:35:50 - SELESAI +18:37:23 - REQUEST MASUK +18:37:23 - FILE FOTO TERDETEKSI +18:37:23 - FILE BERHASIL DISIMPAN +18:37:23 - ZBAR DITEMUKAN +18:37:23 - JALANKAN ZBAR +18:37:23 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:37:23 - ZBAR GAGAL -> COBA OCR +18:37:23 - JALANKAN OCR +18:37:23 - HASIL OCR ASLI: Estimating resolution as 439 + +18:37:23 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 439 +18:37:23 - OCR TIDAK MENEMUKAN RESI +18:37:23 - LOG BERHASIL DISIMPAN +18:37:23 - KIRIM RESPONSE JSON +18:37:23 - SELESAI +18:38:47 - REQUEST MASUK +18:38:47 - FILE FOTO TERDETEKSI +18:38:47 - FILE BERHASIL DISIMPAN +18:38:47 - ZBAR DITEMUKAN +18:38:47 - JALANKAN ZBAR +18:38:47 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:38:47 - ZBAR GAGAL -> COBA OCR +18:38:47 - JALANKAN OCR +18:38:47 - HASIL OCR ASLI: Estimating resolution as 419 +Error in boxClipToRectangle: box outside rectangle +Error in pixScanForForeground: invalid box + +18:38:47 - HASIL OCR BERSIH: ESTIMATING RESOLUTION AS 419 ERROR IN BOXCLIPTORECTANGLE BOX OUTSIDE RECTANGLE ERROR IN PIXSCANFORFOREGROUND INVALID BOX +18:38:47 - OCR TIDAK MENEMUKAN RESI +18:38:47 - LOG BERHASIL DISIMPAN +18:38:47 - KIRIM RESPONSE JSON +18:38:47 - SELESAI +18:42:07 - REQUEST MASUK +18:42:07 - FILE FOTO TERDETEKSI +18:42:07 - FILE BERHASIL DISIMPAN +18:42:07 - ZBAR DITEMUKAN +18:42:07 - JALANKAN ZBAR +18:42:08 - HASIL ZBAR: scanned 0 barcode symbols from 1 images + +WARNING: barcode data was not detected in some image(s) + things to check: + - is the barcode type supported? currently supported symbologies are: + EAN/UPC (EAN-13, EAN-8, UPC-A, UPC-E, ISBN-10, ISBN-13), + Code 128, Code 39 and Interleaved 2 of 5 + - is the barcode large enough in the image? + - is the barcode mostly in focus? + - is there sufficient contrast/illumination? + + +18:42:08 - ZBAR GAGAL -> COBA OCR +18:42:08 - JALANKAN OCR +18:42:08 - HASIL OCR ASLI: wii in , +—— +Estimating resolution as 508 +Detected 73 diacritics + +18:42:08 - HASIL OCR BERSIH: WII IN ESTIMATING RESOLUTION AS 508 DETECTED 73 DIACRITICS +18:42:08 - OCR TIDAK MENEMUKAN RESI +18:42:08 - LOG BERHASIL DISIMPAN +18:42:08 - KIRIM RESPONSE JSON +18:42:08 - SELESAI +18:44:09 - REQUEST MASUK +18:44:09 - FILE FOTO TERDETEKSI +18:44:09 - FILE BERHASIL DISIMPAN +18:44:09 - ZBAR DITEMUKAN +18:44:09 - JALANKAN ZBAR +18:44:09 - HASIL ZBAR: CODE-128:JX7733615817 +scanned 1 barcode symbols from 1 images + +18:44:09 - BARCODE CODE128 TERBACA: JX7733615817 +18:44:09 - CEK RESI DATABASE +18:44:09 - RESI VALID +18:44:09 - LOG BERHASIL DISIMPAN +18:44:09 - KIRIM RESPONSE JSON +18:44:09 - SELESAI diff --git a/smart-drop-point/public/api/upload_cam.php b/smart-drop-point/public/api/upload_cam.php new file mode 100644 index 0000000..103c7c5 --- /dev/null +++ b/smart-drop-point/public/api/upload_cam.php @@ -0,0 +1,391 @@ +```php + false, + "message" => "File foto tidak ada" + ], JSON_UNESCAPED_SLASHES); + + ob_end_flush(); + + exit; +} + +$f = $_FILES['foto']; + +debugLog("FILE FOTO TERDETEKSI"); + +// ======================= +// ERROR UPLOAD +// ======================= +if ($f['error'] !== UPLOAD_ERR_OK) { + + debugLog("UPLOAD ERROR: " . $f['error']); + + echo json_encode([ + "ok" => false, + "message" => "Upload error" + ], JSON_UNESCAPED_SLASHES); + + ob_end_flush(); + + exit; +} + +// ======================= +// VALIDASI EXTENSION +// ======================= +$ext = strtolower(pathinfo($f['name'], PATHINFO_EXTENSION)); + +if ($ext == '') { + $ext = 'jpg'; +} + +$allowed = ['jpg', 'jpeg', 'png']; + +if (!in_array($ext, $allowed)) { + + debugLog("FORMAT FILE TIDAK VALID"); + + echo json_encode([ + "ok" => false, + "message" => "Format file tidak valid" + ], JSON_UNESCAPED_SLASHES); + + ob_end_flush(); + + exit; +} + +// ======================= +// SIMPAN FILE +// ======================= +$filename = + "cam_" . + date("Ymd_His") . + "_" . + rand(100,999) . + "." . + $ext; + +$targetPath = $uploadDir . $filename; + +if (!move_uploaded_file($f['tmp_name'], $targetPath)) { + + debugLog("GAGAL SIMPAN FILE"); + + echo json_encode([ + "ok" => false, + "message" => "Gagal menyimpan file" + ], JSON_UNESCAPED_SLASHES); + + ob_end_flush(); + + exit; +} + +debugLog("FILE BERHASIL DISIMPAN"); + +// ======================= +// ZBAR +// ======================= +$resi = null; +$out = ""; + +$zbarPath = + 'C:\\Program Files (x86)\\ZBar\\bin\\zbarimg.exe'; + +if (file_exists($zbarPath)) { + + debugLog("ZBAR DITEMUKAN"); + + $cmd = + '"' . $zbarPath . '" ' . + escapeshellarg($targetPath) . + ' 2>&1'; + + debugLog("JALANKAN ZBAR"); + + $out = shell_exec($cmd); + + debugLog("HASIL ZBAR: " . $out); + + if ($out === null) { + $out = ""; + } + + $lines = preg_split( + "/\r\n|\n|\r/", + trim($out) + ); + + foreach ($lines as $line) { + + if ( + preg_match( + '/^CODE-128:(.+)$/', + trim($line), + $m + ) + ) { + + $resi = trim($m[1]); + + debugLog( + "BARCODE CODE128 TERBACA: " . $resi + ); + + break; + } + } + +} else { + + debugLog("ZBAR TIDAK DITEMUKAN"); +} + +// ======================= +// OCR FALLBACK +// ======================= +if ($resi === null || $resi === "") { + + debugLog("ZBAR GAGAL -> COBA OCR"); + + $ocrPath = + 'C:\\Program Files\\Tesseract-OCR\\tesseract.exe'; + + if (file_exists($ocrPath)) { + + $cmdOCR = + '"' . $ocrPath . '" ' . + escapeshellarg($targetPath) . + ' stdout 2>&1'; + + debugLog("JALANKAN OCR"); + + $ocrText = shell_exec($cmdOCR); + + debugLog("HASIL OCR ASLI: " . $ocrText); + + if ($ocrText !== null) { + + // ======================= + // BERSIHKAN OCR + // ======================= + $ocrText = strtoupper($ocrText); + + $ocrText = preg_replace( + '/[^A-Z0-9]/', + ' ', + $ocrText + ); + + debugLog( + "HASIL OCR BERSIH: " . $ocrText + ); + + // ======================= + // CARI FORMAT RESI + // ======================= + if ( + preg_match( + '/([A-Z]{1,5}[0-9]{6,}|[0-9]{10,})/', + $ocrText, + $m + ) + ) { + + $resi = trim($m[0]); + + debugLog( + "OCR BERHASIL BACA RESI: " . + $resi + ); + + } else { + + debugLog( + "OCR TIDAK MENEMUKAN RESI" + ); + } + } + + } else { + + debugLog( + "TESSERACT OCR TIDAK DITEMUKAN" + ); + } +} + +// ======================= +// VALIDASI RESI +// ======================= +$status = "gagal"; +$pesan = "Barcode / OCR tidak terbaca."; +$openLock = false; + +if ($resi !== null && $resi !== "") { + + debugLog("CEK RESI DATABASE"); + + $pesan = "Resi tidak terdaftar."; + + $stmt = $conn->prepare( + "SELECT 1 FROM resi WHERE nomor_resi = ? LIMIT 1" + ); + + if ($stmt) { + + $stmt->bind_param("s", $resi); + + $stmt->execute(); + + $result = $stmt->get_result(); + + if ( + $result && + $result->num_rows > 0 + ) { + + $status = "berhasil"; + + $pesan = + "Resi valid, akses dibuka."; + + $openLock = true; + + debugLog("RESI VALID"); + + } else { + + debugLog( + "RESI TIDAK TERDAFTAR" + ); + } + + } else { + + debugLog("QUERY RESI GAGAL"); + } +} + +// ======================= +// SIMPAN LOG +// ======================= +$fotoPathUrl = + "/smart-drop-point/uploads/" . + $filename; + +$nomorResiForLog = $resi ?? "-"; + +$stmt2 = $conn->prepare(" + INSERT INTO log_akses + ( + nomor_resi, + status, + pesan, + foto_path, + created_at + ) + VALUES (?, ?, ?, ?, NOW()) +"); + +if ($stmt2) { + + $stmt2->bind_param( + "ssss", + $nomorResiForLog, + $status, + $pesan, + $fotoPathUrl + ); + + $stmt2->execute(); + + debugLog("LOG BERHASIL DISIMPAN"); + +} else { + + debugLog("GAGAL SIMPAN LOG"); +} + +// ======================= +// RESPONSE FINAL +// ======================= +$response = [ + + "ok" => true, + "resi" => $resi, + "status" => $status, + "pesan" => $pesan, + "open_lock" => $openLock, + "foto_path" => $fotoPathUrl +]; + +debugLog("KIRIM RESPONSE JSON"); + +echo json_encode( + $response, + JSON_UNESCAPED_SLASHES +); + +flush(); + +ob_end_flush(); + +debugLog("SELESAI"); + +exit; +?> +``` diff --git a/smart-drop-point/public/cek_manual.php b/smart-drop-point/public/cek_manual.php new file mode 100644 index 0000000..69febd6 --- /dev/null +++ b/smart-drop-point/public/cek_manual.php @@ -0,0 +1,12 @@ + 0) { + $q = $conn->query("SELECT foto_path FROM log_akses WHERE id = {$id} LIMIT 1"); + + if ($q && $q->num_rows > 0) { + $data = $q->fetch_assoc(); + + if (!empty($data['foto_path'])) { + $relativePath = ltrim($data['foto_path'], '/'); + $fullPath = dirname(__DIR__) . '/' . $relativePath; + + if (file_exists($fullPath) && is_file($fullPath)) { + unlink($fullPath); + } + } + + $conn->query("DELETE FROM log_akses WHERE id = {$id}"); + } +} + +header("Location: /smart-drop-point/public/log.php"); +exit; \ No newline at end of file diff --git a/smart-drop-point/public/index.php b/smart-drop-point/public/index.php new file mode 100644 index 0000000..0d21345 --- /dev/null +++ b/smart-drop-point/public/index.php @@ -0,0 +1,356 @@ + 0, + "resi_valid" => 0, + "resi_invalid" => 0, + "log_today" => 0, + "log_ok" => 0, + "log_fail" => 0 +]; + +$r = $conn->query("SELECT COUNT(*) c, SUM(status='valid') v, SUM(status='invalid') i FROM resi"); + +if ($r && $row = $r->fetch_assoc()) { + $stats["total_resi"] = (int)($row["c"] ?? 0); + $stats["resi_valid"] = (int)($row["v"] ?? 0); + $stats["resi_invalid"] = (int)($row["i"] ?? 0); +} + +$today = date("Y-m-d"); + +$r2 = $conn->query(" + SELECT + COUNT(*) c, + SUM(status='berhasil') ok, + SUM(status='gagal') fail + FROM log_akses + WHERE DATE(created_at)='{$today}' +"); + +if ($r2 && $row2 = $r2->fetch_assoc()) { + $stats["log_today"] = (int)($row2["c"] ?? 0); + $stats["log_ok"] = (int)($row2["ok"] ?? 0); + $stats["log_fail"] = (int)($row2["fail"] ?? 0); +} + +// latest logs +$latest = $conn->query(" + SELECT + id, + nomor_resi, + status, + pesan, + created_at, + foto_path + FROM log_akses + ORDER BY created_at DESC + LIMIT 8 +"); +?> + +
+ +
+
+
+ +
+

Dashboard

+
+ Ringkasan sistem monitoring paket & autentikasi resi. +
+
+ + +
+
+
+ +
+
+ +
+ +
+
Total Resi Terdaftar
+
+ +
+
+ +
+ +
+ +
+ +
+ Valid: + • + Invalid: +
+ +
+
+ +
+
+ +
+ +
+
Total Scan Hari Ini
+
+ +
+
+ +
+ +
+ +
+ +
+ Berhasil: + • + Gagal: +
+ +
+
+ +
+
+ +
+ +
+
Status Server
+ +
+ + Online +
+
+ +
+ +
+ +
+ +
+ Mode: Localhost (XAMPP) +
+ +
+
+ +
+ +
+ +
+ +
+ Log Terbaru +
+ + + Lihat semua + + + +
+ +
+ + + + + + + + + + + + + + + + num_rows > 0): ?> + + fetch_assoc()): ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + +
WaktuNomor ResiStatusPesanFoto
+ + + + + + + + Berhasil + + + + + + Gagal + + + + + + + + + + " + data-caption=""> + + " + alt="foto" + style="width:52px;height:52px;object-fit:cover;border-radius:10px;border:1px solid rgba(255,255,255,.2);cursor:pointer;" + > + + + + + + - + + + +
+ Belum ada log. +
+ +
+ +
+ +
+ +
+ + + + + + \ No newline at end of file diff --git a/smart-drop-point/public/log.php b/smart-drop-point/public/log.php new file mode 100644 index 0000000..62c1e75 --- /dev/null +++ b/smart-drop-point/public/log.php @@ -0,0 +1,129 @@ +real_escape_string($status) . "'"; +} + +if ($q !== "") { + $safe = $conn->real_escape_string($q); + $w[] = "nomor_resi LIKE '%{$safe}%'"; +} + +$where = count($w) ? "WHERE " . implode(" AND ", $w) : ""; + +// Ambil data log +$logs = $conn->query("SELECT * FROM log_akses {$where} ORDER BY created_at DESC LIMIT 300"); +?> + +
+
+
+

Log Akses

+
Riwayat autentikasi barcode (berhasil/gagal) + bukti foto.
+
+ + Tambah Log Dummy + +
+ +
+
+ +
+ +
+ +
+ +
+
+ + + + + + + + + + + + + + num_rows > 0): ?> + fetch_assoc()): ?> + + + + + + + + + + + + + + + + + + + + + + +
WaktuNomor ResiStatusPesanFotoAksi
+ + + + + + Berhasil + + Gagal + + + + + + "> + " + style="width:70px;height:70px;object-fit:cover;border-radius:10px;border:1px solid rgba(255,255,255,.2);" + alt="foto"> + + + - + + + " + class="btn btn-sm btn-outline-danger" + onclick="return confirm('Yakin mau hapus log ini?');" + title="Hapus log"> + + +
+ Belum ada log. +
+
+
+ + \ No newline at end of file diff --git a/smart-drop-point/public/log_add_mock.php b/smart-drop-point/public/log_add_mock.php new file mode 100644 index 0000000..072362f --- /dev/null +++ b/smart-drop-point/public/log_add_mock.php @@ -0,0 +1,17 @@ +prepare("INSERT INTO log_akses (nomor_resi, status, pesan) VALUES (?,?,?)"); +$stmt->bind_param("sss", $sampleResi, $status, $pesan); +$stmt->execute(); +$stmt->close(); + +// Redirect pakai cara aman +echo ""; +exit; \ No newline at end of file diff --git a/smart-drop-point/public/manual_open.php b/smart-drop-point/public/manual_open.php new file mode 100644 index 0000000..9758e62 --- /dev/null +++ b/smart-drop-point/public/manual_open.php @@ -0,0 +1,10 @@ +real_escape_string($q); + $where = "WHERE nomor_resi LIKE '%{$safe}%' OR nama_paket LIKE '%{$safe}%'"; +} + +$res = $conn->query("SELECT * FROM resi {$where} ORDER BY created_at DESC LIMIT 200"); +?> + +
+
+
+

Data Resi

+
Daftar resi yang boleh akses loker (valid/invalid).
+
+ + +
+ + +
+ +
+ +
+ +
+ +
+ +
+
+ + + + + + + + + + + + + num_rows > 0): ?> + fetch_assoc()): ?> + + + + + + + + + + + + + + + + + + +
Nomor ResiNama PaketStatusDibuatAksi
+ + + + + + VALID + + INVALID + + + + + +
Belum ada data resi.
+
+
+ + \ No newline at end of file diff --git a/smart-drop-point/public/resi_add.php b/smart-drop-point/public/resi_add.php new file mode 100644 index 0000000..f448ddc --- /dev/null +++ b/smart-drop-point/public/resi_add.php @@ -0,0 +1,61 @@ +prepare("INSERT INTO resi (nomor_resi, nama_paket, status) VALUES (?,?,?)"); + $stmt->bind_param("sss", $nomor, $nama, $status); + if($stmt->execute()){ + $ok = "Resi berhasil ditambahkan."; + } else { + $err = "Gagal menambahkan resi. Mungkin resinya sudah ada."; + } + $stmt->close(); + } +} +?> + +
+

Tambah Resi

+
Masukkan resi yang dianggap valid untuk akses.
+ + +
+ + + + + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
+
+ + \ No newline at end of file diff --git a/smart-drop-point/public/resi_detail.php b/smart-drop-point/public/resi_detail.php new file mode 100644 index 0000000..cd5ce4a --- /dev/null +++ b/smart-drop-point/public/resi_detail.php @@ -0,0 +1,64 @@ +prepare("SELECT * FROM resi WHERE id = ?"); +$stmt->bind_param("i", $id); +$stmt->execute(); +$res = $stmt->get_result(); +$data = $res->fetch_assoc(); +?> + +
+
+
+

Detail Resi

+
Informasi detail data resi paket.
+
+ + + Kembali + +
+
+ + +
+ + + + + + + + + + + + + + + + + + + + +
Nomor Resi
Nama Paket
Status + + VALID + + INVALID + +
Dibuat
+
+ +
+ Data resi tidak ditemukan. +
+ + + \ No newline at end of file diff --git a/smart-drop-point/public/resi_toggle.php b/smart-drop-point/public/resi_toggle.php new file mode 100644 index 0000000..0f5d730 --- /dev/null +++ b/smart-drop-point/public/resi_toggle.php @@ -0,0 +1,18 @@ +query("SELECT status FROM resi WHERE id = $id"); +$data = $q->fetch_assoc(); + +if ($data) { + $newStatus = ($data["status"] === "valid") ? "invalid" : "valid"; + + $conn->query("UPDATE resi SET status='$newStatus' WHERE id=$id"); +} + +// balik lagi ke halaman resi +header("Location: resi.php"); +exit; \ No newline at end of file diff --git a/smart-drop-point/public/scan.php b/smart-drop-point/public/scan.php new file mode 100644 index 0000000..5b9d1cb --- /dev/null +++ b/smart-drop-point/public/scan.php @@ -0,0 +1,4 @@ +
+ + +
\ No newline at end of file diff --git a/smart-drop-point/public/test_upload.php b/smart-drop-point/public/test_upload.php new file mode 100644 index 0000000..1eec68e --- /dev/null +++ b/smart-drop-point/public/test_upload.php @@ -0,0 +1,30 @@ + + + + Test Upload Barcode + + + +

Upload Foto Barcode

+ +
+ + + + + +
+ + + \ No newline at end of file diff --git a/smart-drop-point/public/upload.php b/smart-drop-point/public/upload.php new file mode 100644 index 0000000..c144d86 --- /dev/null +++ b/smart-drop-point/public/upload.php @@ -0,0 +1,169 @@ +prepare("SELECT * FROM resi WHERE nomor_resi=?"); + + $stmt->bind_param("s", $nomor_resi); + + $stmt->execute(); + + $result = $stmt->get_result(); + + if ($result->num_rows > 0) { + + $status = "berhasil"; + $pesan = "Resi valid, akses dibuka"; + + echo "\nVALID"; + + } else { + + $status = "gagal"; + $pesan = "Nomor resi tidak ditemukan"; + + echo "\nINVALID DATABASE"; + } + +} else { + + echo "\nBARCODE / OCR GAGAL"; +} + +// ======================= +// SIMPAN LOG +// ======================= +$fotoWeb = "/smart-drop-point/public/" . $targetFile; + +$stmtLog = $conn->prepare(" +INSERT INTO log_akses +( + nomor_resi, + status, + pesan, + foto_path +) +VALUES +( + ?, ?, ?, ? +) +"); + +$stmtLog->bind_param( + "ssss", + $nomor_resi, + $status, + $pesan, + $fotoWeb +); + +$stmtLog->execute(); + +echo "\nLOG TERSIMPAN"; + +?> \ No newline at end of file diff --git a/smart-drop-point/public/upload_barcode.php b/smart-drop-point/public/upload_barcode.php new file mode 100644 index 0000000..09f1f3c --- /dev/null +++ b/smart-drop-point/public/upload_barcode.php @@ -0,0 +1,93 @@ +&1"; +$out = shell_exec($cmd); + +if (!$out) { + $out = ""; +} + +// Ambil nomor resi: prioritas CODE-128, fallback QR-Code +$resi = null; +$lines = preg_split("/\r\n|\n|\r/", trim($out)); + +foreach ($lines as $line) { + if (preg_match('/^CODE-128:(.+)$/', trim($line), $m)) { + $resi = trim($m[1]); + break; + } +} +if ($resi === null) { + foreach ($lines as $line) { + if (preg_match('/^QR-Code:(.+)$/', trim($line), $m)) { + $resi = trim($m[1]); + break; + } + } +} + +if ($resi === null || $resi === "") { + // kalau gak kebaca, tetap simpan log gagal biar ada bukti foto + $status = "gagal"; + $pesan = "Barcode tidak terbaca."; +} else { + // 4) Cek resi valid di tabel resi (sesuaikan kalau nama tabel/kolom kamu beda) + $status = "gagal"; + $pesan = "Resi tidak terdaftar."; + + $stmt = $conn->prepare("SELECT 1 FROM resi WHERE nomor_resi = ? LIMIT 1"); + $stmt->bind_param("s", $resi); + $stmt->execute(); + $r = $stmt->get_result(); + + if ($r && $r->num_rows > 0) { + $status = "berhasil"; + $pesan = "Resi valid, akses dibuka."; + } +} + +// 5) Simpan ke tabel yang DIPAKAI log.php: log_akses +// log.php kamu pakai kolom: created_at, nomor_resi, status, pesan, foto_path +$fotoPathUrl = "/smart-drop-point/uploads/" . $filename; + +$stmt2 = $conn->prepare("INSERT INTO log_akses (nomor_resi, status, pesan, foto_path, created_at) VALUES (?, ?, ?, ?, NOW())"); +$stmt2->bind_param("ssss", $resi, $status, $pesan, $fotoPathUrl); +$stmt2->execute(); + +// 6) Balik ke halaman log (biar gak kepisah) +header("Location: /smart-drop-point/public/log.php"); +exit; \ No newline at end of file diff --git a/smart-drop-point/public/uploads/cam_20260522_135622.jpg b/smart-drop-point/public/uploads/cam_20260522_135622.jpg new file mode 100644 index 0000000..d6f871d Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260522_135622.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260522_140948.jpg b/smart-drop-point/public/uploads/cam_20260522_140948.jpg new file mode 100644 index 0000000..c8c2393 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260522_140948.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260522_141232.jpg b/smart-drop-point/public/uploads/cam_20260522_141232.jpg new file mode 100644 index 0000000..c5a5b9d Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260522_141232.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260522_143115.jpg b/smart-drop-point/public/uploads/cam_20260522_143115.jpg new file mode 100644 index 0000000..83cf222 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260522_143115.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260522_144245.jpg b/smart-drop-point/public/uploads/cam_20260522_144245.jpg new file mode 100644 index 0000000..b6f2878 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260522_144245.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260522_144400.jpg b/smart-drop-point/public/uploads/cam_20260522_144400.jpg new file mode 100644 index 0000000..e019fc9 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260522_144400.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_031734.jpg b/smart-drop-point/public/uploads/cam_20260523_031734.jpg new file mode 100644 index 0000000..cca374d Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_031734.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_032800.jpg b/smart-drop-point/public/uploads/cam_20260523_032800.jpg new file mode 100644 index 0000000..07edc93 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_032800.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_033340.jpg b/smart-drop-point/public/uploads/cam_20260523_033340.jpg new file mode 100644 index 0000000..aaf8000 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_033340.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_034013.jpg b/smart-drop-point/public/uploads/cam_20260523_034013.jpg new file mode 100644 index 0000000..872099e Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_034013.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_035754.jpg b/smart-drop-point/public/uploads/cam_20260523_035754.jpg new file mode 100644 index 0000000..4596934 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_035754.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_040000.jpg b/smart-drop-point/public/uploads/cam_20260523_040000.jpg new file mode 100644 index 0000000..36233e5 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_040000.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_040244.jpg b/smart-drop-point/public/uploads/cam_20260523_040244.jpg new file mode 100644 index 0000000..82cf227 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_040244.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_040341.jpg b/smart-drop-point/public/uploads/cam_20260523_040341.jpg new file mode 100644 index 0000000..147459e Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_040341.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_040539.jpg b/smart-drop-point/public/uploads/cam_20260523_040539.jpg new file mode 100644 index 0000000..169ff5c Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_040539.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_040906.jpg b/smart-drop-point/public/uploads/cam_20260523_040906.jpg new file mode 100644 index 0000000..512a697 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_040906.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_041203.jpg b/smart-drop-point/public/uploads/cam_20260523_041203.jpg new file mode 100644 index 0000000..0c8e9c9 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_041203.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_041424.jpg b/smart-drop-point/public/uploads/cam_20260523_041424.jpg new file mode 100644 index 0000000..62fa17b Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_041424.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_041539.jpg b/smart-drop-point/public/uploads/cam_20260523_041539.jpg new file mode 100644 index 0000000..84b0637 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_041539.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_041912.jpg b/smart-drop-point/public/uploads/cam_20260523_041912.jpg new file mode 100644 index 0000000..e1a2e5a Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_041912.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_041955.jpg b/smart-drop-point/public/uploads/cam_20260523_041955.jpg new file mode 100644 index 0000000..fdddfe7 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_041955.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_042032.jpg b/smart-drop-point/public/uploads/cam_20260523_042032.jpg new file mode 100644 index 0000000..bd53774 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_042032.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_042051.jpg b/smart-drop-point/public/uploads/cam_20260523_042051.jpg new file mode 100644 index 0000000..cb07bfd Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_042051.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_042258.jpg b/smart-drop-point/public/uploads/cam_20260523_042258.jpg new file mode 100644 index 0000000..6e2c8f2 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_042258.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_042430.jpg b/smart-drop-point/public/uploads/cam_20260523_042430.jpg new file mode 100644 index 0000000..7f9b3dd Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_042430.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_042701.jpg b/smart-drop-point/public/uploads/cam_20260523_042701.jpg new file mode 100644 index 0000000..c560f9a Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_042701.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_042903.jpg b/smart-drop-point/public/uploads/cam_20260523_042903.jpg new file mode 100644 index 0000000..b78f1fe Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_042903.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_043335.jpg b/smart-drop-point/public/uploads/cam_20260523_043335.jpg new file mode 100644 index 0000000..8aabe54 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_043335.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260523_043652.jpg b/smart-drop-point/public/uploads/cam_20260523_043652.jpg new file mode 100644 index 0000000..b5f46ff Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260523_043652.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_125129.jpg b/smart-drop-point/public/uploads/cam_20260524_125129.jpg new file mode 100644 index 0000000..ec62576 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_125129.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_125445.jpg b/smart-drop-point/public/uploads/cam_20260524_125445.jpg new file mode 100644 index 0000000..7feb2ac Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_125445.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_125847.jpg b/smart-drop-point/public/uploads/cam_20260524_125847.jpg new file mode 100644 index 0000000..a066e27 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_125847.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_125935.jpg b/smart-drop-point/public/uploads/cam_20260524_125935.jpg new file mode 100644 index 0000000..0c412a6 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_125935.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_130135.jpg b/smart-drop-point/public/uploads/cam_20260524_130135.jpg new file mode 100644 index 0000000..de91bf0 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_130135.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_130534.jpg b/smart-drop-point/public/uploads/cam_20260524_130534.jpg new file mode 100644 index 0000000..6385d31 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_130534.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_130752.jpg b/smart-drop-point/public/uploads/cam_20260524_130752.jpg new file mode 100644 index 0000000..772b248 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_130752.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_131103.jpg b/smart-drop-point/public/uploads/cam_20260524_131103.jpg new file mode 100644 index 0000000..338dfa5 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_131103.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_131140.jpg b/smart-drop-point/public/uploads/cam_20260524_131140.jpg new file mode 100644 index 0000000..59e021b Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_131140.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_131235.jpg b/smart-drop-point/public/uploads/cam_20260524_131235.jpg new file mode 100644 index 0000000..1f2c5a3 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_131235.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_131342.jpg b/smart-drop-point/public/uploads/cam_20260524_131342.jpg new file mode 100644 index 0000000..469bf30 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_131342.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_131516.jpg b/smart-drop-point/public/uploads/cam_20260524_131516.jpg new file mode 100644 index 0000000..aef4a97 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_131516.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_165436.jpg b/smart-drop-point/public/uploads/cam_20260524_165436.jpg new file mode 100644 index 0000000..38360a4 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_165436.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_165917.jpg b/smart-drop-point/public/uploads/cam_20260524_165917.jpg new file mode 100644 index 0000000..ed9f9d8 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_165917.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_170123.jpg b/smart-drop-point/public/uploads/cam_20260524_170123.jpg new file mode 100644 index 0000000..251e2e5 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_170123.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_170143.jpg b/smart-drop-point/public/uploads/cam_20260524_170143.jpg new file mode 100644 index 0000000..12ba145 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_170143.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_170310.jpg b/smart-drop-point/public/uploads/cam_20260524_170310.jpg new file mode 100644 index 0000000..694d399 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_170310.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_180443.jpg b/smart-drop-point/public/uploads/cam_20260524_180443.jpg new file mode 100644 index 0000000..512f763 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_180443.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_181159.jpg b/smart-drop-point/public/uploads/cam_20260524_181159.jpg new file mode 100644 index 0000000..d0d7cbf Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_181159.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_181313.jpg b/smart-drop-point/public/uploads/cam_20260524_181313.jpg new file mode 100644 index 0000000..fe835c0 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_181313.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_181401.jpg b/smart-drop-point/public/uploads/cam_20260524_181401.jpg new file mode 100644 index 0000000..34d0836 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_181401.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_181611.jpg b/smart-drop-point/public/uploads/cam_20260524_181611.jpg new file mode 100644 index 0000000..e754ca0 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_181611.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_181710.jpg b/smart-drop-point/public/uploads/cam_20260524_181710.jpg new file mode 100644 index 0000000..1a2b59f Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_181710.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_182102.jpg b/smart-drop-point/public/uploads/cam_20260524_182102.jpg new file mode 100644 index 0000000..0278f3e Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_182102.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_182153.jpg b/smart-drop-point/public/uploads/cam_20260524_182153.jpg new file mode 100644 index 0000000..614942f Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_182153.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_182235.jpg b/smart-drop-point/public/uploads/cam_20260524_182235.jpg new file mode 100644 index 0000000..cbf9893 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_182235.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_182407.jpg b/smart-drop-point/public/uploads/cam_20260524_182407.jpg new file mode 100644 index 0000000..4b78842 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_182407.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_182555.jpg b/smart-drop-point/public/uploads/cam_20260524_182555.jpg new file mode 100644 index 0000000..b24c356 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_182555.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_182631.jpg b/smart-drop-point/public/uploads/cam_20260524_182631.jpg new file mode 100644 index 0000000..9489408 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_182631.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_183519.jpg b/smart-drop-point/public/uploads/cam_20260524_183519.jpg new file mode 100644 index 0000000..301305c Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_183519.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_183652.jpg b/smart-drop-point/public/uploads/cam_20260524_183652.jpg new file mode 100644 index 0000000..f3f4570 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_183652.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_183739.jpg b/smart-drop-point/public/uploads/cam_20260524_183739.jpg new file mode 100644 index 0000000..fc76b1d Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_183739.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_183821.jpg b/smart-drop-point/public/uploads/cam_20260524_183821.jpg new file mode 100644 index 0000000..16cd28e Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_183821.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_183918.jpg b/smart-drop-point/public/uploads/cam_20260524_183918.jpg new file mode 100644 index 0000000..3bff26f Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_183918.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_183949.jpg b/smart-drop-point/public/uploads/cam_20260524_183949.jpg new file mode 100644 index 0000000..6cec953 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_183949.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_184110.jpg b/smart-drop-point/public/uploads/cam_20260524_184110.jpg new file mode 100644 index 0000000..a71342c Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_184110.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_184238.jpg b/smart-drop-point/public/uploads/cam_20260524_184238.jpg new file mode 100644 index 0000000..95eb5cf Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_184238.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_184342.jpg b/smart-drop-point/public/uploads/cam_20260524_184342.jpg new file mode 100644 index 0000000..9146b22 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_184342.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_184422.jpg b/smart-drop-point/public/uploads/cam_20260524_184422.jpg new file mode 100644 index 0000000..5331558 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_184422.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_184451.jpg b/smart-drop-point/public/uploads/cam_20260524_184451.jpg new file mode 100644 index 0000000..37eccca Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_184451.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_184518.jpg b/smart-drop-point/public/uploads/cam_20260524_184518.jpg new file mode 100644 index 0000000..6ca98b3 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_184518.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_185331.jpg b/smart-drop-point/public/uploads/cam_20260524_185331.jpg new file mode 100644 index 0000000..d018146 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_185331.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_185458.jpg b/smart-drop-point/public/uploads/cam_20260524_185458.jpg new file mode 100644 index 0000000..12499d3 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_185458.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_185535.jpg b/smart-drop-point/public/uploads/cam_20260524_185535.jpg new file mode 100644 index 0000000..1575a66 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_185535.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_190022.jpg b/smart-drop-point/public/uploads/cam_20260524_190022.jpg new file mode 100644 index 0000000..8b01779 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_190022.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_190102.jpg b/smart-drop-point/public/uploads/cam_20260524_190102.jpg new file mode 100644 index 0000000..a398791 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_190102.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_190201.jpg b/smart-drop-point/public/uploads/cam_20260524_190201.jpg new file mode 100644 index 0000000..c611817 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_190201.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_190255.jpg b/smart-drop-point/public/uploads/cam_20260524_190255.jpg new file mode 100644 index 0000000..91353fe Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_190255.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_190347.jpg b/smart-drop-point/public/uploads/cam_20260524_190347.jpg new file mode 100644 index 0000000..e0b222a Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_190347.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_190601.jpg b/smart-drop-point/public/uploads/cam_20260524_190601.jpg new file mode 100644 index 0000000..091999c Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_190601.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260524_191248.jpg b/smart-drop-point/public/uploads/cam_20260524_191248.jpg new file mode 100644 index 0000000..357580f Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260524_191248.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260530_030951.jpg b/smart-drop-point/public/uploads/cam_20260530_030951.jpg new file mode 100644 index 0000000..3b93f5c Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260530_030951.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260531_094432.jpg b/smart-drop-point/public/uploads/cam_20260531_094432.jpg new file mode 100644 index 0000000..c105811 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260531_094432.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260531_094634.jpg b/smart-drop-point/public/uploads/cam_20260531_094634.jpg new file mode 100644 index 0000000..56ae27d Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260531_094634.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260531_094727.jpg b/smart-drop-point/public/uploads/cam_20260531_094727.jpg new file mode 100644 index 0000000..b958768 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260531_094727.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260531_094819.jpg b/smart-drop-point/public/uploads/cam_20260531_094819.jpg new file mode 100644 index 0000000..762d0ab Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260531_094819.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260531_094929.jpg b/smart-drop-point/public/uploads/cam_20260531_094929.jpg new file mode 100644 index 0000000..4ac2251 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260531_094929.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260531_095012.jpg b/smart-drop-point/public/uploads/cam_20260531_095012.jpg new file mode 100644 index 0000000..591d01a Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260531_095012.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260531_095140.jpg b/smart-drop-point/public/uploads/cam_20260531_095140.jpg new file mode 100644 index 0000000..579e950 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260531_095140.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260531_095326.jpg b/smart-drop-point/public/uploads/cam_20260531_095326.jpg new file mode 100644 index 0000000..9ccfcc1 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260531_095326.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260531_095412.jpg b/smart-drop-point/public/uploads/cam_20260531_095412.jpg new file mode 100644 index 0000000..f294031 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260531_095412.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260531_095535.jpg b/smart-drop-point/public/uploads/cam_20260531_095535.jpg new file mode 100644 index 0000000..1ed7200 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260531_095535.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260608_065736.jpg b/smart-drop-point/public/uploads/cam_20260608_065736.jpg new file mode 100644 index 0000000..927fc3c Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260608_065736.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260608_070046.jpg b/smart-drop-point/public/uploads/cam_20260608_070046.jpg new file mode 100644 index 0000000..9e9d08e Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260608_070046.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260608_070118.jpg b/smart-drop-point/public/uploads/cam_20260608_070118.jpg new file mode 100644 index 0000000..6ea00f1 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260608_070118.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260608_070144.jpg b/smart-drop-point/public/uploads/cam_20260608_070144.jpg new file mode 100644 index 0000000..3976fc5 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260608_070144.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260608_071449.jpg b/smart-drop-point/public/uploads/cam_20260608_071449.jpg new file mode 100644 index 0000000..47fb58b Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260608_071449.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260608_072540.jpg b/smart-drop-point/public/uploads/cam_20260608_072540.jpg new file mode 100644 index 0000000..b71a7d5 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260608_072540.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260608_074127.jpg b/smart-drop-point/public/uploads/cam_20260608_074127.jpg new file mode 100644 index 0000000..5f32996 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260608_074127.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260608_074315.jpg b/smart-drop-point/public/uploads/cam_20260608_074315.jpg new file mode 100644 index 0000000..36b8828 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260608_074315.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260608_075600.jpg b/smart-drop-point/public/uploads/cam_20260608_075600.jpg new file mode 100644 index 0000000..217913f Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260608_075600.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260612_042248.jpg b/smart-drop-point/public/uploads/cam_20260612_042248.jpg new file mode 100644 index 0000000..0624df7 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260612_042248.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260612_042255.jpg b/smart-drop-point/public/uploads/cam_20260612_042255.jpg new file mode 100644 index 0000000..e8afcdb Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260612_042255.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260612_042336.jpg b/smart-drop-point/public/uploads/cam_20260612_042336.jpg new file mode 100644 index 0000000..4fbb7f8 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260612_042336.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260612_042515.jpg b/smart-drop-point/public/uploads/cam_20260612_042515.jpg new file mode 100644 index 0000000..f4359b3 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260612_042515.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260612_042757.jpg b/smart-drop-point/public/uploads/cam_20260612_042757.jpg new file mode 100644 index 0000000..652056e Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260612_042757.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_024409.jpg b/smart-drop-point/public/uploads/cam_20260617_024409.jpg new file mode 100644 index 0000000..10f7944 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_024409.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_040653.jpg b/smart-drop-point/public/uploads/cam_20260617_040653.jpg new file mode 100644 index 0000000..fbe8785 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_040653.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_041941.jpg b/smart-drop-point/public/uploads/cam_20260617_041941.jpg new file mode 100644 index 0000000..e157b00 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_041941.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_042038.jpg b/smart-drop-point/public/uploads/cam_20260617_042038.jpg new file mode 100644 index 0000000..6b19d90 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_042038.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_042200.jpg b/smart-drop-point/public/uploads/cam_20260617_042200.jpg new file mode 100644 index 0000000..d85068f Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_042200.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_042621.jpg b/smart-drop-point/public/uploads/cam_20260617_042621.jpg new file mode 100644 index 0000000..6a3834e Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_042621.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_042736.jpg b/smart-drop-point/public/uploads/cam_20260617_042736.jpg new file mode 100644 index 0000000..a673e3e Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_042736.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_042830.jpg b/smart-drop-point/public/uploads/cam_20260617_042830.jpg new file mode 100644 index 0000000..c9a4ea6 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_042830.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_042930.jpg b/smart-drop-point/public/uploads/cam_20260617_042930.jpg new file mode 100644 index 0000000..479ab7b Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_042930.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_043105.jpg b/smart-drop-point/public/uploads/cam_20260617_043105.jpg new file mode 100644 index 0000000..33fb8f3 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_043105.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_043225.jpg b/smart-drop-point/public/uploads/cam_20260617_043225.jpg new file mode 100644 index 0000000..0676f4b Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_043225.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_043313.jpg b/smart-drop-point/public/uploads/cam_20260617_043313.jpg new file mode 100644 index 0000000..81142ab Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_043313.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_043430.jpg b/smart-drop-point/public/uploads/cam_20260617_043430.jpg new file mode 100644 index 0000000..1d360c9 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_043430.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_043519.jpg b/smart-drop-point/public/uploads/cam_20260617_043519.jpg new file mode 100644 index 0000000..c32e280 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_043519.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_043746.jpg b/smart-drop-point/public/uploads/cam_20260617_043746.jpg new file mode 100644 index 0000000..bfe62d0 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_043746.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_044018.jpg b/smart-drop-point/public/uploads/cam_20260617_044018.jpg new file mode 100644 index 0000000..f155f4d Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_044018.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260617_044113.jpg b/smart-drop-point/public/uploads/cam_20260617_044113.jpg new file mode 100644 index 0000000..f0f6230 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260617_044113.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260618_035056.jpg b/smart-drop-point/public/uploads/cam_20260618_035056.jpg new file mode 100644 index 0000000..63f524c Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260618_035056.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260618_035142.jpg b/smart-drop-point/public/uploads/cam_20260618_035142.jpg new file mode 100644 index 0000000..dbbd377 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260618_035142.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260618_035318.jpg b/smart-drop-point/public/uploads/cam_20260618_035318.jpg new file mode 100644 index 0000000..2699983 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260618_035318.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260618_040743.jpg b/smart-drop-point/public/uploads/cam_20260618_040743.jpg new file mode 100644 index 0000000..97e1430 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260618_040743.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260618_040831.jpg b/smart-drop-point/public/uploads/cam_20260618_040831.jpg new file mode 100644 index 0000000..890ebee Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260618_040831.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260618_040945.jpg b/smart-drop-point/public/uploads/cam_20260618_040945.jpg new file mode 100644 index 0000000..331833b Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260618_040945.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260618_041032.jpg b/smart-drop-point/public/uploads/cam_20260618_041032.jpg new file mode 100644 index 0000000..f274166 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260618_041032.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260618_041226.jpg b/smart-drop-point/public/uploads/cam_20260618_041226.jpg new file mode 100644 index 0000000..9dc5f12 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260618_041226.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260618_041304.jpg b/smart-drop-point/public/uploads/cam_20260618_041304.jpg new file mode 100644 index 0000000..2a20776 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260618_041304.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260618_041514.jpg b/smart-drop-point/public/uploads/cam_20260618_041514.jpg new file mode 100644 index 0000000..7e1a235 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260618_041514.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260624_105706.jpg b/smart-drop-point/public/uploads/cam_20260624_105706.jpg new file mode 100644 index 0000000..74aa1cb Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260624_105706.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260624_141712.jpg b/smart-drop-point/public/uploads/cam_20260624_141712.jpg new file mode 100644 index 0000000..c98d3d3 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260624_141712.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260624_141749.jpg b/smart-drop-point/public/uploads/cam_20260624_141749.jpg new file mode 100644 index 0000000..f4afe5a Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260624_141749.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260624_141817.jpg b/smart-drop-point/public/uploads/cam_20260624_141817.jpg new file mode 100644 index 0000000..77709ed Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260624_141817.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260624_141906.jpg b/smart-drop-point/public/uploads/cam_20260624_141906.jpg new file mode 100644 index 0000000..91613f8 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260624_141906.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260624_141938.jpg b/smart-drop-point/public/uploads/cam_20260624_141938.jpg new file mode 100644 index 0000000..235f08c Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260624_141938.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260624_142017.jpg b/smart-drop-point/public/uploads/cam_20260624_142017.jpg new file mode 100644 index 0000000..7eb4dbc Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260624_142017.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260624_144109.jpg b/smart-drop-point/public/uploads/cam_20260624_144109.jpg new file mode 100644 index 0000000..75ea417 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260624_144109.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_031754.jpg b/smart-drop-point/public/uploads/cam_20260627_031754.jpg new file mode 100644 index 0000000..e304127 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_031754.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_031805.jpg b/smart-drop-point/public/uploads/cam_20260627_031805.jpg new file mode 100644 index 0000000..8ddb939 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_031805.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_032212.jpg b/smart-drop-point/public/uploads/cam_20260627_032212.jpg new file mode 100644 index 0000000..3e62d41 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_032212.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_032257.jpg b/smart-drop-point/public/uploads/cam_20260627_032257.jpg new file mode 100644 index 0000000..ef50990 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_032257.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_032325.jpg b/smart-drop-point/public/uploads/cam_20260627_032325.jpg new file mode 100644 index 0000000..29dcf21 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_032325.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_032400.jpg b/smart-drop-point/public/uploads/cam_20260627_032400.jpg new file mode 100644 index 0000000..cf377ad Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_032400.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_032440.jpg b/smart-drop-point/public/uploads/cam_20260627_032440.jpg new file mode 100644 index 0000000..84ec511 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_032440.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_032516.jpg b/smart-drop-point/public/uploads/cam_20260627_032516.jpg new file mode 100644 index 0000000..7220963 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_032516.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_032603.jpg b/smart-drop-point/public/uploads/cam_20260627_032603.jpg new file mode 100644 index 0000000..7a5eb68 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_032603.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_032655.jpg b/smart-drop-point/public/uploads/cam_20260627_032655.jpg new file mode 100644 index 0000000..86fec06 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_032655.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_032736.jpg b/smart-drop-point/public/uploads/cam_20260627_032736.jpg new file mode 100644 index 0000000..1e72540 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_032736.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_032855.jpg b/smart-drop-point/public/uploads/cam_20260627_032855.jpg new file mode 100644 index 0000000..066e9ed Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_032855.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_032959.jpg b/smart-drop-point/public/uploads/cam_20260627_032959.jpg new file mode 100644 index 0000000..c114c08 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_032959.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_033024.jpg b/smart-drop-point/public/uploads/cam_20260627_033024.jpg new file mode 100644 index 0000000..7258b6b Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_033024.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_033046.jpg b/smart-drop-point/public/uploads/cam_20260627_033046.jpg new file mode 100644 index 0000000..5141f3e Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_033046.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_033140.jpg b/smart-drop-point/public/uploads/cam_20260627_033140.jpg new file mode 100644 index 0000000..ba018d5 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_033140.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_033242.jpg b/smart-drop-point/public/uploads/cam_20260627_033242.jpg new file mode 100644 index 0000000..350bdd7 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_033242.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_033307.jpg b/smart-drop-point/public/uploads/cam_20260627_033307.jpg new file mode 100644 index 0000000..f67d664 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_033307.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_033337.jpg b/smart-drop-point/public/uploads/cam_20260627_033337.jpg new file mode 100644 index 0000000..860239e Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_033337.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_033437.jpg b/smart-drop-point/public/uploads/cam_20260627_033437.jpg new file mode 100644 index 0000000..11d49d2 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_033437.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_033500.jpg b/smart-drop-point/public/uploads/cam_20260627_033500.jpg new file mode 100644 index 0000000..8757249 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_033500.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_033644.jpg b/smart-drop-point/public/uploads/cam_20260627_033644.jpg new file mode 100644 index 0000000..e1fc699 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_033644.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_033718.jpg b/smart-drop-point/public/uploads/cam_20260627_033718.jpg new file mode 100644 index 0000000..ed4ba9d Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_033718.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_033745.jpg b/smart-drop-point/public/uploads/cam_20260627_033745.jpg new file mode 100644 index 0000000..e8892d3 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_033745.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_033815.jpg b/smart-drop-point/public/uploads/cam_20260627_033815.jpg new file mode 100644 index 0000000..56c0dd5 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_033815.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_033840.jpg b/smart-drop-point/public/uploads/cam_20260627_033840.jpg new file mode 100644 index 0000000..4add808 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_033840.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_033906.jpg b/smart-drop-point/public/uploads/cam_20260627_033906.jpg new file mode 100644 index 0000000..51a915f Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_033906.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_033932.jpg b/smart-drop-point/public/uploads/cam_20260627_033932.jpg new file mode 100644 index 0000000..be35ace Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_033932.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_034000.jpg b/smart-drop-point/public/uploads/cam_20260627_034000.jpg new file mode 100644 index 0000000..4f8fd06 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_034000.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_034029.jpg b/smart-drop-point/public/uploads/cam_20260627_034029.jpg new file mode 100644 index 0000000..4c51005 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_034029.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_034220.jpg b/smart-drop-point/public/uploads/cam_20260627_034220.jpg new file mode 100644 index 0000000..eea4dc4 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_034220.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_034301.jpg b/smart-drop-point/public/uploads/cam_20260627_034301.jpg new file mode 100644 index 0000000..5dc4110 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_034301.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260627_034342.jpg b/smart-drop-point/public/uploads/cam_20260627_034342.jpg new file mode 100644 index 0000000..d45e207 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260627_034342.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260628_025038.jpg b/smart-drop-point/public/uploads/cam_20260628_025038.jpg new file mode 100644 index 0000000..702217d Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260628_025038.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260628_025237.jpg b/smart-drop-point/public/uploads/cam_20260628_025237.jpg new file mode 100644 index 0000000..b4abd30 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260628_025237.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260628_025359.jpg b/smart-drop-point/public/uploads/cam_20260628_025359.jpg new file mode 100644 index 0000000..12fc0bf Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260628_025359.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260628_025502.jpg b/smart-drop-point/public/uploads/cam_20260628_025502.jpg new file mode 100644 index 0000000..1f6b969 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260628_025502.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260628_025555.jpg b/smart-drop-point/public/uploads/cam_20260628_025555.jpg new file mode 100644 index 0000000..884dc37 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260628_025555.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260628_025652.jpg b/smart-drop-point/public/uploads/cam_20260628_025652.jpg new file mode 100644 index 0000000..3dfdc8b Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260628_025652.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260628_025722.jpg b/smart-drop-point/public/uploads/cam_20260628_025722.jpg new file mode 100644 index 0000000..c15a071 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260628_025722.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260628_030050.jpg b/smart-drop-point/public/uploads/cam_20260628_030050.jpg new file mode 100644 index 0000000..1f7e8f3 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260628_030050.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260629_124405.jpg b/smart-drop-point/public/uploads/cam_20260629_124405.jpg new file mode 100644 index 0000000..8770253 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260629_124405.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260629_124426.jpg b/smart-drop-point/public/uploads/cam_20260629_124426.jpg new file mode 100644 index 0000000..5386f18 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260629_124426.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260629_234448.jpg b/smart-drop-point/public/uploads/cam_20260629_234448.jpg new file mode 100644 index 0000000..71f9a48 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260629_234448.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260629_234520.jpg b/smart-drop-point/public/uploads/cam_20260629_234520.jpg new file mode 100644 index 0000000..69b7fc3 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260629_234520.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260629_234844.jpg b/smart-drop-point/public/uploads/cam_20260629_234844.jpg new file mode 100644 index 0000000..6410d8f Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260629_234844.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260630_034129.jpg b/smart-drop-point/public/uploads/cam_20260630_034129.jpg new file mode 100644 index 0000000..274b2fc Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260630_034129.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260630_052258.jpg b/smart-drop-point/public/uploads/cam_20260630_052258.jpg new file mode 100644 index 0000000..296c334 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260630_052258.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260630_052337.jpg b/smart-drop-point/public/uploads/cam_20260630_052337.jpg new file mode 100644 index 0000000..2148b28 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260630_052337.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260630_052422.jpg b/smart-drop-point/public/uploads/cam_20260630_052422.jpg new file mode 100644 index 0000000..ab2ca7b Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260630_052422.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260630_052509.jpg b/smart-drop-point/public/uploads/cam_20260630_052509.jpg new file mode 100644 index 0000000..0c2ce9a Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260630_052509.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260630_055048.jpg b/smart-drop-point/public/uploads/cam_20260630_055048.jpg new file mode 100644 index 0000000..d8fb507 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260630_055048.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260630_055133.jpg b/smart-drop-point/public/uploads/cam_20260630_055133.jpg new file mode 100644 index 0000000..30458ed Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260630_055133.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260630_055215.jpg b/smart-drop-point/public/uploads/cam_20260630_055215.jpg new file mode 100644 index 0000000..215e4d5 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260630_055215.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260630_055320.jpg b/smart-drop-point/public/uploads/cam_20260630_055320.jpg new file mode 100644 index 0000000..326a95c Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260630_055320.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260630_055440.jpg b/smart-drop-point/public/uploads/cam_20260630_055440.jpg new file mode 100644 index 0000000..0f8a2a6 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260630_055440.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260630_055524.jpg b/smart-drop-point/public/uploads/cam_20260630_055524.jpg new file mode 100644 index 0000000..ceff81f Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260630_055524.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260630_055556.jpg b/smart-drop-point/public/uploads/cam_20260630_055556.jpg new file mode 100644 index 0000000..c092711 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260630_055556.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260630_055632.jpg b/smart-drop-point/public/uploads/cam_20260630_055632.jpg new file mode 100644 index 0000000..18627c8 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260630_055632.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260630_055738.jpg b/smart-drop-point/public/uploads/cam_20260630_055738.jpg new file mode 100644 index 0000000..046808e Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260630_055738.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_033624.jpg b/smart-drop-point/public/uploads/cam_20260706_033624.jpg new file mode 100644 index 0000000..21bffb9 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_033624.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_033657.jpg b/smart-drop-point/public/uploads/cam_20260706_033657.jpg new file mode 100644 index 0000000..485c7e0 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_033657.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_033833.jpg b/smart-drop-point/public/uploads/cam_20260706_033833.jpg new file mode 100644 index 0000000..6a07743 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_033833.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_034834.jpg b/smart-drop-point/public/uploads/cam_20260706_034834.jpg new file mode 100644 index 0000000..971e9f6 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_034834.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_034917.jpg b/smart-drop-point/public/uploads/cam_20260706_034917.jpg new file mode 100644 index 0000000..fe1b8a5 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_034917.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_042111.jpg b/smart-drop-point/public/uploads/cam_20260706_042111.jpg new file mode 100644 index 0000000..3bda994 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_042111.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_042213.jpg b/smart-drop-point/public/uploads/cam_20260706_042213.jpg new file mode 100644 index 0000000..15dc1e2 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_042213.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_042244.jpg b/smart-drop-point/public/uploads/cam_20260706_042244.jpg new file mode 100644 index 0000000..d04994b Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_042244.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_042333.jpg b/smart-drop-point/public/uploads/cam_20260706_042333.jpg new file mode 100644 index 0000000..af37cc6 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_042333.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_042418.jpg b/smart-drop-point/public/uploads/cam_20260706_042418.jpg new file mode 100644 index 0000000..ac4aedb Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_042418.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_050252.jpg b/smart-drop-point/public/uploads/cam_20260706_050252.jpg new file mode 100644 index 0000000..4111d9c Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_050252.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_050336.jpg b/smart-drop-point/public/uploads/cam_20260706_050336.jpg new file mode 100644 index 0000000..6ff22d3 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_050336.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_140504.jpg b/smart-drop-point/public/uploads/cam_20260706_140504.jpg new file mode 100644 index 0000000..d48f0ee Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_140504.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_140535.jpg b/smart-drop-point/public/uploads/cam_20260706_140535.jpg new file mode 100644 index 0000000..678b4f5 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_140535.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_140621.jpg b/smart-drop-point/public/uploads/cam_20260706_140621.jpg new file mode 100644 index 0000000..02b769d Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_140621.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_140650.jpg b/smart-drop-point/public/uploads/cam_20260706_140650.jpg new file mode 100644 index 0000000..6f9904d Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_140650.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_140716.jpg b/smart-drop-point/public/uploads/cam_20260706_140716.jpg new file mode 100644 index 0000000..e5c9740 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_140716.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_140742.jpg b/smart-drop-point/public/uploads/cam_20260706_140742.jpg new file mode 100644 index 0000000..f1f25f7 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_140742.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_140802.jpg b/smart-drop-point/public/uploads/cam_20260706_140802.jpg new file mode 100644 index 0000000..93ac174 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_140802.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_140901.jpg b/smart-drop-point/public/uploads/cam_20260706_140901.jpg new file mode 100644 index 0000000..8475353 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_140901.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_140938.jpg b/smart-drop-point/public/uploads/cam_20260706_140938.jpg new file mode 100644 index 0000000..bea7bfe Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_140938.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_141000.jpg b/smart-drop-point/public/uploads/cam_20260706_141000.jpg new file mode 100644 index 0000000..767d3f3 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_141000.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_141028.jpg b/smart-drop-point/public/uploads/cam_20260706_141028.jpg new file mode 100644 index 0000000..b5af919 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_141028.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_141101.jpg b/smart-drop-point/public/uploads/cam_20260706_141101.jpg new file mode 100644 index 0000000..8eb15b6 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_141101.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_141148.jpg b/smart-drop-point/public/uploads/cam_20260706_141148.jpg new file mode 100644 index 0000000..5b9ac05 Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_141148.jpg differ diff --git a/smart-drop-point/public/uploads/cam_20260706_141304.jpg b/smart-drop-point/public/uploads/cam_20260706_141304.jpg new file mode 100644 index 0000000..3849cdc Binary files /dev/null and b/smart-drop-point/public/uploads/cam_20260706_141304.jpg differ diff --git a/smart-drop-point/public/uploads/hasil.txt b/smart-drop-point/public/uploads/hasil.txt new file mode 100644 index 0000000..e69de29 diff --git a/smart-drop-point/uploads/cam_20260308_093401_b8821f.jpg b/smart-drop-point/uploads/cam_20260308_093401_b8821f.jpg new file mode 100644 index 0000000..e12df52 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260308_093401_b8821f.jpg differ diff --git a/smart-drop-point/uploads/cam_20260308_094910_3894af.jpg b/smart-drop-point/uploads/cam_20260308_094910_3894af.jpg new file mode 100644 index 0000000..70e95a6 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260308_094910_3894af.jpg differ diff --git a/smart-drop-point/uploads/cam_20260308_095113_b54740.jpg b/smart-drop-point/uploads/cam_20260308_095113_b54740.jpg new file mode 100644 index 0000000..5447b55 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260308_095113_b54740.jpg differ diff --git a/smart-drop-point/uploads/cam_20260308_095207_e32f5d.jpg b/smart-drop-point/uploads/cam_20260308_095207_e32f5d.jpg new file mode 100644 index 0000000..65cb1a4 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260308_095207_e32f5d.jpg differ diff --git a/smart-drop-point/uploads/cam_20260308_095840_d70219.jpg b/smart-drop-point/uploads/cam_20260308_095840_d70219.jpg new file mode 100644 index 0000000..9ca1580 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260308_095840_d70219.jpg differ diff --git a/smart-drop-point/uploads/cam_20260308_095926_94f155.jpg b/smart-drop-point/uploads/cam_20260308_095926_94f155.jpg new file mode 100644 index 0000000..e0058a6 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260308_095926_94f155.jpg differ diff --git a/smart-drop-point/uploads/cam_20260308_100009_5e06c3.jpg b/smart-drop-point/uploads/cam_20260308_100009_5e06c3.jpg new file mode 100644 index 0000000..14e2b62 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260308_100009_5e06c3.jpg differ diff --git a/smart-drop-point/uploads/cam_20260308_100047_a5d66a.jpg b/smart-drop-point/uploads/cam_20260308_100047_a5d66a.jpg new file mode 100644 index 0000000..26dcac0 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260308_100047_a5d66a.jpg differ diff --git a/smart-drop-point/uploads/cam_20260308_100136_c75d1d.jpg b/smart-drop-point/uploads/cam_20260308_100136_c75d1d.jpg new file mode 100644 index 0000000..27baa7e Binary files /dev/null and b/smart-drop-point/uploads/cam_20260308_100136_c75d1d.jpg differ diff --git a/smart-drop-point/uploads/cam_20260308_100331_157cd0.jpg b/smart-drop-point/uploads/cam_20260308_100331_157cd0.jpg new file mode 100644 index 0000000..afe18d1 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260308_100331_157cd0.jpg differ diff --git a/smart-drop-point/uploads/cam_20260313_085018_fe16ff.jpg b/smart-drop-point/uploads/cam_20260313_085018_fe16ff.jpg new file mode 100644 index 0000000..8574ec0 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260313_085018_fe16ff.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_075211_3d508d.jpg b/smart-drop-point/uploads/cam_20260405_075211_3d508d.jpg new file mode 100644 index 0000000..9796136 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_075211_3d508d.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_075228_3cc77b.jpg b/smart-drop-point/uploads/cam_20260405_075228_3cc77b.jpg new file mode 100644 index 0000000..5a4e438 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_075228_3cc77b.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_075552_f7576c.jpg b/smart-drop-point/uploads/cam_20260405_075552_f7576c.jpg new file mode 100644 index 0000000..5d0d4ab Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_075552_f7576c.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_091332_c07317.jpg b/smart-drop-point/uploads/cam_20260405_091332_c07317.jpg new file mode 100644 index 0000000..8968684 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_091332_c07317.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_091542_3a6029.jpg b/smart-drop-point/uploads/cam_20260405_091542_3a6029.jpg new file mode 100644 index 0000000..e518135 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_091542_3a6029.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_091625_f0964d.jpg b/smart-drop-point/uploads/cam_20260405_091625_f0964d.jpg new file mode 100644 index 0000000..2203c26 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_091625_f0964d.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_091657_f59137.jpg b/smart-drop-point/uploads/cam_20260405_091657_f59137.jpg new file mode 100644 index 0000000..d4589ae Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_091657_f59137.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_091733_faf2d2.jpg b/smart-drop-point/uploads/cam_20260405_091733_faf2d2.jpg new file mode 100644 index 0000000..d30d048 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_091733_faf2d2.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_091805_896adf.jpg b/smart-drop-point/uploads/cam_20260405_091805_896adf.jpg new file mode 100644 index 0000000..7a2fce1 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_091805_896adf.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_091835_9df815.jpg b/smart-drop-point/uploads/cam_20260405_091835_9df815.jpg new file mode 100644 index 0000000..bf698e7 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_091835_9df815.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_091858_eb966b.jpg b/smart-drop-point/uploads/cam_20260405_091858_eb966b.jpg new file mode 100644 index 0000000..21195a0 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_091858_eb966b.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_091946_bec804.jpg b/smart-drop-point/uploads/cam_20260405_091946_bec804.jpg new file mode 100644 index 0000000..f16ba9d Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_091946_bec804.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_092019_c7ed0f.jpg b/smart-drop-point/uploads/cam_20260405_092019_c7ed0f.jpg new file mode 100644 index 0000000..2d47d90 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_092019_c7ed0f.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_092112_af37aa.jpg b/smart-drop-point/uploads/cam_20260405_092112_af37aa.jpg new file mode 100644 index 0000000..9b2ecf2 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_092112_af37aa.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_092145_a5fd87.jpg b/smart-drop-point/uploads/cam_20260405_092145_a5fd87.jpg new file mode 100644 index 0000000..30206b7 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_092145_a5fd87.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_092202_d8552d.jpg b/smart-drop-point/uploads/cam_20260405_092202_d8552d.jpg new file mode 100644 index 0000000..353b58f Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_092202_d8552d.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_092242_bb5eee.jpg b/smart-drop-point/uploads/cam_20260405_092242_bb5eee.jpg new file mode 100644 index 0000000..6f6e1b5 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_092242_bb5eee.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_092321_4da92b.jpg b/smart-drop-point/uploads/cam_20260405_092321_4da92b.jpg new file mode 100644 index 0000000..4cad4ed Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_092321_4da92b.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_092452_51d065.jpg b/smart-drop-point/uploads/cam_20260405_092452_51d065.jpg new file mode 100644 index 0000000..afe3675 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_092452_51d065.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_092533_e53ce7.jpg b/smart-drop-point/uploads/cam_20260405_092533_e53ce7.jpg new file mode 100644 index 0000000..f2159fa Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_092533_e53ce7.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_092633_788bd9.jpg b/smart-drop-point/uploads/cam_20260405_092633_788bd9.jpg new file mode 100644 index 0000000..fd76c4c Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_092633_788bd9.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_092714_6ee45e.jpg b/smart-drop-point/uploads/cam_20260405_092714_6ee45e.jpg new file mode 100644 index 0000000..6656095 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_092714_6ee45e.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_092816_102fc9.jpg b/smart-drop-point/uploads/cam_20260405_092816_102fc9.jpg new file mode 100644 index 0000000..99b5bba Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_092816_102fc9.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_092920_c72ae6.jpg b/smart-drop-point/uploads/cam_20260405_092920_c72ae6.jpg new file mode 100644 index 0000000..f2e647a Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_092920_c72ae6.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_093016_b45b36.jpg b/smart-drop-point/uploads/cam_20260405_093016_b45b36.jpg new file mode 100644 index 0000000..473d5c9 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_093016_b45b36.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_093051_bab2f4.jpg b/smart-drop-point/uploads/cam_20260405_093051_bab2f4.jpg new file mode 100644 index 0000000..372b075 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_093051_bab2f4.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_093237_748332.jpg b/smart-drop-point/uploads/cam_20260405_093237_748332.jpg new file mode 100644 index 0000000..8a74b22 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_093237_748332.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_093317_b1ac34.jpg b/smart-drop-point/uploads/cam_20260405_093317_b1ac34.jpg new file mode 100644 index 0000000..e61c5e6 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_093317_b1ac34.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_093417_c24e94.jpg b/smart-drop-point/uploads/cam_20260405_093417_c24e94.jpg new file mode 100644 index 0000000..4bc37d1 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_093417_c24e94.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_093539_eb7da5.jpg b/smart-drop-point/uploads/cam_20260405_093539_eb7da5.jpg new file mode 100644 index 0000000..d86c612 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_093539_eb7da5.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_093631_6a7307.jpg b/smart-drop-point/uploads/cam_20260405_093631_6a7307.jpg new file mode 100644 index 0000000..af567b3 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_093631_6a7307.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_093719_7ad871.jpg b/smart-drop-point/uploads/cam_20260405_093719_7ad871.jpg new file mode 100644 index 0000000..88c19f4 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_093719_7ad871.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_093804_eea509.jpg b/smart-drop-point/uploads/cam_20260405_093804_eea509.jpg new file mode 100644 index 0000000..7c4f2f8 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_093804_eea509.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_093844_bbdd56.jpg b/smart-drop-point/uploads/cam_20260405_093844_bbdd56.jpg new file mode 100644 index 0000000..516a729 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_093844_bbdd56.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_094045_fc2078.jpg b/smart-drop-point/uploads/cam_20260405_094045_fc2078.jpg new file mode 100644 index 0000000..b42aedf Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_094045_fc2078.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_094112_4c20ca.jpg b/smart-drop-point/uploads/cam_20260405_094112_4c20ca.jpg new file mode 100644 index 0000000..78d8b6f Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_094112_4c20ca.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_094146_367e90.jpg b/smart-drop-point/uploads/cam_20260405_094146_367e90.jpg new file mode 100644 index 0000000..cf99e08 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_094146_367e90.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_094157_add9c5.jpg b/smart-drop-point/uploads/cam_20260405_094157_add9c5.jpg new file mode 100644 index 0000000..968fcdf Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_094157_add9c5.jpg differ diff --git a/smart-drop-point/uploads/cam_20260405_094225_2e09cb.jpg b/smart-drop-point/uploads/cam_20260405_094225_2e09cb.jpg new file mode 100644 index 0000000..dc183aa Binary files /dev/null and b/smart-drop-point/uploads/cam_20260405_094225_2e09cb.jpg differ diff --git a/smart-drop-point/uploads/cam_20260427_082033_a44398.jpg b/smart-drop-point/uploads/cam_20260427_082033_a44398.jpg new file mode 100644 index 0000000..a4f938c Binary files /dev/null and b/smart-drop-point/uploads/cam_20260427_082033_a44398.jpg differ diff --git a/smart-drop-point/uploads/cam_20260427_082228_fe9d2a.jpg b/smart-drop-point/uploads/cam_20260427_082228_fe9d2a.jpg new file mode 100644 index 0000000..e046a04 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260427_082228_fe9d2a.jpg differ diff --git a/smart-drop-point/uploads/cam_20260427_082328_ca6548.jpg b/smart-drop-point/uploads/cam_20260427_082328_ca6548.jpg new file mode 100644 index 0000000..466f6b5 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260427_082328_ca6548.jpg differ diff --git a/smart-drop-point/uploads/cam_20260427_082408_45d054.jpg b/smart-drop-point/uploads/cam_20260427_082408_45d054.jpg new file mode 100644 index 0000000..08a5d72 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260427_082408_45d054.jpg differ diff --git a/smart-drop-point/uploads/cam_20260427_082728_67bcd9.jpg b/smart-drop-point/uploads/cam_20260427_082728_67bcd9.jpg new file mode 100644 index 0000000..7eecbca Binary files /dev/null and b/smart-drop-point/uploads/cam_20260427_082728_67bcd9.jpg differ diff --git a/smart-drop-point/uploads/cam_20260427_082829_0c846d.jpg b/smart-drop-point/uploads/cam_20260427_082829_0c846d.jpg new file mode 100644 index 0000000..c78f129 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260427_082829_0c846d.jpg differ diff --git a/smart-drop-point/uploads/cam_20260427_082905_13271b.jpg b/smart-drop-point/uploads/cam_20260427_082905_13271b.jpg new file mode 100644 index 0000000..e3c4ac0 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260427_082905_13271b.jpg differ diff --git a/smart-drop-point/uploads/cam_20260427_083002_fed0d8.jpg b/smart-drop-point/uploads/cam_20260427_083002_fed0d8.jpg new file mode 100644 index 0000000..810c6a8 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260427_083002_fed0d8.jpg differ diff --git a/smart-drop-point/uploads/cam_20260427_083717_f9ff7d.jpg b/smart-drop-point/uploads/cam_20260427_083717_f9ff7d.jpg new file mode 100644 index 0000000..f40f901 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260427_083717_f9ff7d.jpg differ diff --git a/smart-drop-point/uploads/cam_20260427_083752_17369a.jpg b/smart-drop-point/uploads/cam_20260427_083752_17369a.jpg new file mode 100644 index 0000000..220ccda Binary files /dev/null and b/smart-drop-point/uploads/cam_20260427_083752_17369a.jpg differ diff --git a/smart-drop-point/uploads/cam_20260427_083846_d16ba2.jpg b/smart-drop-point/uploads/cam_20260427_083846_d16ba2.jpg new file mode 100644 index 0000000..e4df925 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260427_083846_d16ba2.jpg differ diff --git a/smart-drop-point/uploads/cam_20260427_084830_50c5fe.jpg b/smart-drop-point/uploads/cam_20260427_084830_50c5fe.jpg new file mode 100644 index 0000000..038876f Binary files /dev/null and b/smart-drop-point/uploads/cam_20260427_084830_50c5fe.jpg differ diff --git a/smart-drop-point/uploads/cam_20260427_091110_660bf1.jpg b/smart-drop-point/uploads/cam_20260427_091110_660bf1.jpg new file mode 100644 index 0000000..d9d590c Binary files /dev/null and b/smart-drop-point/uploads/cam_20260427_091110_660bf1.jpg differ diff --git a/smart-drop-point/uploads/cam_20260427_091214_cfe0af.jpg b/smart-drop-point/uploads/cam_20260427_091214_cfe0af.jpg new file mode 100644 index 0000000..fca33bf Binary files /dev/null and b/smart-drop-point/uploads/cam_20260427_091214_cfe0af.jpg differ diff --git a/smart-drop-point/uploads/cam_20260427_091346_fdee78.jpg b/smart-drop-point/uploads/cam_20260427_091346_fdee78.jpg new file mode 100644 index 0000000..9d8d9ef Binary files /dev/null and b/smart-drop-point/uploads/cam_20260427_091346_fdee78.jpg differ diff --git a/smart-drop-point/uploads/cam_20260428_075528_7b7c48.jpg b/smart-drop-point/uploads/cam_20260428_075528_7b7c48.jpg new file mode 100644 index 0000000..a3cc763 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260428_075528_7b7c48.jpg differ diff --git a/smart-drop-point/uploads/cam_20260428_080145_77a745.jpg b/smart-drop-point/uploads/cam_20260428_080145_77a745.jpg new file mode 100644 index 0000000..4ef117e Binary files /dev/null and b/smart-drop-point/uploads/cam_20260428_080145_77a745.jpg differ diff --git a/smart-drop-point/uploads/cam_20260504_080442_965249.jpg b/smart-drop-point/uploads/cam_20260504_080442_965249.jpg new file mode 100644 index 0000000..28ba58c Binary files /dev/null and b/smart-drop-point/uploads/cam_20260504_080442_965249.jpg differ diff --git a/smart-drop-point/uploads/cam_20260512_102032_405.jpg b/smart-drop-point/uploads/cam_20260512_102032_405.jpg new file mode 100644 index 0000000..c62db9c Binary files /dev/null and b/smart-drop-point/uploads/cam_20260512_102032_405.jpg differ diff --git a/smart-drop-point/uploads/cam_20260513_083205_780.jpg b/smart-drop-point/uploads/cam_20260513_083205_780.jpg new file mode 100644 index 0000000..d84a5e5 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260513_083205_780.jpg differ diff --git a/smart-drop-point/uploads/cam_20260513_084952_247.jpg b/smart-drop-point/uploads/cam_20260513_084952_247.jpg new file mode 100644 index 0000000..54f01f4 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260513_084952_247.jpg differ diff --git a/smart-drop-point/uploads/cam_20260513_090117_667.jpg b/smart-drop-point/uploads/cam_20260513_090117_667.jpg new file mode 100644 index 0000000..01dc662 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260513_090117_667.jpg differ diff --git a/smart-drop-point/uploads/cam_20260513_184443_584.jpg b/smart-drop-point/uploads/cam_20260513_184443_584.jpg new file mode 100644 index 0000000..983fbc7 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260513_184443_584.jpg differ diff --git a/smart-drop-point/uploads/cam_20260514_084135_427.jpg b/smart-drop-point/uploads/cam_20260514_084135_427.jpg new file mode 100644 index 0000000..1fe183f Binary files /dev/null and b/smart-drop-point/uploads/cam_20260514_084135_427.jpg differ diff --git a/smart-drop-point/uploads/cam_20260514_084313_138.jpg b/smart-drop-point/uploads/cam_20260514_084313_138.jpg new file mode 100644 index 0000000..d67938b Binary files /dev/null and b/smart-drop-point/uploads/cam_20260514_084313_138.jpg differ diff --git a/smart-drop-point/uploads/cam_20260514_084800_145.jpg b/smart-drop-point/uploads/cam_20260514_084800_145.jpg new file mode 100644 index 0000000..f0c5b23 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260514_084800_145.jpg differ diff --git a/smart-drop-point/uploads/cam_20260514_165717_616.jpg b/smart-drop-point/uploads/cam_20260514_165717_616.jpg new file mode 100644 index 0000000..1e9332d Binary files /dev/null and b/smart-drop-point/uploads/cam_20260514_165717_616.jpg differ diff --git a/smart-drop-point/uploads/cam_20260514_191912_580.jpg b/smart-drop-point/uploads/cam_20260514_191912_580.jpg new file mode 100644 index 0000000..bfd7218 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260514_191912_580.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_081010_848.jpg b/smart-drop-point/uploads/cam_20260515_081010_848.jpg new file mode 100644 index 0000000..cc6d79d Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_081010_848.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_081354_881.jpg b/smart-drop-point/uploads/cam_20260515_081354_881.jpg new file mode 100644 index 0000000..42aa499 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_081354_881.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_081633_283.jpg b/smart-drop-point/uploads/cam_20260515_081633_283.jpg new file mode 100644 index 0000000..3923053 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_081633_283.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_082126_946.jpg b/smart-drop-point/uploads/cam_20260515_082126_946.jpg new file mode 100644 index 0000000..3f8bd63 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_082126_946.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_082415_120.jpg b/smart-drop-point/uploads/cam_20260515_082415_120.jpg new file mode 100644 index 0000000..5c63ebd Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_082415_120.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_082915_262.jpg b/smart-drop-point/uploads/cam_20260515_082915_262.jpg new file mode 100644 index 0000000..ca52c8b Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_082915_262.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_083446_221.jpg b/smart-drop-point/uploads/cam_20260515_083446_221.jpg new file mode 100644 index 0000000..028d6bc Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_083446_221.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_175757_359.jpg b/smart-drop-point/uploads/cam_20260515_175757_359.jpg new file mode 100644 index 0000000..04fdd9d Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_175757_359.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_181838_807.jpg b/smart-drop-point/uploads/cam_20260515_181838_807.jpg new file mode 100644 index 0000000..d8e86a7 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_181838_807.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_182206_377.jpg b/smart-drop-point/uploads/cam_20260515_182206_377.jpg new file mode 100644 index 0000000..5acadac Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_182206_377.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_182415_142.jpg b/smart-drop-point/uploads/cam_20260515_182415_142.jpg new file mode 100644 index 0000000..5f518b5 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_182415_142.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_182757_574.jpg b/smart-drop-point/uploads/cam_20260515_182757_574.jpg new file mode 100644 index 0000000..e508cc3 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_182757_574.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_183010_320.jpg b/smart-drop-point/uploads/cam_20260515_183010_320.jpg new file mode 100644 index 0000000..d5a1389 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_183010_320.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_183308_154.jpg b/smart-drop-point/uploads/cam_20260515_183308_154.jpg new file mode 100644 index 0000000..0449f14 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_183308_154.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_183652_970.jpg b/smart-drop-point/uploads/cam_20260515_183652_970.jpg new file mode 100644 index 0000000..45d3bcc Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_183652_970.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_183948_417.jpg b/smart-drop-point/uploads/cam_20260515_183948_417.jpg new file mode 100644 index 0000000..e4274b0 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_183948_417.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_185026_880.jpg b/smart-drop-point/uploads/cam_20260515_185026_880.jpg new file mode 100644 index 0000000..947a443 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_185026_880.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_185433_659.jpg b/smart-drop-point/uploads/cam_20260515_185433_659.jpg new file mode 100644 index 0000000..d0afa3b Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_185433_659.jpg differ diff --git a/smart-drop-point/uploads/cam_20260515_191800_612.jpg b/smart-drop-point/uploads/cam_20260515_191800_612.jpg new file mode 100644 index 0000000..7b35f58 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260515_191800_612.jpg differ diff --git a/smart-drop-point/uploads/cam_20260516_071437_430.jpg b/smart-drop-point/uploads/cam_20260516_071437_430.jpg new file mode 100644 index 0000000..0b76086 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260516_071437_430.jpg differ diff --git a/smart-drop-point/uploads/cam_20260516_071923_573.jpg b/smart-drop-point/uploads/cam_20260516_071923_573.jpg new file mode 100644 index 0000000..a065c0d Binary files /dev/null and b/smart-drop-point/uploads/cam_20260516_071923_573.jpg differ diff --git a/smart-drop-point/uploads/cam_20260516_072631_284.jpg b/smart-drop-point/uploads/cam_20260516_072631_284.jpg new file mode 100644 index 0000000..dd4c8d1 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260516_072631_284.jpg differ diff --git a/smart-drop-point/uploads/cam_20260516_073103_879.jpg b/smart-drop-point/uploads/cam_20260516_073103_879.jpg new file mode 100644 index 0000000..5130709 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260516_073103_879.jpg differ diff --git a/smart-drop-point/uploads/cam_20260516_073630_139.jpg b/smart-drop-point/uploads/cam_20260516_073630_139.jpg new file mode 100644 index 0000000..8892dea Binary files /dev/null and b/smart-drop-point/uploads/cam_20260516_073630_139.jpg differ diff --git a/smart-drop-point/uploads/cam_20260516_074238_250.jpg b/smart-drop-point/uploads/cam_20260516_074238_250.jpg new file mode 100644 index 0000000..401a741 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260516_074238_250.jpg differ diff --git a/smart-drop-point/uploads/cam_20260516_074831_493.jpg b/smart-drop-point/uploads/cam_20260516_074831_493.jpg new file mode 100644 index 0000000..cc79f08 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260516_074831_493.jpg differ diff --git a/smart-drop-point/uploads/cam_20260516_075821_202.jpeg b/smart-drop-point/uploads/cam_20260516_075821_202.jpeg new file mode 100644 index 0000000..4c60acd Binary files /dev/null and b/smart-drop-point/uploads/cam_20260516_075821_202.jpeg differ diff --git a/smart-drop-point/uploads/cam_20260516_080114_244.jpeg b/smart-drop-point/uploads/cam_20260516_080114_244.jpeg new file mode 100644 index 0000000..c1c84f7 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260516_080114_244.jpeg differ diff --git a/smart-drop-point/uploads/cam_20260516_080328_562.jpeg b/smart-drop-point/uploads/cam_20260516_080328_562.jpeg new file mode 100644 index 0000000..e779cab Binary files /dev/null and b/smart-drop-point/uploads/cam_20260516_080328_562.jpeg differ diff --git a/smart-drop-point/uploads/cam_20260516_081327_398.jpeg b/smart-drop-point/uploads/cam_20260516_081327_398.jpeg new file mode 100644 index 0000000..e779cab Binary files /dev/null and b/smart-drop-point/uploads/cam_20260516_081327_398.jpeg differ diff --git a/smart-drop-point/uploads/cam_20260522_082738_953.jpg b/smart-drop-point/uploads/cam_20260522_082738_953.jpg new file mode 100644 index 0000000..546364e Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_082738_953.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_082927_693.jpg b/smart-drop-point/uploads/cam_20260522_082927_693.jpg new file mode 100644 index 0000000..920bb69 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_082927_693.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_093625_959.jpg b/smart-drop-point/uploads/cam_20260522_093625_959.jpg new file mode 100644 index 0000000..cec965e Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_093625_959.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_094123_969.jpg b/smart-drop-point/uploads/cam_20260522_094123_969.jpg new file mode 100644 index 0000000..c8b81f7 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_094123_969.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_094534_275.jpg b/smart-drop-point/uploads/cam_20260522_094534_275.jpg new file mode 100644 index 0000000..72f95d5 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_094534_275.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_110222_583.jpg b/smart-drop-point/uploads/cam_20260522_110222_583.jpg new file mode 100644 index 0000000..4cbe61e Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_110222_583.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_110244_969.jpg b/smart-drop-point/uploads/cam_20260522_110244_969.jpg new file mode 100644 index 0000000..12eec97 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_110244_969.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_110330_651.jpg b/smart-drop-point/uploads/cam_20260522_110330_651.jpg new file mode 100644 index 0000000..12b7995 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_110330_651.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_110439_816.jpg b/smart-drop-point/uploads/cam_20260522_110439_816.jpg new file mode 100644 index 0000000..ccd23ad Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_110439_816.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_110534_597.jpg b/smart-drop-point/uploads/cam_20260522_110534_597.jpg new file mode 100644 index 0000000..28ff332 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_110534_597.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_110743_782.jpg b/smart-drop-point/uploads/cam_20260522_110743_782.jpg new file mode 100644 index 0000000..b304e4d Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_110743_782.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_111329_140.jpg b/smart-drop-point/uploads/cam_20260522_111329_140.jpg new file mode 100644 index 0000000..727bf1e Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_111329_140.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_111509_362.jpg b/smart-drop-point/uploads/cam_20260522_111509_362.jpg new file mode 100644 index 0000000..436d42b Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_111509_362.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_112039_696.jpg b/smart-drop-point/uploads/cam_20260522_112039_696.jpg new file mode 100644 index 0000000..6ea2efa Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_112039_696.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_112158_158.jpg b/smart-drop-point/uploads/cam_20260522_112158_158.jpg new file mode 100644 index 0000000..60c9df7 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_112158_158.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_112243_661.jpg b/smart-drop-point/uploads/cam_20260522_112243_661.jpg new file mode 100644 index 0000000..b53d275 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_112243_661.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_112400_548.jpg b/smart-drop-point/uploads/cam_20260522_112400_548.jpg new file mode 100644 index 0000000..d978da2 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_112400_548.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_164817_651.jpg b/smart-drop-point/uploads/cam_20260522_164817_651.jpg new file mode 100644 index 0000000..861d947 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_164817_651.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_165006_489.jpg b/smart-drop-point/uploads/cam_20260522_165006_489.jpg new file mode 100644 index 0000000..a385aab Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_165006_489.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_165146_341.jpg b/smart-drop-point/uploads/cam_20260522_165146_341.jpg new file mode 100644 index 0000000..c9d9a0c Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_165146_341.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_182127_240.jpg b/smart-drop-point/uploads/cam_20260522_182127_240.jpg new file mode 100644 index 0000000..201f038 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_182127_240.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_182652_615.jpg b/smart-drop-point/uploads/cam_20260522_182652_615.jpg new file mode 100644 index 0000000..179e64b Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_182652_615.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_183549_752.jpg b/smart-drop-point/uploads/cam_20260522_183549_752.jpg new file mode 100644 index 0000000..ad1879f Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_183549_752.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_183723_960.jpg b/smart-drop-point/uploads/cam_20260522_183723_960.jpg new file mode 100644 index 0000000..349dced Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_183723_960.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_183847_821.jpg b/smart-drop-point/uploads/cam_20260522_183847_821.jpg new file mode 100644 index 0000000..c546b0e Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_183847_821.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_184207_967.jpg b/smart-drop-point/uploads/cam_20260522_184207_967.jpg new file mode 100644 index 0000000..0a09359 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_184207_967.jpg differ diff --git a/smart-drop-point/uploads/cam_20260522_184409_998.jpg b/smart-drop-point/uploads/cam_20260522_184409_998.jpg new file mode 100644 index 0000000..1249d76 Binary files /dev/null and b/smart-drop-point/uploads/cam_20260522_184409_998.jpg differ diff --git a/smart-drop-point/uploads/scan_1772352660.jpeg b/smart-drop-point/uploads/scan_1772352660.jpeg new file mode 100644 index 0000000..d03432e Binary files /dev/null and b/smart-drop-point/uploads/scan_1772352660.jpeg differ diff --git a/smart-drop-point/uploads/scan_1772352824.jpeg b/smart-drop-point/uploads/scan_1772352824.jpeg new file mode 100644 index 0000000..d03432e Binary files /dev/null and b/smart-drop-point/uploads/scan_1772352824.jpeg differ diff --git a/smart-drop-point/uploads/scan_1772352961.jpeg b/smart-drop-point/uploads/scan_1772352961.jpeg new file mode 100644 index 0000000..d03432e Binary files /dev/null and b/smart-drop-point/uploads/scan_1772352961.jpeg differ diff --git a/smart-drop-point/uploads/scan_20260301_152504_d97d18.jpeg b/smart-drop-point/uploads/scan_20260301_152504_d97d18.jpeg new file mode 100644 index 0000000..d03432e Binary files /dev/null and b/smart-drop-point/uploads/scan_20260301_152504_d97d18.jpeg differ diff --git a/smart-drop-point/uploads/scan_20260522_193315_c2770b.jpeg b/smart-drop-point/uploads/scan_20260522_193315_c2770b.jpeg new file mode 100644 index 0000000..a13b436 Binary files /dev/null and b/smart-drop-point/uploads/scan_20260522_193315_c2770b.jpeg differ diff --git a/smart-drop-point/uploads/scan_20260523_094501_48bdb9.jpeg b/smart-drop-point/uploads/scan_20260523_094501_48bdb9.jpeg new file mode 100644 index 0000000..44672dd Binary files /dev/null and b/smart-drop-point/uploads/scan_20260523_094501_48bdb9.jpeg differ diff --git a/smart-drop-point/uploads/scan_20260523_094627_bf8ec0.jpeg b/smart-drop-point/uploads/scan_20260523_094627_bf8ec0.jpeg new file mode 100644 index 0000000..44672dd Binary files /dev/null and b/smart-drop-point/uploads/scan_20260523_094627_bf8ec0.jpeg differ diff --git a/smart-drop-point/uploads/scan_20260524_233053_adb75c.jpeg b/smart-drop-point/uploads/scan_20260524_233053_adb75c.jpeg new file mode 100644 index 0000000..1ab54c7 Binary files /dev/null and b/smart-drop-point/uploads/scan_20260524_233053_adb75c.jpeg differ diff --git a/smart-drop-point/uploads/scan_20260524_233136_83c47a.jpeg b/smart-drop-point/uploads/scan_20260524_233136_83c47a.jpeg new file mode 100644 index 0000000..e0963ac Binary files /dev/null and b/smart-drop-point/uploads/scan_20260524_233136_83c47a.jpeg differ diff --git a/smart-drop-point/uploads/scan_20260524_233314_6083ee.jpeg b/smart-drop-point/uploads/scan_20260524_233314_6083ee.jpeg new file mode 100644 index 0000000..1a750bf Binary files /dev/null and b/smart-drop-point/uploads/scan_20260524_233314_6083ee.jpeg differ diff --git a/smart-drop-point/uploads/scan_20260525_000807_b5fa02.png b/smart-drop-point/uploads/scan_20260525_000807_b5fa02.png new file mode 100644 index 0000000..e52fdf7 Binary files /dev/null and b/smart-drop-point/uploads/scan_20260525_000807_b5fa02.png differ diff --git a/smart-drop-point/uploads/scan_20260525_000946_68ac70.png b/smart-drop-point/uploads/scan_20260525_000946_68ac70.png new file mode 100644 index 0000000..a5002a5 Binary files /dev/null and b/smart-drop-point/uploads/scan_20260525_000946_68ac70.png differ diff --git a/smart-drop-point/uploads/scan_20260525_001118_8de417.png b/smart-drop-point/uploads/scan_20260525_001118_8de417.png new file mode 100644 index 0000000..a5002a5 Binary files /dev/null and b/smart-drop-point/uploads/scan_20260525_001118_8de417.png differ diff --git a/smart-drop-point/uploads/scan_20260630_044721_7bc3e6.jpg b/smart-drop-point/uploads/scan_20260630_044721_7bc3e6.jpg new file mode 100644 index 0000000..0787d4f Binary files /dev/null and b/smart-drop-point/uploads/scan_20260630_044721_7bc3e6.jpg differ diff --git a/smart-drop-point/uploads/test.jpg.jpeg b/smart-drop-point/uploads/test.jpg.jpeg new file mode 100644 index 0000000..d03432e Binary files /dev/null and b/smart-drop-point/uploads/test.jpg.jpeg differ